:root {
    /* Brand Colors - SRL Theme */
    --primary-blue: #0f3d79;
    /* Deep Navy Blue */
    --secondary-blue: #206bc4;
    /* Vibrant Blue */
    --primary-light: #e6f0fa;
    /* Light Blue Background */
    --accent-blue: #00b4d8;
    /* Teal/Cyan Accent */
    --accent-blue-hover: #0096c7;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;

    /* Typography */
    --font-main: 'Inter', system-ui, sans-serif;

    /* Spacing & Effects */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(15, 61, 121, 0.1), 0 2px 4px -2px rgba(15, 61, 121, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 61, 121, 0.1), 0 4px 6px -4px rgba(15, 61, 121, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(15, 61, 121, 0.15), 0 8px 10px -6px rgba(15, 61, 121, 0.05);
    --shadow-hover: 0 25px 30px -5px rgba(32, 107, 196, 0.2), 0 15px 15px -10px rgba(32, 107, 196, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(32, 107, 196, 0.5);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(32, 107, 196, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(32, 107, 196, 0);
    }
}

@keyframes pulse-soft-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* =========================================
   Base Styles & Resets
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(32, 107, 196, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 61, 121, 0.4);
}

/* =========================================
   Top Bar
   ========================================= */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a,
.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--secondary-blue);
}

.top-address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--accent-blue);
}

/* =========================================
   Main Navigation
   ========================================= */
.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background-color: #206bc4;
    /* SRL blue square */
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
}

.logo-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-links a:not(.btn):hover,
.nav-links a.active-link:not(.btn) {
    color: var(--primary-blue);
}

.nav-links a.btn.active-link {
    color: var(--white);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================================
   Footer
   ========================================= */
.premium-dark-footer {
    background: linear-gradient(145deg, #051630 0%, #0d2b58 100%);
    padding: 80px 0 60px;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.premium-dark-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(32, 107, 196, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo-pro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none;
}

.logo-icon-glow {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(32, 107, 196, 0.4);
    flex-shrink: 0;
}

.logo-text-group-pro {
    display: flex;
    flex-direction: column;
}

.logo-text-group-pro .logo-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-brand-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links-pro {
    display: inline-flex;
    gap: 12px;
}

.social-links-pro a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links-pro a:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(32, 107, 196, 0.3);
}

.premium-dark-footer .footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--white);
    font-weight: 700;
}

.premium-dark-footer .footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 3px;
}

.premium-dark-footer .footer-col ul li {
    margin-bottom: 15px;
}

.premium-dark-footer .footer-col ul a {
    color: #cbd5e1;
    transition: all 0.3s ease;
    display: inline-block;
}

.premium-dark-footer .footer-col ul a:hover {
    color: var(--white);
    transform: translateX(6px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.premium-dark-footer .contact-details li {
    color: #cbd5e1;
}

.premium-dark-footer .contact-details i {
    color: var(--secondary-blue);
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
}

.contact-details i {
    color: var(--secondary-blue);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: #030d1d;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   Utility Classes
   ========================================= */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--secondary-blue);
}

.dark-bg {
    background-color: var(--primary-blue);
    color: var(--white);
}

.dark-bg h2,
.dark-bg p {
    color: var(--white);
}

.w-100 {
    width: 100%;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
    font-weight: 600;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 107, 196, 0.2);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: var(--secondary-blue);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--secondary-blue);
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--secondary-blue);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   Floating Action Buttons
   ========================================= */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    pointer-events: none;
    /* Let clicks pass through container */
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    /* Re-enable clicks on buttons */
}

.float-btn:hover {
    transform: translateY(-8px) scale(1.05);
}

.float-whatsapp {
    background-color: #25d366;
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-whatsapp:hover {
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.float-call {
    background-color: var(--secondary-blue);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

.float-call:hover {
    box-shadow: 0 15px 30px rgba(32, 107, 196, 0.4);
}

/* =========================================
   Serving Areas Auto-scrolling
   ========================================= */
.serving-areas-section {
    padding: 60px 0;
    overflow: hidden;
}

.scrolling-areas-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
    display: flex;
    overflow: hidden;
}

/* Fade effect on edges */
.scrolling-areas-container::before,
.scrolling-areas-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scrolling-areas-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.scrolling-areas-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

@media (max-width: 768px) {

    .scrolling-areas-container::before,
    .scrolling-areas-container::after {
        width: 50px;
    }

    .area-card {
        padding: 10px 20px;
    }

    .area-card i {
        font-size: 1rem;
    }

    .area-card span {
        font-size: 0.95rem;
    }
}

.scrolling-areas-track {
    display: flex;
    gap: 30px;
    animation: scrollAreas 25s linear infinite;
    width: max-content;
}

.scrolling-areas-track:hover {
    animation-play-state: paused;
}

.area-card {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    white-space: nowrap;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-blue);
}

.area-card i {
    font-size: 1.2rem;
}

.area-card span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
}

@keyframes scrollAreas {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
        /* Half width minus half gap */
    }
}

/* Color utility classes for icons */
.text-blue {
    color: var(--secondary-blue);
}

.text-green {
    color: #10b981;
}

.text-purple {
    color: #8b5cf6;
}

.text-orange {
    color: #f59e0b;
}

.text-teal {
    color: #14b8a6;
}

.text-rose {
    color: #f43f5e;
}

/* =========================================
/* =========================================
   Ultra-Premium Modern Home Hero Section
   ========================================= */
.hero-modern {
    padding: 40px 0 50px;
    background-color: #f8fbff;
    /* Soft mesh gradient background */
    background-image:
        radial-gradient(at 0% 0%, hsla(213, 100%, 94%, 0.8) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(200, 98%, 91%, 0.8) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(218, 100%, 96%, 0.8) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(180, 100%, 97%, 0.8) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
    /* Clips floating blobs to prevent horizontal scroll */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1.1;
    max-width: 620px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(15, 61, 121, 0.06);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-blue);
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
    animation: pulse-soft 2.5s infinite;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #0f172a;
    letter-spacing: -1px;
}

.hero-accent-text {
    background: linear-gradient(110deg, var(--primary-blue) 0%, #0096c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Resolves clipping */
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    max-width: 540px;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

/* Stunning Floating Glass Widget for Booking */
.hero-booking-board {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 25px 50px -12px rgba(15, 61, 121, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-booking-board::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.booking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.green-dot {
    background-color: #10b981;
    animation: pulse-soft-green 2.5s infinite;
}

.booking-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #334155;
}

.booking-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-whatsapp-large,
.btn-call-large {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-whatsapp-large {
    background: #10b981;
    /* Premium WhatsApp Green */
    color: var(--white);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.btn-whatsapp-large:hover {
    background: #059669;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-call-large {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 20px rgba(15, 61, 121, 0.1);
}

.btn-call-large:hover {
    background: var(--primary-light);
    box-shadow: 0 12px 25px rgba(15, 61, 121, 0.15);
    transform: translateY(-2px);
    color: var(--primary-blue);
}

.booking-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(15, 61, 121, 0.08);
    padding-top: 18px;
}

.ft-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.ft-item i {
    color: var(--secondary-blue);
    font-size: 0.95rem;
}

.trust-badges-modern {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: stretch;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(15, 61, 121, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(15, 61, 121, 0.1);
    background: var(--white);
}

.badge-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 4px 6px rgba(0, 0, 0, 0.03);
}

.badge-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.3;
}

/* Ultra Premium Hero Image & Floating Cards */
.hero-image-modern {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.image-wrapper-modern {
    position: relative;
    width: 100%;
    max-width: 520px;
    z-index: 2;
}

.main-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(32, 107, 196, 0.3) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
}

.main-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    display: block;
    box-shadow: 0 25px 60px -12px rgba(15, 61, 121, 0.25), 0 0 0 10px #ffffff;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 16px 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(15, 61, 121, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
}

.g-card-1 {
    top: 60px;
    left: -60px;
    animation-delay: 0s;
}

.g-card-2 {
    bottom: 90px;
    right: -45px;
    animation-delay: 3s;
}

.g-card-3 {
    bottom: -30px;
    left: 30px;
    animation-delay: 1.5s;
    padding: 14px 20px;
}

.g-card-icon,
.g-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.g-card-avatar {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 8px 15px rgba(32, 107, 196, 0.3);
}

.g-card-info {
    display: flex;
    flex-direction: column;
}

.g-card-info strong {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 800;
}

.g-card-info span {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

/* Decorative Blobs - Larger and higher fidelity blur */
.shape-blob-3 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(32, 107, 196, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.shape-blob-4 {
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(0, 180, 216, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    animation-delay: 3s;
}

@media (max-width: 1200px) {
    .trust-badges-modern {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-booking-board {
        margin: 0 auto 40px;
        text-align: left;
    }

    .trust-badges-modern {
        justify-content: center;
    }

    .hero-image-modern {
        justify-content: center;
        width: 100%;
    }

    .main-hero-img {
        height: auto;
        aspect-ratio: 4/3;
    }

    .g-card-1 {
        left: -10px;
        top: 30px;
    }

    .g-card-2 {
        right: -10px;
        bottom: 50px;
    }

    .g-card-3 {
        left: 20px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-modern {
        padding: 50px 0 80px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-booking-board {
        padding: 24px 20px;
    }

    .booking-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-whatsapp-large,
    .btn-call-large {
        width: 100%;
    }

    .booking-footer {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .popular-searches {
        justify-content: center;
    }

    .hero-tag-modern {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* =========================================
   Accreditations Bar (Trust UI)
   ========================================= */
.accreditations-bar {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.accreditations-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.acc-text {
    font-size: 1.1rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.acc-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-grow: 1;
}

.acc-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.acc-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: var(--white);
    border-color: var(--primary-blue);
}

.acc-logo-item i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .accreditations-container {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .acc-logos {
        gap: 15px;
    }

    .acc-logo-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* =========================================
   Advanced Package Tabs
   ========================================= */
.package-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.package-tab-btn {
    background: var(--white);
    border: 2px solid rgba(15, 61, 121, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.package-tab-btn:hover {
    border-color: rgba(32, 107, 196, 0.3);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.package-tab-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(32, 107, 196, 0.2);
}

/* =========================================
   Advanced Package Cards Grid
   ========================================= */
.advanced-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .advanced-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advanced-packages-grid {
        grid-template-columns: 1fr;
    }
}

.advanced-package-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15, 61, 121, 0.08);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.advanced-package-card:hover {
    box-shadow: 0 25px 45px rgba(32, 107, 196, 0.12);
    transform: translateY(-8px);
    border-color: rgba(32, 107, 196, 0.25);
}

.card-badge {
    position: absolute;
    top: 10px;
    /* Moved inside to prevent clipping */
    right: 10px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(15, 61, 121, 0.1);
    z-index: 25;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    pointer-events: none;
}

.tag-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.tag-secondary {
    background: #9333ea;
    color: var(--white);
}

.tag-accent {
    background: #e11d48;
    color: var(--white);
}

.card-header-pro {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(15, 61, 121, 0.08);
}

.package-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.param-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.package-includes-list {
    flex-grow: 1;
    margin-bottom: 25px;
}

.package-includes-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-includes-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.text-green {
    color: #10b981;
    margin-top: 3px;
}

.text-blue {
    color: var(--primary-blue);
}

.text-orange {
    color: #f59e0b;
}

.package-info-micro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-micro-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-micro-item i {
    font-size: 1.2rem;
}

.imi-text {
    display: flex;
    flex-direction: column;
}

.imi-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.imi-text strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.package-pricing-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-stack {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
}

.discount-pill {
    background: #fef2f2;
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid #fecaca;
}

/* =========================================
   Home Collection Booking Section
   ========================================= */
.home-collection-booking {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.home-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .home-collection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hc-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 20px;
    z-index: 2;
}

.hc-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 90%;
    background: #e0f2fe;
    border-radius: 24px;
    z-index: -1;
    transform: rotate(-3deg);
}

.hc-main-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Floating Badges */
.hc-floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.hc-floating-badge i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.hc-badge-text {
    display: flex;
    flex-direction: column;
}

.hc-badge-text strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.hc-badge-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.float-top-right {
    top: 10%;
    right: -20px;
}

.float-bottom-left {
    bottom: 15%;
    left: -10px;
    animation-delay: 2s;
}

/* Content Details */
.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hc-feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.hc-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.hc-feature-list li:nth-child(2) .hc-icon-box {
    background: #e0f2fe;
    color: var(--primary-blue);
}

.hc-feature-list li:nth-child(3) .hc-icon-box {
    background: #fef08a;
    color: #ca8a04;
}

.hc-feature-list h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.hc-feature-list p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hc-cta-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.hc-cta-box p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* =========================================
   Premium CTA Section
   ========================================= */
.premium-cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.cta-mesh-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 61, 121, 0.2);
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-wrapper h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.cta-actions-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white-large {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-blue);
}

.premium-cta-section .btn-whatsapp-large {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 16px 30px;
    flex: initial;
}

.cta-glass-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 50px;
}

@media (max-width: 768px) {
    .premium-cta-section {
        padding: 60px 0;
    }

    .cta-mesh-box {
        padding: 40px 20px;
    }

    .cta-content-wrapper h2 {
        font-size: 1.8rem;
    }

    .cta-actions-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-white-large,
    .premium-cta-section .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   How It Works & Comparison UI
   ========================================= */
.how-it-works.bg-light {
    background-color: #f8fafc;
}

.process-steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(32, 107, 196, 0.15);
    border: 2px solid var(--accent-green);
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: -4px;
    right: 50%;
    transform: translateX(50%);
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.premium-compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-compare-table th,
.premium-compare-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.premium-compare-table th {
    background: var(--bg-light);
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}

.highlight-col {
    background-color: rgba(32, 107, 196, 0.03);
    border-left: 2px solid var(--primary-blue) !important;
    border-right: 2px solid var(--primary-blue) !important;
}

.premium-compare-table thead .highlight-col {
    background-color: var(--primary-blue);
    color: var(--white);
    border-top: 2px solid var(--primary-blue);
}

.premium-compare-table tr:last-child td {
    border-bottom: none;
}

.premium-compare-table td strong {
    color: var(--text-main);
}

.text-red {
    color: #ef4444;
}

@media (max-width: 992px) {
    .process-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-connector {
        display: none;
    }

    .process-step {
        width: 100%;
        max-width: 400px;
        padding: 20px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
}

/* =========================================
   Doctor Endorsement Section (Trust UI)
   ========================================= */
.doctor-endorsement {
    background-color: var(--bg-light);
}

.endorsement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.endorser-image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 10px 25px rgba(32, 107, 196, 0.15);
}

.endorser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.endorser-content {
    flex-grow: 1;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(32, 107, 196, 0.1);
    position: absolute;
    top: -20px;
    left: -20px;
}

.endorser-content blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.endorser-name {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.endorser-title {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .endorsement-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .endorser-image {
        width: 180px;
        height: 180px;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* =========================================
   Premium About Us Section
   ========================================= */
.about-premium {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-visuals {
    position: relative;
    padding: 20px;
}

.img-composition {
    position: relative;
    z-index: 1;
}

.img-main-rounded {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 61, 121, 0.12);
    display: block;
}

.stat-float-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.sb-1 {
    top: 40px;
    left: -30px;
}

.sb-2 {
    bottom: -20px;
    right: -20px;
    animation-delay: 2s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-float-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
}

.stat-float-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

.about-content {
    padding-right: 20px
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.features-list-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(15, 61, 121, 0.05);
    transition: all 0.3s ease;
}

.feature-row:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(15, 61, 121, 0.06);
    background: var(--white);
    border-color: rgba(32, 107, 196, 0.2);
}

@media (max-width: 768px) {
    .feature-row {
        padding: 15px;
        gap: 12px;
    }

    .f-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
    }

    .f-text strong {
        font-size: 0.95rem;
    }

    .f-text span {
        font-size: 0.85rem;
    }
}

.f-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.f-text {
    display: flex;
    flex-direction: column;
}

.f-text strong {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.f-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-cta-group {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

/* =========================================
   About Page Specific Sections
   ========================================= */
.about-hero {
    background: linear-gradient(135deg, #0f3d79 0%, #206bc4 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.about-hero-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
    z-index: 1;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero .sub-heading-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-hero .gradient-heading,
.hero-title-main {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.about-hero-lead {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.7;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(5px);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.mission-statement {
    margin-top: 35px;
    padding: 25px;
    border-left: 4px solid var(--secondary-blue);
    background: var(--primary-light);
    border-radius: 0 15px 15px 0;
    position: relative;
}

.mission-statement i {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: var(--secondary-blue);
    opacity: 0.2;
}

.mission-statement p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-blue);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-blue);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--secondary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.metrics-section {
    color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3px;
    display: block;
}

.metric-item p {
    font-size: 1.1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-grid-modern.reversed {
    direction: ltr;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-hero .gradient-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 100px 0 80px;
    }
}

.collection-highlight-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.collection-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(32, 107, 196, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.box-icon-float {
    animation: float 4s ease-in-out infinite;
    display: inline-block;
}

.collection-highlight-box i {
    font-size: 4rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.4));
}

.home-collection-about.dark-bg {
    background: linear-gradient(135deg, #051630 0%, #0f3d79 100%);
    position: relative;
    z-index: 1;
}

.home-collection-about.dark-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(32, 107, 196, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.btn-hover-glow:hover {
    box-shadow: 0 8px 25px rgba(32, 107, 196, 0.25);
}

/* Impact Metrics Bar */
.impact-metrics-bar {
    background: var(--white);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.impact-metrics-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(15, 61, 121, 0.1);
    border-radius: 24px;
    padding: 30px 10px;
    border: 1px solid rgba(15, 61, 121, 0.05);
}

.metric-item-pro {
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(15, 61, 121, 0.08);
}

.metric-item-pro:last-child {
    border-right: none;
}

.m-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 5px;
}

.m-lbl {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Workflow Infographic */
.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.workflow-step {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(15, 61, 121, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 61, 121, 0.08);
    border-color: var(--secondary-blue);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--primary-blue);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--secondary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.workflow-step:hover .step-icon {
    background: var(--secondary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.workflow-step h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.workflow-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Partnership Section */
.partnership-stats {
    list-style: none;
    margin-top: 25px;
}

.partnership-stats li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.partnership-banner-card {
    background: linear-gradient(135deg, #051630 0%, #0f3d79 100%);
    padding: 50px 40px;
    border-radius: 32px;
    text-align: center;
    color: var(--white);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.partnership-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.partnership-banner-card h4 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .impact-metrics-bar .container {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 20px;
    }

    .workflow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric-item-pro:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .impact-metrics-bar .container {
        grid-template-columns: 1fr;
    }

    .metric-item-pro {
        border-right: none;
        border-bottom: 1px solid rgba(15, 61, 121, 0.08);
    }

    .metric-item-pro:last-child {
        border-bottom: none;
    }

    .workflow-steps-grid {
        grid-template-columns: 1fr;
    }
}

.plain-link {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.plain-link i {
    color: #10b981;
    font-size: 1.2rem;
}

.plain-link:hover {
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visuals {
        padding: 0 20px;
    }

    .about-content {
        padding-right: 0;
    }

    .sb-1 {
        left: 0px;
        top: -20px;
    }

    .sb-2 {
        right: 0px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .about-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-group .btn {
        text-align: center;
    }

    .plain-link {
        justify-content: center;
    }
}

.relative-section {
    position: relative;
    overflow: hidden;
    background-color: #f8fbff;
    /* Soft premium background */
    border-top: 1px solid var(--border-color);
}

.sub-heading-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(32, 107, 196, 0.1);
    color: var(--secondary-blue);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(32, 107, 196, 0.15);
}

.gradient-heading {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.modern-service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(32, 107, 196, 0.1);
    border-color: rgba(32, 107, 196, 0.2);
}

.modern-service-card:hover::before {
    opacity: 1;
}

.modern-service-card>* {
    position: relative;
    z-index: 1;
}

.modern-service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-orange {
    background: #ffedd5;
    color: #ea580c;
}

.icon-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.icon-red {
    background: #ffe4e6;
    color: #e11d48;
}

.modern-service-card:hover .modern-service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* New Modern Test Cards */
.test-cards-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Professional Card V3 Styles */
.test-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(15, 61, 121, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible !important;
    /* Force visibility for floating elements */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.test-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 61, 121, 0.12);
    border-color: var(--secondary-blue);
}

.card-header-v3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.test-icon-v3 {
    width: 54px;
    height: 54px;
    background: rgba(15, 61, 121, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.test-card-modern:hover .test-icon-v3 {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(-5deg);
}

.param-chip-v3 {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.test-desc-v3 {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.metadata-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 61, 121, 0.05);
}

.meta-item-v3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.meta-item-v3 i {
    width: 20px;
    color: var(--secondary-blue);
    font-size: 0.9rem;
}

.ideal-for-v3 {
    background: rgba(37, 211, 102, 0.05);
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #128c7e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-footer-v3 {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-top-v3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-box-v3 {
    display: flex;
    flex-direction: column;
}

.price-was-v3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-now-v3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.btn-whatsapp-v3 {
    background: #25d366;
    color: var(--white);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp-v3:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
    color: var(--white);
}

/* Category Headers - Hidden when filtering is used */
.category-header-main {
    margin-bottom: 40px;
    display: none;
    /* We will use tabs instead of static category headers */
}

/* Tab Filtering System */
.test-library-header {
    margin-bottom: 60px;
}

.test-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid rgba(15, 61, 121, 0.1);
    color: var(--text-main);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(15, 61, 121, 0.2);
}

/* Card Visibility & Animation */
.test-card-modern.hidden {
    display: none;
}

.test-card-modern.filtering {
    animation: cardFadeIn 0.5s ease forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Next-Level Search Bar UI */
.search-wrapper-premium {
    max-width: 600px;
    margin: 40px auto 30px;
    position: relative;
    z-index: 10;
}

.search-container-premium {
    background: var(--white);
    border: 1px solid rgba(15, 61, 121, 0.1);
    border-radius: 20px;
    padding: 8px 10px 8px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(15, 61, 121, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container-premium:focus-within {
    border-color: var(--secondary-blue);
    box-shadow: 0 15px 50px rgba(15, 61, 121, 0.12);
    transform: translateY(-2px);
}

.search-input-premium {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.search-icon-premium {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-right: 15px;
}

.search-stats-premium {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Card V2 Enhancements (3D Interaction) */
.test-card-modern {
    will-change: transform, opacity;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.test-card-modern:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(1deg);
    box-shadow: 0 30px 60px rgba(15, 61, 121, 0.15);
}

.card-footer-glass {
    background: rgba(15, 61, 121, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px;
    margin-top: 25px;
    border: 1px solid rgba(15, 61, 121, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-match {
    background: #fef3c7;
    color: #92400e;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 700;
}

/* No Results State */
.no-results-state {
    grid-column: 1 / -1;
    padding: 100px 20px;
    text-align: center;
    background: rgba(15, 61, 121, 0.02);
    border-radius: 30px;
    border: 2px dashed rgba(15, 61, 121, 0.1);
}

.no-results-icon {
    font-size: 5rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

/* Extended Card Details */
.card-details-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(15, 61, 121, 0.05);
}

.includes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.include-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .test-tabs-nav {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .test-cards-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .test-cards-grid-modern {
        grid-template-columns: 1fr;
    }
}

.modern-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 700;
}

.modern-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary-blue);
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.modern-service-card:hover .service-link {
    gap: 12px;
    color: var(--primary-blue);
}

.mt-50 {
    margin-top: 50px;
}

.btn-glow {
    box-shadow: 0 10px 20px rgba(32, 107, 196, 0.3);
    position: relative;
    z-index: 2;
}

.btn-glow:hover {
    box-shadow: 0 15px 30px rgba(32, 107, 196, 0.4);
    transform: translateY(-3px);
}

/* Decorative Blobs */
.shape-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite alternate;
}

.shape-blob-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(32, 107, 196, 0.15);
    border-radius: 50%;
}

.shape-blob-2 {
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 50%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .gradient-heading {
        font-size: 2.2rem;
    }

    .modern-services-grid {
        gap: 20px;
    }
}

/* =========================================
   Component: Booking Modal Overlay
   ========================================= */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   Authentic Google Reviews Section
   ========================================= */
.google-reviews-section {
    background-color: #f8fbff;
}

.google-rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.google-g-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.google-rating-badge .rating-score {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}

.google-rating-badge .stars {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.google-rating-badge .review-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-grid-modern {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 25px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) #e2e8f0;
}

.reviews-grid-modern::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid-modern::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.reviews-grid-modern::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 10px;
}

.g-review-card {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .g-review-card {
        min-width: 300px;
        padding: 25px;
    }
}

.g-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.g-reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.g-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.bg-amber {
    background-color: #f59e0b;
}

.bg-teal {
    background-color: #14b8a6;
}

.bg-purple {
    background-color: #8b5cf6;
}

.g-reviewer-info {
    flex-grow: 1;
}

.g-reviewer-info h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.g-reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.g-small-logo {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
}

.g-card-stars {
    color: #fbbc04;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.g-review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* =========================================
   Internal Pages (About, Services, Contact)
   ========================================= */
.page-header {
    padding: 80px 0 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Contact Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    background-color: var(--white);
    border-color: var(--primary-light);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
}

.booking-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 178, 89, 0.1);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        width: 100%;
    }

    .social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        /* hidden by default */
        gap: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        /* toggled by JS */
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Fullscreen Section Scrolling (Desktop Only)
   ========================================= */
@media (min-width: 992px) {
    html {
        scroll-snap-type: y proximity;
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    .hero-modern,
    .services-overview,
    .about-premium,
    .home-collection-booking,
    .google-reviews-section {
        min-height: calc(100vh - 80px);
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        scroll-margin-top: 80px;
    }

    .top-tests {
        min-height: calc(100vh - 80px);
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        scroll-margin-top: 80px;
        padding: 120px 0;
        /* Add extra padding if the 6 cards need room to breathe */
    }

    /* Override any top padding for centering */
    .hero-modern {
        padding-top: 40px;
    }

    /* Keep section contents constrained horizontally */
    .hero-modern>.container,
    .services-overview>.container,
    .about-premium>.container,
    .top-tests>.container,
    .premium-cta-section>.container {
        width: 100%;
    }
}

/* =========================================
   Component: Global Booking Modal Inner
   ========================================= */
.booking-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.booking-modal-overlay.active .booking-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(to bottom, #f0f9ff, var(--white));
    padding: 35px 30px 25px;
    text-align: center;
    position: relative;
}

.pulse-dot {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 800;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.modal-body {
    padding: 0 30px 30px;
}

.custom-select-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.custom-select-wrapper label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-select {
    width: 100%;
    appearance: none;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 14px 45px 14px 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.modern-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(32, 107, 196, 0.1);
}

.select-icon {
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.modern-select:focus+.select-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-divider {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.modal-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.modal-footer {
    background: #f8fafc;
    padding: 15px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .modal-header {
        padding: 30px 20px 20px;
    }

    .modal-body {
        padding: 0 20px 25px;
    }

    .modal-footer {
        padding: 12px 20px;
    }

    .modal-header h3 {
        font-size: 1.35rem;
    }
}