/* ==========================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --primary-dark: #090e1a;      /* Slate black/blue */
    --primary-navy: #0f182e;      /* Deep Navy blue */
    --primary-blue: #1c2e56;      /* Classic corporate blue */
    
    --accent-gold: #c5a059;      /* Classic gold accent */
    --accent-gold-hover: #b38e47;/* Darker gold for interactivity */
    --accent-gold-light: #e5d5b7;/* Soft champagne */
    
    --bg-white: #ffffff;
    --bg-light-grey: #f8fafc;
    --bg-card-dark: rgba(28, 46, 86, 0.45);
    
    --text-dark: #0f172a;         /* High contrast slate for body */
    --text-muted: #475569;        /* Medium grey for small details */
    --text-light: #f8fafc;        /* White text */
    --text-light-muted: #cbd5e1;  /* Soft grey on dark backgrounds */
    
    /* Layout Variables */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.06);
    --shadow-gold: 0 8px 25px -4px rgba(197, 160, 89, 0.35);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-weight: 300;
}

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

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.text-white-muted { color: var(--text-light-muted); }
.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-sm {
    padding: 0.5rem 1.4rem;
    font-size: 0.85rem;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Badges */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-tag.tag-white {
    color: var(--accent-gold-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.section-title.text-white {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.section-header {
    margin-bottom: 4rem;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

#site-header.scrolled {
    background-color: rgba(9, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-img-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

#site-header.scrolled .header-logo-img {
    height: 44px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px 0;
    background-color: var(--primary-dark);
    /* In case image is loading, a dark premium background gradient */
    background-image: linear-gradient(135deg, rgba(9, 14, 26, 0.8) 0%, rgba(21, 32, 59, 0.8) 100%), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08; /* Increased opacity to make it more visible */
    pointer-events: none;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Watermark background for light sections */
.about-section, 
.why-section, 
.services-section, 
.process-section, 
.faq-section, 
.testimonials-section, 
.contact-section {
    position: relative;
    overflow: hidden;
}

.about-section::before, 
.why-section::before, 
.services-section::before, 
.process-section::before, 
.faq-section::before, 
.testimonials-section::before, 
.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05; /* Increased opacity to make it clearly visible as a background watermark */
    pointer-events: none;
    z-index: 0;
    transition: var(--transition-smooth);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(28, 46, 86, 0.3) 0%, rgba(9, 14, 26, 0.95) 70%);
    z-index: 1;
}

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

.hero-content {
    max-width: 820px;
}

.hero-title {
    font-size: 3.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--text-light-muted);
}

.hero-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
}

.hero-commitment-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(197, 160, 89, 0.08);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding: 1rem 0;
    z-index: 2;
}

.commitment-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--accent-gold-light);
    text-align: center;
}

/* Animations */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   TRUST BAR SECTION
   ========================================== */
.trust-bar-section {
    background-color: var(--bg-light-grey);
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.trust-item {
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
}

.trust-item:last-child {
    border-right: none;
}

.counter-num {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.counter-plus {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    transform: translateY(-5px);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
}

.msme-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.msme-icon-container {
    color: var(--accent-gold);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.msme-badge-item .msme-title {
    margin-top: 0;
    color: var(--primary-navy);
    font-weight: 800;
}

.msme-badge-item .trust-sublabel {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.styled-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    max-width: 220px;
}

.exp-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-light-muted);
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-navy);
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.4;
    font-weight: 500;
}

/* ==========================================
   FOUNDER MESSAGE SECTION
   ========================================== */
.founder-section {
    padding: 8rem 0;
    background-color: var(--bg-light-grey);
}

.founder-card-wrapper {
    background-color: var(--primary-navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    align-items: stretch;
}

.founder-image-area {
    position: relative;
    overflow: hidden;
}

.founder-img-holder {
    height: 100%;
    position: relative;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center top;
}

.founder-seal {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(9, 14, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--accent-gold-light);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.founder-text-area {
    padding: 4.5rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.founder-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.founder-bio p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light-muted);
}

.founder-recognition {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.recognition-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.recognition-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

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

.founder-signature-block {
    margin-top: auto;
}

.sig-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-gold-light);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sig-sub {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    background-color: var(--bg-light-grey);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-8px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(28, 46, 86, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.why-card-title {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
}

.why-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 8rem 0;
    background-color: var(--bg-light-grey);
}

.services-tabs-container {
    margin-top: 2rem;
}

.services-tabs-headers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--primary-navy);
    border-color: #cbd5e1;
}

.tab-btn.active {
    background-color: var(--primary-navy);
    color: var(--text-light);
    border-color: var(--primary-navy);
    box-shadow: var(--shadow-md);
}

.tab-btn.active i {
    color: var(--accent-gold);
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 4.5rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#panel-health .panel-grid {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%), url('assets/service_health.jpg');
    background-size: cover;
    background-position: center;
}

#panel-life .panel-grid {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%), url('assets/service_life.jpg');
    background-size: cover;
    background-position: center;
}

#panel-motor .panel-grid {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%), url('assets/service_motor.jpg');
    background-size: cover;
    background-position: center;
}

#panel-business .panel-grid {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%), url('assets/service_business.jpg');
    background-size: cover;
    background-position: center;
}

#panel-home .panel-grid {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%), url('assets/service_home.jpg');
    background-size: cover;
    background-position: center;
}

#panel-financial .panel-grid {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%), url('assets/service_financial.jpg');
    background-size: cover;
    background-position: center;
}

.panel-info h3 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
}

.panel-info p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.service-features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-features-list li i {
    color: var(--accent-gold);
}

.panel-plans {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-card {
    background-color: var(--bg-light-grey);
    border: 1px solid #f1f5f9;
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 1.8rem 2rem;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-navy);
    transform: translateX(5px);
}

.plan-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.4rem;
}

.plan-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================
   INSURANCE PARTNERS
   ========================================== */
.partners-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.partner-card {
    background-color: var(--bg-light-grey);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 2.2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    transition: var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    border-color: rgba(197, 160, 89, 0.4);
}

.partner-logo-box {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.partner-logo-img-asset, .partner-logo-svg {
    max-width: 140px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.partner-logo-img-asset {
    filter: grayscale(15%) contrast(95%);
}

.partner-card:hover .partner-logo-img-asset {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

.partner-card:hover .partner-logo-svg {
    transform: scale(1.05);
}

.partner-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.4rem 0 0.15rem 0;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.partner-card:hover .partner-card-title {
    color: var(--color-primary);
}

.partner-card-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* ==========================================
   OUR PROCESS SECTION
   ========================================== */
.process-section {
    padding: 8rem 0;
    background-color: var(--bg-light-grey);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 2rem 0;
}

.process-progress-line {
    position: absolute;
    top: 0;
    left: 40px;
    width: 3px;
    height: 100%;
    background-color: rgba(28, 46, 86, 0.1);
    z-index: 1;
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-node {
    width: 83px;
    height: 83px;
    background-color: var(--bg-white);
    border: 3px solid rgba(28, 46, 86, 0.15);
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.process-step:hover .process-node {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.process-content {
    background-color: var(--bg-white);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.process-step:hover .process-content {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.25);
}

.process-content h3 {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-bottom: 0.6rem;
}

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

/* ==========================================
   ACHIEVEMENTS SECTION
   ========================================== */
.achievements-section {
    padding: 8rem 0;
    background-color: var(--primary-navy);
    color: var(--text-light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.achievement-card {
    background-color: var(--bg-card-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2.2rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.35);
    background-color: rgba(28, 46, 86, 0.65);
}

.achievement-icon {
    font-size: 2.2rem;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
}

.achievement-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.achievement-desc {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.achievement-card p {
    font-size: 0.78rem;
    color: var(--text-light-muted);
    margin: 0;
    line-height: 1.4;
}

.highlights-card {
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--bg-light);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.rating-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.rating-logo i {
    color: #4285F4;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #f59e0b;
    font-size: 0.9rem;
}

.rating-value {
    font-weight: 800;
    color: var(--text-dark);
    margin-right: 0.2rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.view-google-reviews-btn-wrapper {
    margin-top: 3.5rem;
}

.btn-google-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-color: rgba(66, 133, 244, 0.4);
    color: var(--primary-navy);
    background-color: transparent;
    padding: 0.8rem 2rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-google-maps:hover {
    border-color: #4285F4;
    background-color: rgba(66, 133, 244, 0.05);
    color: #4285F4;
    transform: translateY(-2px);
}

.btn-google-maps i {
    color: #f59e0b;
}

.testimonials-slider-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0.3;
    scale: 0.95;
    transition: var(--transition-smooth);
    padding: 0 1rem;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    scale: 1;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.verified-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    background-color: rgba(15, 23, 42, 0.04);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.verified-google-badge i {
    color: #4285F4;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-navy);
    margin-bottom: 2.2rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.client-meta {
    text-align: left;
}

.client-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid #cbd5e1;
    background-color: var(--bg-white);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-gold);
    width: 20px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 8rem 0;
    background-color: var(--bg-light-grey);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.6rem 2rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: left;
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 2rem 1.6rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-info-panel {
    background-color: var(--primary-navy);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
}

.contact-lead {
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-detail-item {
    display: flex;
    gap: 1.2rem;
}

.info-icon {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-top: 0.1rem;
}

.info-content h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.info-content a:hover {
    color: var(--accent-gold-light);
}

.map-container {
    margin-top: auto;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-placeholder {
    height: 140px;
    background-color: rgba(28, 46, 86, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 1.8rem;
    gap: 1.2rem;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 10%, transparent 10%);
    background-size: 15px 15px;
    opacity: 0.3;
}

.map-marker-pin {
    width: 45px;
    height: 45px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.map-text h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.map-text p {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    margin: 0;
}

/* Form Styling */
.contact-form-panel {
    background-color: var(--bg-light-grey);
    padding: 5rem 4rem;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 0.6rem;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group .required {
    color: #e11d48;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid #cbd5e1;
    background-color: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-group .error-message {
    display: none;
    font-size: 0.8rem;
    color: #e11d48;
    margin-top: 0.2rem;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #e11d48;
}

.form-group.has-error .error-message {
    display: block;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 6rem 2rem 4rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    display: inline-block;
    margin-bottom: 0.8rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-muted);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links ul a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

.footer-links ul a:hover {
    color: var(--accent-gold-light);
    padding-left: 5px;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-contact-info p i {
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

.footer-contact-info a:hover {
    color: var(--accent-gold-light);
}

.msme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem 2rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    text-align: right;
}

/* ==========================================
   SUBMISSION MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 14, 26, 0.75);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.modal-icon.success {
    color: #10b981;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.modal-receipt {
    background-color: var(--bg-light-grey);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #cbd5e1;
    font-size: 0.9rem;
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-label {
    color: var(--text-muted);
    font-weight: 500;
}

.receipt-value {
    color: var(--primary-navy);
    font-weight: 700;
}

.receipt-id {
    font-family: monospace;
    color: var(--accent-gold-hover);
    font-size: 0.95rem;
}

.modal-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.modal-note i {
    color: var(--accent-gold);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Large Tablets / Laptops */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section::before {
        width: 400px;
        height: 400px;
        right: 2%;
        opacity: 0.06;
    }
    
    .about-grid, 
    .founder-grid, 
    .panel-grid, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-text-area,
    .contact-info-panel,
    .contact-form-panel {
        padding: 3.5rem;
    }
    
    .about-img {
        height: 380px;
    }
    
    .experience-card {
        bottom: -20px;
        right: 0;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .trust-item:nth-child(3) {
        border-right: none;
    }
    
    .why-grid, 
    .partners-grid, 
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Small Tablets / Mobiles */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Mobile Navigation Drawer */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-navy);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    /* Hamburger to X Transformation */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-section::before {
        width: 320px;
        height: 320px;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        opacity: 0.05;
    }
    
    .about-section::before, 
    .why-section::before, 
    .services-section::before, 
    .process-section::before, 
    .faq-section::before, 
    .testimonials-section::before, 
    .contact-section::before {
        width: 320px;
        height: 320px;
        opacity: 0.03;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1rem;
    }
    
    .trust-item:nth-child(even) {
        border-left: 1px solid #e2e8f0;
    }
    
    .trust-item:last-child {
        border-bottom: none;
        grid-column: span 2;
    }
    
    .why-grid, 
    .partners-grid, 
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        padding: 2rem;
    }
    
    .panel-info h3 {
        font-size: 1.8rem;
    }
    
    .process-timeline {
        padding-left: 1rem;
    }
    
    .process-progress-line {
        left: 25px;
    }
    
    .process-step {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .process-node {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .process-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.15rem;
    }
    
    .slider-controls {
        margin-top: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp official green */
    color: var(--bg-white) !important;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128C7E;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-navy);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

.whatsapp-icon-bg {
    background-color: rgba(37, 211, 102, 0.1) !important;
    color: #25D366 !important;
}

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

