/* =========================================================================
   PINCODE PROFESSIONAL SERVICES - CORE STYLES
   ========================================================================= */

:root {
    /* Color Palette */
    --primary: #D1A751; /* Gold */
    --primary-dark: #B58A30;
    --primary-light: #F8F3E6;
    --secondary: #E3C279; /* Lighter Gold */
    --accent: #E3C279; /* Accent Gold */
    
    --bg-main: #ffffff;
    --bg-light: #f4f6f9;
    --bg-dark: #0E1B3D; /* Navy Blue */
    --bg-darker: #060B1A; /* Darker Navy */
    
    --text-main: #334155;
    --text-heading: #0E1B3D; /* Navy Blue */
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Layout */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For sticky header */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-dark h2, .bg-dark h3 { color: var(--text-light); }

.text-center { text-align: center; }

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2.section-title span {
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(209, 167, 81, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(209, 167, 81, 0.3);
    transform: translateY(-2px);
    background-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 1px solid var(--text-muted);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--text-heading);
    color: var(--text-heading);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo-text .logo-title, 
.navbar.scrolled .nav-links a {
    color: var(--text-heading);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
}

.logo-img {
    height: 60px;
    max-width: 220px; /* Safety fallback for huge screens */
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: all 0.4s ease-in-out;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-heading);
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle { color: var(--text-heading); }
.mobile-toggle { color: var(--text-heading); } /* white when header transparent */

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
}

.mobile-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-link {
    padding: 1rem 0;
    font-weight: 600;
    color: var(--text-heading);
    border-bottom: 1px solid var(--border-color);
}


/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* More reliable on mobile than vh */
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    z-index: -1;
}

.hero-bg::before {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 27, 61, 0.05);
    color: var(--text-heading);
    border: 1px solid rgba(14, 27, 61, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary);
    display: inline;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    gap: 0.5rem;
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.check-list {
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-heading);
}

.check-list i {
    color: var(--primary);
    font-size: 1.25rem;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 350px;
    position: relative;
    z-index: 2;
}

.visual-card.offset {
    align-self: flex-end;
    margin-top: -2rem;
}

.visual-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
}

/* =========================================================================
   STRENGTHS
   ========================================================================= */
.strengths-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.strength-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.strength-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.strength-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.strength-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.strength-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.strength-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.blob-shape {
    background-color: var(--bg-dark); /* Solid Navy Blue */
    border-radius: var(--radius-lg);
    padding: 3rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blob-inner h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.ind-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ind-tag i {
    color: var(--accent);
    font-size: 1.25rem;
}

.ind-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary);
}


/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(209, 167, 81, 0.2);
    filter: blur(40px);
}

.contact-info h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.c-item {
    display: flex;
    gap: 1rem;
}

.c-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.c-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.c-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-form {
    padding: 4rem 3rem;
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.w-50 {
    width: 50%;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-heading);
}

input, select, textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(209, 167, 81, 0.1);
    background: white;
}


/* =========================================================================
   TRUSTED ENGAGEMENTS
   ========================================================================= */
.trusted-engagements { position: relative; }
.trust-card-wrapper {
    display: flex; justify-content: center; max-width: 800px; margin: 0 auto;
}
.trust-card {
    background: white; padding: 3rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border-color);
    position: relative; overflow: hidden; transition: var(--transition); width: 100%;
}
.trust-card:hover {
    transform: translateY(-5px); box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1), 0 10px 15px -10px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}
.trust-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.trust-card-header { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.trust-icon { font-size: 2.5rem; color: var(--primary); background: var(--primary-light); padding: 1rem; border-radius: var(--radius-full); }
.trust-service { font-size: 1.5rem; color: var(--text-heading); font-weight: 700; }
.trust-quote { font-size: 1.125rem; font-style: italic; color: var(--text-muted); margin-bottom: 2.5rem; position: relative; padding: 0 2rem; }
.trust-clients { display: flex; align-items: center; justify-content: center; gap: 2rem; background: var(--bg-light); padding: 1.5rem; border-radius: var(--radius-md); }
.t-client { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--text-heading); letter-spacing: -0.5px; }
.t-client-divider { width: 2px; height: 30px; background: var(--border-color); }

/* =========================================================================
   LEADERSHIP & EXPERT TEAM
   ========================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-bottom: 4rem; width: 100%; max-width: 100%; }
.team-card { height: 100%; }
.team-card-inner { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-color); overflow: hidden; transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.team-card-inner:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.team-image-wrapper { width: 150px; height: 150px; margin: 2.5rem auto 1rem; border-radius: 50%; overflow: hidden; border: 4px solid var(--primary-light); box-shadow: var(--shadow-md); flex-shrink: 0; }
.team-img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-wrapper { background: var(--bg-light); display: flex; align-items: center; justify-content: center; }
.placeholder-wrapper i { font-size: 4rem; color: var(--text-muted); }
.team-content { padding: 0 2.5rem 2.5rem; flex: 1; display: flex; flex-direction: column; }
.team-header { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); }
.team-name { font-size: 1.5rem; color: var(--text-heading); margin-bottom: 0.25rem; }
.team-role { color: var(--primary-dark); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.team-bio { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; text-align: center; }
.team-expertise { margin-bottom: 2rem; flex: 1; }
.expertise-list { display: flex; flex-direction: column; gap: 0.75rem; }
.expertise-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-heading); }
.expertise-list i { color: var(--primary); font-size: 1.25rem; margin-top: 0.1rem; }
.team-contact { display: flex; flex-direction: column; gap: 0.75rem; background: var(--bg-light); padding: 1.5rem; border-radius: var(--radius-md); margin-top: auto; }
.t-contact-link { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-main); font-weight: 500; }
.t-contact-link i { color: var(--primary); font-size: 1.125rem; }
.t-contact-link[href]:hover { color: var(--primary); }
.trust-statement { display: flex; justify-content: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 1rem; background: white; padding: 1rem 2rem; border-radius: var(--radius-full); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.trust-badge i { font-size: 1.5rem; color: var(--primary); }
.trust-badge span { font-weight: 500; color: var(--text-heading); font-size: 0.95rem;}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .trust-card { padding: 2rem 1.5rem; }
    .trust-clients { flex-direction: column; gap: 1rem; }
    .t-client-divider { width: 30px; height: 2px; }
    .team-content { padding: 0 1.5rem 1.5rem; }
    .trust-badge { flex-direction: column; text-align: center; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: var(--bg-darker);
    color: rgba(255,255,255,0.6);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-heading {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    display: inline-block;
}

.footer-logo .logo-img {
    height: 100px;
}

/* =========================================================================
   ANIMATIONS (Reveal on scroll)
   ========================================================================= */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease-out; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease-out; }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 992px) {
    .about-grid, .strengths-container, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blob-shape {
        max-width: 400px;
        margin: 0 auto 3rem;
    }

    .visual-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .visual-card.offset {
        align-self: auto;
        margin-top: 1.5rem;
    }
    
    .contact-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0; /* Reduced padding on mobile */
    }

    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        word-wrap: break-word; /* Ensure long words break safely */
    }
    
    .logo-img {
        height: 60px; /* Smaller logo for mobile */
        max-width: 220px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .w-50 {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* =========================================================================
   CLIENT LOGOS
   ========================================================================= */
.client-logo {
    max-height: 100px;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 1.05rem;
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }
}
