/* --- Variables & Reset --- */
:root {
    --primary: #0ea5e9;       /* sky-500 */
    --primary-dark: #0284c7;  /* sky-600 */
    --secondary: #10b981;     /* emerald-500 */
    --secondary-dark: #059669;
    --emerald-400: #34d399;
    --text-dark: #1e293b;     /* slate-800 */
    --text-slate-600: #475569;
    --text-slate-700: #334155;
    --text-gray: #64748b;
    --sky-50: #f0f9ff;
    --sky-200: #bae6fd;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --accent: #f59e0b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

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

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1280px; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1.5rem; /* px-6 */
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-blue {
    background-color: var(--primary);
}

.text-white {
    color: white;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-gradient {
    /* bg-gradient-to-r from-sky-500 to-sky-600 */
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.625rem 1.5rem; /* py-2.5 px-6 */
    box-shadow: var(--shadow-lg);
    font-weight: 500;
}

.btn-gradient:hover {
    /* hover:from-sky-600 hover:to-sky-700 */
    background: linear-gradient(to right, var(--primary-dark), #0369a1);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4); /* hover:shadow-sky-500/30 */
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
    display: block;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease; /* duration-500 */
    background-color: transparent;
}

/* Scrolled State */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95); /* bg-white/95 */
    backdrop-filter: blur(12px); /* backdrop-blur-md */
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* h-20 */
}

/* Logo Group */
.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
    text-decoration: none;
    group: true; /* purely logic reference */
}

/* Logo Icon Box */
.logo-icon-box {
    position: relative;
    width: 44px; /* w-11 */
    height: 44px; /* h-11 */
    border-radius: 0.75rem; /* rounded-xl */
    /* bg-gradient-to-br from-sky-500 to-emerald-500 */
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.3s ease;
}

.logo-group:hover .logo-icon-box {
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3); /* group-hover:shadow-sky-500/30 */
}

.logo-icon-box i {
    color: white;
    font-size: 1.5rem; /* w-6 h-6 approx */
}

/* Logo Dot */
.logo-dot {
    position: absolute;
    bottom: -4px; /* -bottom-1 */
    right: -4px; /* -right-1 */
    width: 16px; /* w-4 */
    height: 16px; /* h-4 */
    background-color: var(--emerald-400);
    border-radius: 50%;
    border: 2px solid white;
}

/* Logo Text */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-weight: 700;
    font-size: 1.125rem; /* text-lg */
    letter-spacing: -0.025em; /* tracking-tight */
    transition: color 0.3s ease;
    color: white; /* Default transparent state */
}

.logo-text .location {
    font-size: 0.75rem; /* text-xs */
    letter-spacing: 0.1em; /* tracking-widest */
    text-transform: uppercase;
    transition: color 0.3s ease;
    color: var(--sky-200); /* Default transparent state */
}

/* Text Colors when Scrolled */
header.scrolled .logo-text .brand {
    color: var(--text-dark); /* text-slate-800 */
}

header.scrolled .logo-text .location {
    color: var(--primary-dark); /* text-sky-600 */
}


/* Desktop Nav */
.navbar {
    display: none;
}

@media (min-width: 1024px) { /* lg:flex */
    .navbar {
        display: flex;
        align-items: center;
        gap: 0.25rem; /* gap-1 */
    }
}

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

.nav-links a {
    padding: 0.5rem 1rem; /* px-4 py-2 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    border-radius: 9999px; /* rounded-full */
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9); /* text-white/90 */
}

.nav-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1); /* hover:bg-white/10 */
}

/* Nav Link Colors when Scrolled */
header.scrolled .nav-links a {
    color: var(--text-slate-600);
}

header.scrolled .nav-links a:hover {
    color: var(--primary-dark); /* hover:text-sky-600 */
    background-color: var(--sky-50); /* hover:bg-sky-50 */
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-hide {
    display: none;
}
@media (min-width: 1024px) {
    .mobile-hide { display: inline-block; }
}

/* Hamburger / Mobile Toggle */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.75rem; /* rounded-xl */
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

header.scrolled .hamburger {
    color: var(--text-slate-700);
}

header.scrolled .hamburger:hover {
    background-color: #f1f5f9; /* hover:bg-slate-100 */
}

.hamburger .close-icon {
    display: none;
}

.hamburger.active .open-icon {
    display: none;
}

.hamburger.active .close-icon {
    display: inline-block;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    display: block;
    overflow: hidden;
    height: 0;
    opacity: 0;
    background-color: white;
    border-top: 1px solid #f1f5f9; /* border-slate-100 */
    box-shadow: var(--shadow-lg); /* shadow-xl */
    transition: all 0.3s ease-in-out;
}

.mobile-menu-dropdown.active {
    height: auto;
    opacity: 1;
    padding-bottom: 1rem;
}

.mobile-nav-links {
    padding: 1.5rem 1rem; /* px-4 py-6 */
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.mobile-nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem; /* px-4 py-3 */
    color: var(--text-slate-700);
    border-radius: 0.75rem; /* rounded-xl */
    font-weight: 500;
    transition: color 0.2s, background-color 0.2s;
}

.mobile-nav-links a:hover {
    color: var(--primary-dark); /* hover:text-sky-600 */
    background-color: var(--sky-50); /* hover:bg-sky-50 */
}

.mobile-nav-links .btn {
    margin-top: 1rem;
    text-align: center;
    border-radius: 0.75rem; /* rounded-xl */
    padding: 0.75rem;
}


/* --- Hero Section (Redesigned) --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px; /* Ensure space for content */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0; /* Reset */
    color: white;
}

/* Background Layers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* from-slate-900/95 via-slate-900/80 to-slate-900/60 */
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
}

.bg-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* from-slate-900/50 via-transparent to-transparent (vertical) */
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent, transparent);
}

/* Decorative Blurs */
.hero-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px); /* blur-3xl approx */
    z-index: 1;
}

.blur-blue {
    top: 5rem;
    right: 2.5rem;
    width: 18rem; /* w-72 */
    height: 18rem;
    background-color: rgba(14, 165, 233, 0.2); /* sky-500/20 */
}

.blur-green {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem; /* w-96 */
    height: 24rem;
    background-color: rgba(16, 185, 129, 0.1); /* emerald-500/10 */
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding-top: 8rem; /* py-32 approx */
    padding-bottom: 8rem;
}

.hero-text-content {
    max-width: 48rem; /* max-w-3xl */
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1); /* bg-white/10 */
    backdrop-filter: blur(4px); /* backdrop-blur-sm */
    border-radius: 9999px;
    color: #7dd3fc; /* text-sky-300 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #34d399; /* emerald-400 */
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Typography */
.hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.text-gradient {
    background: linear-gradient(to right, #38bdf8, #34d399); /* from-sky-400 to-emerald-400 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.125rem; /* text-lg */
    color: #cbd5e1; /* text-slate-300 */
    margin-bottom: 2.5rem;
    line-height: 1.625;
    max-width: 42rem;
}

@media (min-width: 640px) { .hero p { font-size: 1.25rem; } }

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}

.btn-hero-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.2rem 2rem; /* py-6 px-8 */
    font-size: 1.125rem; /* text-lg */
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.3); /* shadow-2xl shadow-sky-500/30 */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.icon-slide {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .icon-slide {
    transform: translateX(4px);
}

.btn-hero-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Quick Info Cards (Glassmorphism) */
.hero-quick-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-quick-cards { grid-template-columns: repeat(3, 1fr); }
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05); /* bg-white/5 */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem; /* rounded-2xl */
    transition: background-color 0.3s ease;
}

.quick-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.quick-icon-box {
    width: 2.5rem; /* w-10 */
    height: 2.5rem;
    background-color: rgba(14, 165, 233, 0.2); /* bg-sky-500/20 */
    border-radius: 0.75rem; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon-box i {
    color: #38bdf8; /* text-sky-400 */
    font-size: 1.2rem;
}

.quick-text .label {
    display: block;
    color: #94a3b8; /* text-slate-400 */
    font-size: 0.75rem; /* text-xs */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-text .value {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Animation Entrance Classes (Mimic Framer Motion) */
.scroll-reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: heroEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* --- About Section (Redesigned) --- */
.about-section {
    position: relative;
    background-color: white;
    padding: 6rem 0 8rem; /* py-24 lg:py-32 */
    overflow: hidden;
}

/* Background Decoration */
.about-bg-decor-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* from-slate-50 to-transparent (leftward) */
    background: linear-gradient(to left, #f8fafc, transparent);
    z-index: 0;
}

.about-bg-blur-circle {
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 20rem; /* w-80 */
    height: 20rem;
    background-color: #e0f2fe; /* sky-100 */
    border-radius: 50%;
    filter: blur(64px); /* blur-3xl */
    opacity: 0.5;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem; /* gap-16 */
    }
}

/* Image Column */
.about-image-col {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem; /* rounded-3xl */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.3), transparent);
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: -2rem; /* -bottom-8 */
    right: -2rem; /* -right-8 */
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem; /* p-6 */
    box-shadow: var(--shadow-xl);
    max-width: 20rem; /* max-w-xs */
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

@media (max-width: 640px) {
    .floating-card { right: 0; bottom: -1rem; }
}

.floating-card-icon {
    width: 3.5rem; /* w-14 */
    height: 3.5rem;
    border-radius: 0.75rem; /* rounded-xl */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    color: white;
    font-size: 1.5rem;
}

.floating-card-text .card-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.floating-card-text .card-subtitle {
    color: #64748b; /* text-slate-500 */
    font-size: 0.875rem; /* text-sm */
    margin: 0;
}

/* Decorative Border */
.image-border-decor {
    position: absolute;
    top: -1rem; /* -top-4 */
    left: -1rem; /* -left-4 */
    width: 6rem; /* w-24 */
    height: 6rem;
    border: 4px solid #bae6fd; /* border-sky-200 */
    border-radius: 1rem; /* rounded-2xl */
    z-index: -1;
}

/* Content Column */
.about-content-col {
    text-align: left;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e0f2fe; /* bg-sky-100 */
    color: #0369a1; /* text-sky-700 */
    border-radius: 9999px;
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-heading { font-size: 2.25rem; /* text-4xl */ }
}

.text-highlight {
    color: var(--primary-dark); /* text-sky-600 */
}

.text-lead {
    font-size: 1.125rem; /* text-lg */
    color: var(--text-slate-600);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.text-body {
    color: var(--text-slate-600);
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.value-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem; /* rounded-xl */
    background-color: #f8fafc; /* bg-slate-50 */
    transition: background-color 0.3s ease;
}

.value-box:hover {
    background-color: #f0f9ff; /* hover:bg-sky-50 */
}

.value-icon {
    width: 2.5rem; /* w-10 */
    height: 2.5rem;
    border-radius: 0.5rem; /* rounded-lg */
    background-color: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.value-box:hover .value-icon {
    background-color: #e0f2fe; /* hover:bg-sky-100 */
}

.value-icon i {
    color: var(--primary-dark); /* text-sky-600 */
    font-size: 1rem; /* w-5 h-5 approx */
}

.value-info h4 {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.value-info p {
    font-size: 0.75rem; /* text-xs */
    color: #64748b; /* text-slate-500 */
    margin: 0;
    line-height: 1.4;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

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

.stat-number {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--primary-dark); /* text-sky-600 */
    margin: 0;
    line-height: 1;
}

@media (min-width: 1024px) {
    .stat-number { font-size: 1.875rem; /* text-3xl */ }
}

.stat-label {
    font-size: 0.75rem; /* text-xs */
    color: #64748b; /* text-slate-500 */
    margin-top: 0.25rem;
}

/* Animation Utilities (extended) */
.scroll-reveal.zoom {
    transform: scale(0.8);
    opacity: 0;
}

.scroll-reveal.visible.zoom {
    transform: scale(1);
    opacity: 1;
}

.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }
.delay-7 { transition-delay: 700ms; }

/* --- Specialties Section (Redesigned) --- */
.specialties-section {
    position: relative;
    background-color: #f8fafc; /* bg-slate-50 */
    padding: 6rem 0 8rem;
    overflow: hidden;
}

/* Background Elements */
.specialties-bg-radial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-sky-100/50 via-transparent to-transparent */
    background: radial-gradient(ellipse at top, rgba(224, 242, 254, 0.5), transparent, transparent);
    z-index: 0;
}

.specialties-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, white, transparent);
    z-index: 0;
}

.center-text {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Modern */
.specialties-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .specialties-grid-modern { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .specialties-grid-modern { grid-template-columns: repeat(3, 1fr); }
}

/* Modern Card */
.specialty-card-modern {
    position: relative;
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    border: 1px solid #f1f5f9; /* border-slate-100 */
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: all 0.5s ease;
}

.specialty-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* Hover Gradient Logic (Simulated per color) */
.hover-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.specialty-card-modern:hover .hover-gradient {
    opacity: 0.05;
}

/* Color Variants for Gradient */
.specialty-card-modern[data-color="sky"] .hover-gradient { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.specialty-card-modern[data-color="pink"] .hover-gradient { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.specialty-card-modern[data-color="amber"] .hover-gradient { background: linear-gradient(135deg, #f59e0b, #f97316); }
.specialty-card-modern[data-color="red"] .hover-gradient { background: linear-gradient(135deg, #ef4444, #dc2626); }
.specialty-card-modern[data-color="emerald"] .hover-gradient { background: linear-gradient(135deg, #10b981, #14b8a6); }
.specialty-card-modern[data-color="violet"] .hover-gradient { background: linear-gradient(135deg, #8b5cf6, #a855f7); }

/* Icon */
.card-icon-modern {
    position: relative;
    width: 3.5rem; /* w-14 */
    height: 3.5rem;
    border-radius: 1rem; /* rounded-2xl */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    z-index: 1;
}

.specialty-card-modern:hover .card-icon-modern {
    transform: scale(1.1);
}

.card-icon-modern i {
    font-size: 1.75rem; /* w-7 h-7 approx */
}

/* Color Variants for Icon BG/Text */
.bg-sky-50 { background-color: #f0f9ff; }
.text-sky-600 { color: #0284c7; }

.bg-pink-50 { background-color: #fdf2f8; }
.text-pink-600 { color: #db2777; }

.bg-amber-50 { background-color: #fffbeb; }
.text-amber-600 { color: #d97706; }

.bg-red-50 { background-color: #fef2f2; }
.text-red-600 { color: #dc2626; }

.bg-emerald-50 { background-color: #ecfdf5; }
.text-emerald-600 { color: #059669; }

.bg-violet-50 { background-color: #f5f3ff; }
.text-violet-600 { color: #7c3aed; }

/* Content */
.card-title-modern {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.specialty-card-modern:hover .card-title-modern {
    color: var(--primary-dark);
}

.card-desc-modern {
    color: #475569; /* text-slate-600 */
    line-height: 1.625;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

/* Card Link */
.card-link-modern {
    display: flex;
    align-items: center;
    color: var(--primary-dark); /* text-sky-600 */
    font-weight: 500;
    font-size: 0.875rem; /* text-sm */
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
    gap: 0.5rem;
}

.specialty-card-modern:hover .card-link-modern {
    opacity: 1;
}

.card-link-modern i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.specialty-card-modern:hover .card-link-modern i {
    transform: translateX(4px);
}

/* CTA Bottom */
.specialties-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.specialties-cta p {
    color: #64748b; /* text-slate-500 */
    margin-bottom: 1rem;
}

.cta-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link-modern:hover {
    color: #0369a1; /* text-sky-700 */
}

/* --- Differentials Section (Redesigned) --- */
.differentials-section {
    position: relative;
    /* bg-gradient-to-b from-white via-sky-50/50 to-white */
    background: linear-gradient(to bottom, white, rgba(240, 249, 255, 0.5), white);
    padding: 6rem 0 8rem; /* py-24 lg:py-32 */
    overflow: hidden;
}

/* Decorative Blurs */
.diff-bg-blur {
    position: absolute;
    top: 50%;
    width: 24rem; /* w-96 */
    height: 24rem;
    border-radius: 50%;
    filter: blur(64px); /* blur-3xl */
    opacity: 0.3;
    transform: translateY(-50%);
    z-index: 0;
}

.diff-bg-blur.left {
    left: 0;
    background-color: #e0f2fe; /* sky-100 */
}

.diff-bg-blur.right {
    right: 0;
    background-color: #d1fae5; /* emerald-100 */
}

/* Badge Variant */
.badge-emerald {
    background-color: #d1fae5; /* bg-emerald-100 */
    color: #047857; /* text-emerald-700 */
}

.text-emerald {
    color: #059669; /* text-emerald-600 */
}

/* Grid Modern */
.differentials-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .differentials-grid-modern { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .differentials-grid-modern { grid-template-columns: repeat(3, 1fr); }
}

/* Modern Card */
.diff-card-modern {
    position: relative;
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    border: 1px solid #f1f5f9; /* border-slate-100 */
    transition: all 0.3s ease;
    height: 100%;
}

.diff-card-modern:hover {
    border-color: #bae6fd; /* hover:border-sky-200 */
    box-shadow: var(--shadow-lg);
}

/* Number Badge */
.diff-number-badge {
    position: absolute;
    top: -0.75rem; /* -top-3 */
    right: -0.75rem; /* -right-3 */
    width: 2rem; /* w-8 */
    height: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary)); /* from-sky-500 to-emerald-500 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

/* Icon */
.diff-icon-modern {
    width: 4rem; /* w-16 */
    height: 4rem;
    border-radius: 1rem; /* rounded-2xl */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2); /* shadow-sky-500/20 */
    transition: transform 0.3s ease;
}

.diff-card-modern:hover .diff-icon-modern {
    transform: scale(1.1);
}

.diff-icon-modern i {
    color: white;
    font-size: 2rem; /* w-8 h-8 approx */
}

/* Content */
.diff-title-modern {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.diff-desc-modern {
    color: #475569; /* text-slate-600 */
    line-height: 1.625;
}

/* --- Insurances Section (Redesigned) --- */
.insurances-section {
    background-color: white;
    padding: 6rem 0 8rem; /* py-24 lg:py-32 */
    overflow: hidden;
}

.insurances-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .insurances-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem; /* gap-16 */
    }
}

/* Insurance List */
.insurance-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem; /* gap-3 */
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .insurance-list-grid { grid-template-columns: repeat(3, 1fr); }
}

.insurance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem; /* px-4 py-3 */
    background-color: #f8fafc; /* bg-slate-50 */
    border-radius: 0.75rem; /* rounded-xl */
    transition: background-color 0.3s ease;
}

.insurance-item:hover {
    background-color: #f0f9ff; /* hover:bg-sky-50 */
}

.insurance-item i {
    color: #10b981; /* text-emerald-500 */
    font-size: 0.875rem;
    flex-shrink: 0;
}

.insurance-item span {
    color: #334155; /* text-slate-700 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    transition: color 0.3s ease;
}

.insurance-item:hover span {
    color: #0369a1; /* text-sky-700 */
}

/* Private Card Dark */
.insurances-card-col {
    position: relative;
}

.private-card-dark {
    background: linear-gradient(135deg, #1e293b, #0f172a, #1e293b); /* from-slate-800 via-slate-900 to-slate-800 */
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .private-card-dark { padding: 2.5rem; }
}

/* Card Decorative Blurs */
.card-blur {
    position: absolute;
    width: 10rem; /* w-40 */
    height: 10rem;
    border-radius: 50%;
    filter: blur(64px); /* blur-3xl */
    z-index: 0;
}

.card-blur.top-right {
    top: 0;
    right: 0;
    background-color: rgba(14, 165, 233, 0.2); /* sky-500/20 */
}

.card-blur.bottom-left {
    bottom: 0;
    left: 0;
    background-color: rgba(16, 185, 129, 0.2); /* emerald-500/20 */
}

.card-content-wrapper {
    position: relative;
    z-index: 1;
}

.card-icon-box {
    width: 4rem; /* w-16 */
    height: 4rem;
    border-radius: 1rem; /* rounded-2xl */
    background-color: rgba(255, 255, 255, 0.1); /* bg-white/10 */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon-box i {
    color: #38bdf8; /* text-sky-400 */
    font-size: 2rem;
}

.card-title-dark {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-desc-dark {
    color: #cbd5e1; /* text-slate-300 */
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* Benefits List */
.card-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 2rem; /* w-8 */
    height: 2rem;
    border-radius: 0.5rem; /* rounded-lg */
    background-color: rgba(16, 185, 129, 0.2); /* emerald-500/20 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #34d399; /* text-emerald-400 */
    font-size: 0.875rem;
}

.benefit-item span {
    color: #e2e8f0; /* text-slate-200 */
    font-size: 0.95rem;
}

/* Floating Badge Gradient */
.floating-badge-gradient {
    position: absolute;
    bottom: -1rem; /* -bottom-4 */
    left: -1rem; /* -left-4 */
    background: linear-gradient(to right, #0ea5e9, #10b981); /* from-sky-500 to-emerald-500 */
    color: white;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

/* Animation Delays for list */
.delay-1 { transition-delay: 50ms; }
.delay-2 { transition-delay: 100ms; }
.delay-3 { transition-delay: 150ms; }
.delay-4 { transition-delay: 200ms; }
.delay-5 { transition-delay: 250ms; }
.delay-6 { transition-delay: 300ms; }
.delay-7 { transition-delay: 350ms; }
.delay-8 { transition-delay: 400ms; }
.delay-9 { transition-delay: 450ms; }
.delay-10 { transition-delay: 500ms; }
.delay-11 { transition-delay: 550ms; }
.delay-12 { transition-delay: 600ms; }

/* --- Testimonials Section (Redesigned) --- */
.testimonials-section {
    position: relative;
    background-color: #f8fafc; /* bg-slate-50 */
    padding: 6rem 0 8rem;
    overflow: hidden;
}

/* Background Blurs */
.testi-bg-blur {
    position: absolute;
    width: 16rem; /* w-64 */
    height: 16rem;
    border-radius: 50%;
    filter: blur(64px); /* blur-3xl */
    opacity: 0.5;
    z-index: 0;
}

.testi-bg-blur.top-left {
    top: 5rem;
    left: 5rem;
    background-color: #e0f2fe; /* sky-100 */
}

.testi-bg-blur.bottom-right {
    bottom: 5rem;
    right: 5rem;
    background-color: #d1fae5; /* emerald-100 */
}

/* Badge Variant */
.badge-amber {
    background-color: #fef3c7; /* bg-amber-100 */
    color: #b45309; /* text-amber-700 */
}

/* Grid Modern */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonials-grid-modern { grid-template-columns: repeat(3, 1fr); }
}

/* Modern Card */
.testi-card-modern {
    position: relative;
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    border: 1px solid #f1f5f9; /* border-slate-100 */
    box-shadow: var(--shadow-sm);
    transition: all 0.5s ease;
    height: 100%;
}

.testi-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* Quote Icon Badge */
.quote-icon-badge {
    position: absolute;
    top: -1rem; /* -top-4 */
    right: 2rem; /* right-8 */
    width: 2.5rem; /* w-10 */
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.quote-icon-badge i {
    color: white;
    font-size: 1rem; /* w-5 h-5 approx */
}

/* Rating */
.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rating-stars i {
    color: #fbbf24; /* text-amber-400 */
    font-size: 1rem;
}

/* Content */
.testi-content {
    color: #475569; /* text-slate-600 */
    line-height: 1.625;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Author */
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-author img {
    width: 3.5rem; /* w-14 */
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8fafc; /* ring-slate-50 */
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.author-info span {
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-slate-500 */
}

/* Trust Badge (Bottom) */
.trust-badge-container {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem; /* px-6 py-4 */
    background-color: white;
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 2.5rem; /* w-10 */
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -0.75rem; /* -space-x-2 equivalent approx */
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.trust-info {
    text-align: left;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars-mini i {
    color: #fbbf24; /* text-amber-400 */
    font-size: 0.875rem;
}

.score {
    font-weight: 700;
    color: var(--text-dark);
}

.trust-label {
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-slate-500 */
    margin: 0;
}

/* --- Contact Section (Redesigned) --- */
.contact-section {
    position: relative;
    background-color: white;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

/* Background Elements */
.contact-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /* bg-gradient-to-r from-slate-50 to-transparent */
    background: linear-gradient(to right, #f8fafc, transparent);
    z-index: 0;
}

/* Badge Variant */
.badge-sky {
    background-color: #e0f2fe; /* bg-sky-100 */
    color: #0369a1; /* text-sky-700 */
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .contact-grid-wrapper { grid-template-columns: 1fr 1fr; }
}

/* Contact Info Column */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
    padding: 1.5rem; /* p-6 */
    border-radius: 1rem; /* rounded-2xl */
    border: 1px solid #f1f5f9; /* border-slate-100 */
    transition: all 0.3s ease;
    background-color: white;
    display: block;
}

.contact-card:hover {
    border-color: #bae6fd; /* hover:border-sky-200 */
    box-shadow: var(--shadow-lg);
}

.contact-card.cursor-pointer {
    cursor: pointer;
}

.contact-icon-modern {
    width: 3rem; /* w-12 */
    height: 3rem;
    border-radius: 0.75rem; /* rounded-xl */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon-modern {
    transform: scale(1.1);
}

.contact-icon-modern i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.primary-text {
    color: #334155; /* text-slate-700 */
    font-size: 0.95rem;
    margin: 0;
}

.secondary-text {
    color: #64748b; /* text-slate-500 */
    font-size: 0.875rem; /* text-sm */
    margin: 0;
}

/* Map Wrapper */
.map-wrapper-modern {
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    height: 16rem; /* h-64 */
    background-color: #f1f5f9; /* bg-slate-100 */
    border: 1px solid #e2e8f0;
}

/* Contact Form Column */
.form-card-modern {
    background-color: #f8fafc; /* bg-slate-50 */
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 2rem;
}

@media (min-width: 1024px) {
    .form-card-modern { padding: 2.5rem; }
}

.form-card-modern h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #475569; /* text-slate-600 */
    margin-bottom: 2rem;
}

/* Modern Form Inputs */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 1rem; /* h-14 equivalent padding */
    border-radius: 0.75rem; /* rounded-xl */
    border: 1px solid #e2e8f0; /* border-slate-200 */
    background-color: white;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.modern-textarea {
    min-height: 8rem; /* min-h-32 */
    resize: none;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--primary); /* focus:border-sky-500 */
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); /* focus:ring-sky-500 */
}

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

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* Submit Button */
.btn-submit-modern {
    width: 100%;
    height: 3.5rem; /* h-14 */
    border-radius: 0.75rem; /* rounded-xl */
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-modern:hover {
    background: linear-gradient(to right, var(--primary-dark), #0369a1);
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.4);
}

.btn-submit-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-content,
.btn-loading,
.btn-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hidden {
    display: none !important;
}

/* Form Footer */
.form-footer-text {
    text-align: center;
    color: #64748b; /* text-slate-500 */
    font-size: 0.875rem; /* text-sm */
    margin-top: 1.5rem;
}

.form-footer-text a {
    color: #059669; /* text-emerald-600 */
    font-weight: 600;
}

.form-footer-text a:hover {
    text-decoration: underline;
}

/* --- Footer (Redesigned) --- */
.footer-modern {
    background-color: #0f172a; /* bg-slate-900 */
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -1px; /* Ensure no gap */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.footer-container-modern {
    padding-top: 5rem; /* pt-20 */
    padding-bottom: 3rem; /* pb-12 */
    position: relative;
    z-index: 2;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    margin-bottom: 3rem; /* mb-12 */
}

@media (min-width: 768px) {
    .footer-grid-modern { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid-modern { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } /* Custom widths like React grid */
}

/* Brand Column */
.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.logo-icon-box-footer {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    border-radius: 0.75rem; /* rounded-xl */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-box-footer i {
    color: white;
    font-size: 1.25rem;
}

.brand-footer {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.location-footer {
    color: #38bdf8; /* text-sky-400 */
    font-size: 0.75rem; /* text-xs */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    margin: 0;
}

.footer-desc {
    color: #94a3b8; /* text-slate-400 */
    line-height: 1.625;
    margin-bottom: 1.5rem; /* mb-6 */
}

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

.social-links-modern a {
    width: 2.5rem; /* w-10 */
    height: 2.5rem;
    border-radius: 0.75rem; /* rounded-xl */
    background-color: #1e293b; /* bg-slate-800 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links-modern a:hover {
    background-color: var(--primary-dark); /* hover:bg-sky-600 */
}

.social-links-modern i {
    color: white;
    font-size: 1.1rem;
}

/* Link Columns */
.footer-col-links h4,
.footer-col-contact h4 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    margin-bottom: 1.5rem; /* mb-6 */
}

.footer-col-links ul,
.footer-col-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links ul li {
    margin-bottom: 1rem; /* space-y-4 */
}

.footer-col-links a {
    color: #94a3b8; /* text-slate-400 */
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col-links a:hover {
    color: #38bdf8; /* hover:text-sky-400 */
}

/* Contact Column */
.footer-col-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-col-contact i {
    color: #38bdf8; /* text-sky-400 */
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-col-contact span {
    color: #94a3b8; /* text-slate-400 */
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom-modern {
    border-top: 1px solid #1e293b; /* border-slate-800 */
    padding-top: 2rem; /* pt-8 */
}

.footer-legal-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-legal-row {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #64748b; /* text-slate-500 */
    font-size: 0.875rem; /* text-sm */
    margin: 0;
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #64748b; /* text-slate-500 */
    font-size: 0.875rem; /* text-sm */
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #38bdf8; /* hover:text-sky-400 */
}

.disclaimer {
    color: #475569; /* text-slate-600 */
    font-size: 0.75rem; /* text-xs */
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* --- Animations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.left { transform: translateX(-30px); }
.scroll-reveal.right { transform: translateX(30px); }
.scroll-reveal.visible.left, 
.scroll-reveal.visible.right { transform: translateX(0); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-width: 600px; margin: 0 auto; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero-cards { position: relative; bottom: auto; left: auto; transform: none; flex-direction: column; margin-top: 2rem; }
    .hero { height: auto; padding: 120px 0 3rem; }
    .insurances-container { flex-direction: column; align-items: stretch; }
    .private-card { width: 100%; flex: auto; }
}

@media (max-width: 768px) {
    .navbar, .header-actions .btn { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .check-list { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-wrapper { flex-direction: column; }
}