/* ================================================
   Bahamas Pet & Boat Permits - PREMIUM PROFESSIONAL
   Sophisticated, Bold, Not Corny
   ================================================ */

:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --dark: #0F172A;
    --darker: #020617;
    --gray: #475569;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --success: #10B981;
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EAB308 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.24);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--darker);
    color: white;
    padding: 0.875rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-right: 2rem;
    transition: color 0.2s ease;
}

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

.contact-info i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.social-links a {
    color: rgba(255,255,255,0.8);
    margin-left: 1rem;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.auth-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary-yellow {
    background: var(--gradient-accent);
    color: var(--dark);
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.btn-primary-yellow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--dark);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 1rem 0;
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.98) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark) !important;
}

.logo-img {
    height: 42px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    padding: 0.625rem 1rem !important;
    transition: color 0.2s ease;
    color: var(--gray) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Dropdown menu styling */
.dropdown-menu {
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    z-index: 1050;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--gray);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

.dropdown-item.active {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== HAMBURGER MENU STYLING ===== */
.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.8) !important;
    padding: 0.5rem 0.75rem;
    background: rgba(0,0,0,0.8) !important;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4) !important;
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(0,0,0,0.95) !important;
    border-color: rgba(255,255,255,1) !important;
}

.navbar-toggler-icon {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: none !important; /* Hide Bootstrap's default icon */
}

.navbar-toggler-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile menu improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
    }
    
    .dropdown-menu {
        background: rgba(0,0,0,0.95) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        margin-top: 0.5rem;
        position: static !important;
        float: none !important;
        width: 100% !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border-radius: 8px;
        padding: 0.5rem 0;
        margin-left: 0 !important;
        min-width: auto !important;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        color: rgba(255,255,255,0.9) !important;
        padding: 0.75rem 1.5rem !important;
        white-space: normal;
        display: block;
        width: 100%;
        clear: both;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255,255,255,0.15) !important;
        color: white !important;
    }
    
    .dropdown-item.active {
        background: rgba(255,255,255,0.2) !important;
        color: white !important;
    }
    
    .dropdown-item i {
        width: 20px;
        text-align: center;
        margin-right: 0.5rem;
    }
    
    /* Prevent dropdown from closing on click */
    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        display: block !important;
    }
    
    /* Ensure dropdown stays visible when parent is expanded */
    .dropdown.show .dropdown-menu,
    .dropdown-toggle[aria-expanded="true"] ~ .dropdown-menu,
    .nav-item.dropdown.show .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Prevent navbar from collapsing when interacting with dropdown */
    .navbar-nav .dropdown-menu {
        position: relative !important;
        will-change: auto;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Ensure dropdown items are clickable */
    .dropdown-item {
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    /* Prevent click events from closing dropdown on mobile */
    .dropdown-toggle {
        pointer-events: auto;
    }
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    z-index: 1;
}

.youtube-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.youtube-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.75) 0%, 
        rgba(30, 41, 59, 0.7) 50%,
        rgba(15, 23, 42, 0.75) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-yellow {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: -0.01em;
}

/* ===== SERVICE SELECTOR CARDS ===== */
.service-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#petCard::before {
    background: var(--gradient-accent);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    box-shadow: var(--shadow-xl);
}

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

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
}

#petCard .service-icon {
    color: var(--accent);
}

#boatCard .service-icon {
    color: var(--primary);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(255,255,255,0.15);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.875rem 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    margin-bottom: 0.625rem;
    border-radius: 8px;
    border-left: 3px solid rgba(255,255,255,0.3);
    transition: all 0.2s ease;
}

.service-features li:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(4px);
}

.service-features i {
    color: var(--success);
    margin-right: 0.75rem;
}

.btn-primary-teal,
.btn-primary-yellow.btn-lg {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary-teal {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary-teal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-primary-yellow.btn-lg {
    background: var(--gradient-accent);
    color: var(--dark);
}

.btn-primary-yellow.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) translateY(4px);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background: var(--light);
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.badges-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.trust-badge:nth-child(1) .badge-icon {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--primary);
}

.trust-badge:nth-child(2) .badge-icon {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: var(--success);
}

.trust-badge:nth-child(3) .badge-icon {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: var(--accent-dark);
}

.trust-badge:nth-child(4) .badge-icon {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #9333EA;
}

.badge-content {
    flex: 1;
}

.badge-content strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.badge-content span {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* Animated Counter */
.counter {
    display: inline-block;
    transition: transform 0.2s ease;
    font-variant-numeric: tabular-nums;
    min-width: 1ch;
}

.trust-badge:nth-child(5) .badge-icon {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: var(--accent-dark);
}

/* ===== TRUST SEALS SECTION ===== */
.trust-seals-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-seals-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.trust-seals-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.trust-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-seal:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    background: white;
}

.seal-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--primary);
}

.seal-icon i {
    display: block !important;
    line-height: 1;
}

.trust-seal:nth-child(2) .seal-icon {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: var(--success);
}

.trust-seal:nth-child(4) .seal-icon {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: var(--accent-dark);
}

.trust-seal:nth-child(5) .seal-icon {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
}

.seal-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
}

.bma-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.partnership-seal {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid var(--primary);
}

.partnership-seal:hover {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-color: var(--primary-dark);
}

.seal-content {
    flex: 1;
}

.seal-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.seal-content span {
    font-size: 0.875rem;
    color: var(--gray);
    display: block;
}

/* ===== WHY CHOOSE US (Pain vs Solution) ===== */
.why-choose-us {
    padding: 3rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-header .lead {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Pain Card (The Manual Way) */
.pain-card {
    background: #FEF2F2;
    border: 2px solid #FCA5A5;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.pain-header {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pain-header i {
    font-size: 1.75rem;
}

.pain-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.pain-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.pain-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.pain-list li:last-child {
    margin-bottom: 0;
}

.pain-list i {
    font-size: 1.25rem;
    color: #DC2626;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pain-list div {
    flex: 1;
}

.pain-list strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.pain-list span {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

.pain-footer {
    background: #FEE2E2;
    padding: 1rem 1.5rem;
    border-top: 1px solid #FCA5A5;
    font-size: 1rem;
    color: #991B1B;
}

/* Solution Card (Our Way) */
.solution-card {
    background: #F0FDF4;
    border: 2px solid #86EFAC;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.solution-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-header i {
    font-size: 1.75rem;
}

.solution-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.solution-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.solution-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.solution-list li:last-child {
    margin-bottom: 0;
}

.solution-list i {
    font-size: 1.25rem;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.solution-list div {
    flex: 1;
}

.solution-list strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.solution-list span {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

.solution-footer {
    background: #DCFCE7;
    padding: 1rem 1.5rem;
    border-top: 1px solid #86EFAC;
    font-size: 1rem;
    color: #166534;
}

/* CTA Box */
.cta-box {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
}

.cta-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-box .btn {
    font-size: 1.125rem;
    padding: 1.125rem 2.75rem;
}

/* ===== FOUNDER CARD SECTION ===== */
.founder-section {
    padding: 6rem 0;
    background: var(--light);
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.founder-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: white;
}

.founder-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.founder-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.founder-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.125rem;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.founder-info {
    flex: 1;
}

.founder-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.founder-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.founder-title {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.founder-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    font-size: 0.9375rem;
}

.founder-body {
    padding: 3rem;
}

.founder-story h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.founder-story p {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
}

.founder-social {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 2rem;
}

.founder-connect {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.social-link-founder {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.social-link-founder.fb {
    background: #1877F2;
}

.social-link-founder.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-founder:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ===== SOCIAL PROOF BANNER ===== */
.social-proof-banner {
    background: var(--dark);
    padding: 3rem 0;
    border-top: 3px solid var(--primary);
}

.proof-banner-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: white;
}

.proof-stat i {
    font-size: 2.5rem;
    color: var(--primary);
}

.proof-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-stat span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.step-card {
    flex: 1;
    background: var(--light);
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

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

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--success);
}

.guarantee-icon i {
    display: block !important;
    line-height: 1;
}

.guarantee-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.guarantee-content p {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--dark);
    font-weight: 600;
}

.guarantee-feature i {
    color: var(--success);
    font-size: 1.125rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.accordion-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== CUSTOM REVIEWS SECTION ===== */
.reviews-section {
    padding: 6rem 0;
    background: var(--light);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.google-rating .stars {
    display: flex;
    gap: 0.375rem;
}

.google-rating .stars i {
    color: #FBBC04;
    font-size: 1.75rem;
}

.rating-text {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    color: rgba(14, 165, 233, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.review-author h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars i {
    color: #FBBC04;
    font-size: 1rem;
}

.review-body {
    position: relative;
    z-index: 1;
}

.review-body p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-body p:last-child {
    margin-bottom: 0;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: var(--success);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.review-badge i {
    font-size: 1rem;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== DISCLAIMER ===== */
.disclaimer-section {
    padding: 4rem 0;
    background: var(--dark);
}

.disclaimer-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
    color: white;
}

.disclaimer-card h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.375rem;
}

.disclaimer-card p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 2rem;
}

.footer h4, .footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-contact i {
    margin-right: 0.625rem;
    color: var(--primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9375rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ===== MODERN LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modern-loader {
    text-align: center;
    color: white;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.loader-text p {
    font-size: 1rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .service-selector {
        grid-template-columns: 1fr;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8125rem;
        padding: 0.75rem 0;
    }
    
    .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.625rem;
    }
    
    .btn-primary-teal,
    .btn-primary-yellow.btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    .badges-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 1.5rem;
    }
    
    .badge-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .trust-seals-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-seal {
        padding: 1rem;
    }
    
    .seal-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .seal-logo {
        max-width: 120px;
        padding: 0.75rem;
    }
    
    .seal-content strong {
        font-size: 0.875rem;
    }
    
    .seal-content span {
        font-size: 0.75rem;
    }
    
    .trust-seals-header h3 {
        font-size: 1.5rem;
    }
    
    .pain-header,
    .solution-header {
        padding: 1.5rem;
    }
    
    .pain-header h3,
    .solution-header h3 {
        font-size: 1.375rem;
    }
    
    .pain-list,
    .solution-list {
        padding: 1.5rem;
    }
    
    .pain-list li,
    .solution-list li {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pain-list i,
    .solution-list i {
        font-size: 1.25rem;
    }
    
    .pain-list strong,
    .solution-list strong {
        font-size: 1rem;
    }
    
    .pain-list span,
    .solution-list span {
        font-size: 0.875rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-info h2 {
        font-size: 1.875rem;
    }
    
    .founder-body {
        padding: 2rem;
    }
    
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .proof-banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proof-stat {
        justify-content: center;
    }
    
    .steps-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .guarantee-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .social-links-founder {
        flex-direction: column;
    }
    
    .social-link-founder {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .review-card::before {
        font-size: 4rem;
        top: 0.75rem;
        left: 1rem;
    }
    
    .google-rating .stars i {
        font-size: 1.5rem;
    }
    
    .btn-outline-primary {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}
