/* ====================================
   MODERN INDEX.HTML STYLES
   Design inspired by about.html aesthetic
   Mobile-optimized & Performance-focused
   ==================================== */

/* ====================================
   CSS VARIABLES (Design System)
   ==================================== */
:root {
    /* Colors - Blue & Green Gradient Theme */
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    
    --green-500: #10b981;
    --green-600: #059669;
    
    --yellow-500: #fbbf24;
    --yellow-600: #f59e0b;
    
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    
    --orange-500: #f59e0b;
    --orange-600: #d97706;
    
    --pink-500: #ec4899;
    
    --red-500: #ef4444;
    --red-600: #dc2626;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --dark-slate: #334155;
    
    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-all: all 0.3s ease;
    --transition-colors: color 0.3s ease, background-color 0.3s ease;
    --transition-transform: transform 0.3s ease;
    
    /* Primary & Accent Colors */
    --primary-50: var(--blue-50);
    --primary-500: var(--blue-500);
    --primary-600: var(--blue-600);
    --primary-700: var(--blue-700);
    --accent-500: var(--green-500);
    --accent-600: var(--green-600);
}

/* ====================================
   BASE RESET & TYPOGRAPHY
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-6);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-6);
    text-align: center;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: var(--space-4);
}

p {
    margin-bottom: var(--space-4);
    line-height: 1.8;
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: var(--transition-colors);
}

a:hover {
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   LAYOUT UTILITIES
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ====================================
   PROGRESS INDICATOR
   ==================================== */
.progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* ====================================
   STICKY CONTACT BUTTONS
   ==================================== */
.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 100px; /* Increased space for WhatsApp button */
    z-index: 998;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.sticky-phone,
.sticky-cta {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: var(--transition-all);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    margin-right: 12px; /* Reduced from 20px to 12px */
}

.sticky-phone {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
}

.sticky-phone svg,
.calendar-icon {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: white;
}

.sticky-contact a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* ====================================
   BREADCRUMBS
   ==================================== */
.breadcrumbs {
    background: var(--gray-50);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs .container {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.breadcrumbs a {
    color: var(--blue-600);
    text-decoration: none;
    transition: var(--transition-colors);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: var(--gray-400);
}

/* ====================================
   HEADER SECTION - REDESIGNED
   ==================================== */
.header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 50%, var(--dark-slate) 100%);
    padding: 60px 0 80px; /* Reduced top padding */
    position: relative;
    overflow: hidden;
}

/* Floating Orbs Background */
.header::before,
.header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.header::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.header::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
}

.header-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* NEW: Profile Badge - Small & Subtle */
.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px 8px 8px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.profile-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-badge span {
    color: white;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Improved H1 - Better readability and flow */
.header-text h1 {
    color: white;
    margin-bottom: var(--space-6);
    font-size: clamp(1.75rem, 4vw, 2.5rem); /* Further reduced for better flow */
    line-height: 1.3; /* Increased for better spacing */
    font-weight: 800;
    max-width: 600px; /* Constrain width for better line breaks */
}

/* NEW: Highlight key phrase */
.header-text .highlight {
    color: #fbbf24;
    position: relative;
    display: inline;
    white-space: nowrap; /* Keep "ALL the Google Traffic" together */
}

.header-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.header-text h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg); /* Reduced from xl */
    font-weight: 500; /* Lighter weight */
    margin-bottom: var(--space-4);
    text-align: left;
    line-height: 1.6;
}

.header-text .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-base);
    margin-bottom: 0; /* Remove bottom margin since trust badges have top margin */
    line-height: 1.7;
}

/* Trust indicators below headline */
.trust-badges-header {
    display: flex;
    gap: var(--space-5);
    margin-top: var(--space-6);
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.trust-item span:first-child {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* LinkedIn Button */
.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: #0077b5;
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: var(--transition-all);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-button:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    color:white;
}

.linkedin-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.linkedin-icon {
    width: 18px;
    height: 18px;
    fill: white;
}

.header-text .gradient-text {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Profile Image - REMOVED (use profile badge instead) */
.form-profile-image {
    display: none; /* Hide large profile image in form */
}

/* ====================================
   HEADER FORM
   ==================================== */
.header-form-wrapper {
    position: relative;
    z-index: 2;
}

.form-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.form-header h3 {
    font-size: var(--font-size-2xl);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.form-header p {
    color: var(--gray-600);
    font-size: var(--font-size-base);
}

.hero-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: var(--font-size-sm);
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: var(--transition-all);
    font-family: var(--font-body);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-base);
    border: none;
    cursor: pointer;
    transition: var(--transition-all);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.form-note {
    text-align: center;
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin: 0;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.form-success h4 {
    color: var(--green-600);
    font-size: var(--font-size-xl);
}

.form-success p {
    color: var(--gray-600);
    margin: 0;
}

/* ====================================
   SECTIONS WITH SPECIFIC BACKGROUNDS
   ==================================== */
/* Proof of Expertise Section - Ensure text visibility */
#top-rankings {
    background: linear-gradient(135deg, var(--primary-50) 0%, rgba(59, 130, 246, 0.05) 100%);
}

#top-rankings h2,
#top-rankings h3,
#top-rankings p,
#top-rankings span {
    color: var(--gray-900) !important;
}

#top-rankings .section-badge span {
    color: #1e40af !important;
}

/* Dark sections - ensure white text */
.section[style*="background: linear-gradient(135deg, #0f172a"],
.section[style*="background: linear-gradient(135deg, #1e293b"] {
    color: white;
}

.section[style*="background: linear-gradient(135deg, #0f172a"] h2,
.section[style*="background: linear-gradient(135deg, #0f172a"] h3,
.section[style*="background: linear-gradient(135deg, #0f172a"] p,
.section[style*="background: linear-gradient(135deg, #1e293b"] h2,
.section[style*="background: linear-gradient(135deg, #1e293b"] h3,
.section[style*="background: linear-gradient(135deg, #1e293b"] p {
    color: white !important;
}

/* ====================================
   BUTTONS
   ==================================== */
.cta-button,
.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-base);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-all);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-600);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-base);
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--primary-600);
    transition: var(--transition-all);
}

.cta-button-outline:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
    color: var(--primary-600);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-base);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-all);
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   SERVICE CARDS
   ==================================== */
.service-card {
    background: white;
    padding: 40px 35px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-all);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card-clickable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-5);
    display: block;
}

.service-card h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.service-link-arrow {
    display: inline-block;
    margin-top: var(--space-4);
    color: var(--primary-600);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* ====================================
   STATS CARDS (For Homepage Stats)
   ==================================== */
.stat-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    color: white;
}

.testimonials h2 {
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    transition: var(--transition-all);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    font-style: italic;
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-accordion {
    margin-bottom: var(--space-5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: var(--space-4);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition-all);
    background: white;
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item h3 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    margin: 0;
    padding: var(--space-5);
    font-size: var(--font-size-base);
    font-weight: 700;
    cursor: pointer;
    transition: none; /* Remove all transitions */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove hover effect entirely - keep same background */
.faq-item h3:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
}

/* Ensure active state also keeps blue background */
.faq-item.active h3 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition-transform);
    margin-left: auto;
    flex-shrink: 0;
}

.faq-item.active h3::after {
    content: '−';
    transform: scale(1.1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-item p {
    padding: var(--space-5);
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--gray-600);
    background: white;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-base);
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-5);
    line-height: 1.8;
}

.footer-contact {
    margin-top: var(--space-4);
}

.footer-contact p {
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
}

.footer-contact a {
    color: var(--primary-500);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-colors);
    font-size: var(--font-size-sm);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
}

.footer-tagline {
    font-size: var(--font-size-xs);
    font-style: italic;
}

/* ====================================
   WHATSAPP FLOATING BUTTON
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-all);
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Tooltip removed - no longer needed */

/* ====================================
   LIGHTBOX
   ==================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-all);
}

.lightbox-close:hover {
    transform: scale(1.1);
    background: var(--gray-100);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--font-size-base);
}

/* ====================================
   MOBILE RESPONSIVE
   ==================================== */
@media (max-width: 968px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Layout */
    .section {
        padding: 60px 0;
    }
    
    /* Header */
    .header {
        padding: 50px 0 60px; /* Reduced padding */
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .header-text h1 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .header-text h2 {
        text-align: center;
        font-size: var(--font-size-base);
    }
    
    .header-text .subtitle {
        text-align: center;
    }
    
    .profile-badge {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges-header {
        justify-content: center;
    }
    
    /* Grids */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Sticky Contact */
    .sticky-contact {
        bottom: 20px;
        right: 70px; /* Adjust for mobile WhatsApp button */
        left: auto;
        flex-direction: row; /* Keep horizontal on mobile */
        gap: 8px;
        align-items: center;
    }
    
    .sticky-phone {
        display: none; /* Hide calendar icon on mobile */
    }
    
    .sticky-cta {
        font-size: var(--font-size-sm);
        padding: 12px 18px;
        margin-right: 8px; /* Smaller margin on mobile */
        white-space: nowrap;
    }
    
    /* WhatsApp Button - Move to LEFT side on mobile */
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        right: auto;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 640px) {
    /* Typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Layout */
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Header */
    .header {
        padding: 60px 0 50px;
    }
    
    /* Buttons */
    .cta-button,
    .btn-primary {
        padding: 14px 28px;
        font-size: var(--font-size-sm);
    }
    
    /* Service Cards */
    .service-card {
        padding: 30px 25px;
    }
    
    /* Form */
    .form-card {
        padding: var(--space-8);
    }
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ====================================
   PERFORMANCE OPTIMIZATIONS
   ==================================== */
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU acceleration for smooth animations */
.service-card,
.testimonial-card,
.faq-item,
.cta-button,
.btn-primary {
    will-change: transform;
}