/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
    --primary: #0e6fad;
    --primary-dark: #0a5a8e;
    --primary-light: #e8f4fd;
    --secondary: #14b8a6;
    --secondary-light: #d1faf5;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--gray-50);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader i {
    font-size: 32px;
    color: var(--primary);
    z-index: 1;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 0; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14,111,173,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
    background: var(--dark);
    color: var(--gray-300);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-link {
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--white);
}

.top-link i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* ============================
   NAVIGATION
   ============================ */
.main-nav {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-200);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.2;
}

.logo-title {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li > a {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu > li > a i {
    font-size: 0.65rem;
    transition: var(--transition);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    z-index: 100;
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
}

.dropdown li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Nav CTA */
.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 24px !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    display: block;
}

/* ============================
   HERO SECTION (DARK)
   ============================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 120px;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f1a 0%, #0d1b2a 40%, #0f2537 70%, #0a1628 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(14,111,173,0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(20,184,166,0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(14,111,173,0.08) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.25);
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--white);
}

.hero .text-gradient {
    background: linear-gradient(135deg, #38bdf8, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-designation {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--primary), #0891b2);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(14,111,173,0.35);
}

.hero .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(14,111,173,0.5);
    transform: translateY(-2px);
}

.hero .btn-outline {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.25);
}

.hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.trust-item i {
    color: var(--secondary);
}

/* Hero Visual — Doctor Image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(14,111,173,0.3) 0%, rgba(20,184,166,0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-doctor-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
    animation: heroImgReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroImgReveal {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.15);
}

.card-experience {
    top: 18%;
    left: -5%;
    animation-delay: 0s;
}

.card-surgeries {
    bottom: 22%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.card-experience .float-icon {
    background: rgba(245,158,11,0.12);
    color: var(--accent);
}

.card-surgeries .float-icon {
    background: rgba(20,184,166,0.12);
    color: var(--secondary);
}

.float-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}

.float-text span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stat-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--primary);
    font-size: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 6px;
}

/* ============================
   ABOUT PREVIEW
   ============================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-doctor-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.highlight-item i {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 4px;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.why-cards-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.why-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card-item:nth-child(2),
.why-card-item:nth-child(4) {
    margin-top: 30px;
}

.wc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.2rem;
}

.why-card-item h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 4px;
}

.why-card-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-swiper {
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.author-info span i {
    color: var(--secondary);
    margin-right: 4px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================
   APPOINTMENT SECTION
   ============================ */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.appointment-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.appointment-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.appt-feature {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.appt-feature i {
    color: var(--secondary);
}

.appointment-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.appointment-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,111,173,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ============================
   FOOTER
   ============================ */
.footer-cta {
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(135deg, #0d1b2a, var(--primary), #0891b2);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: -60px;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.footer-main {
    background: var(--dark);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-title {
    color: var(--secondary);
}

.footer-about {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--gray-500);
    border-bottom: 1.5px solid var(--gray-500);
    transform: rotate(-45deg);
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links a:hover::before {
    border-color: var(--secondary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact li a {
    color: var(--gray-400);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-contact li strong {
    color: var(--gray-300);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================
   PAGE BANNER
   ============================ */
.page-banner {
    background: linear-gradient(135deg, #0a0f1a 0%, #0d1b2a 40%, #0f2537 70%, #0a1628 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(14,111,173,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(20,184,166,0.08) 0%, transparent 45%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}

.breadcrumb span {
    color: var(--secondary);
}

/* ============================
   ABOUT INTRO
   ============================ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-intro-img-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-designation {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-intro-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.about-info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.about-info-item span {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================
   LICENSES
   ============================ */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.license-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.license-flag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.license-card h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 6px;
}

.license-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    font-family: monospace;
}

.license-country {
    font-size: 0.8rem;
    color: var(--primary);
}

.license-country i {
    margin-right: 4px;
}

/* ============================
   TIMELINE
   ============================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 17px;
    height: 17px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-dot.active {
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(14,111,173,0.15);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.experience-timeline .timeline-content {
    background: var(--white);
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 12px;
    background: rgba(245,158,11,0.1);
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 50px;
}

.timeline-badge.current {
    background: rgba(16,185,129,0.1);
    color: #059669;
}

.timeline-badge.current i {
    font-size: 0.5rem;
}

/* ============================
   AWARDS
   ============================ */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.award-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.award-card:hover .award-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.award-card h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
}

.award-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================
   PUBLICATIONS
   ============================ */
.publications-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pub-category {
    margin-bottom: 40px;
}

.pub-category:last-child {
    margin-bottom: 0;
}

.pub-category h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pub-category h3 i {
    color: var(--primary);
}

.pub-list {
    list-style: decimal;
    padding-left: 20px;
}

.pub-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    border-bottom: 1px solid var(--gray-100);
}

.pub-list li:last-child {
    border-bottom: none;
}

.pub-list li em {
    color: var(--primary);
    font-style: italic;
}

.reviewer-list {
    list-style: disc;
}

/* ============================
   MEMBERSHIPS
   ============================ */
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.membership-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.membership-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.membership-card h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.membership-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================
   ABOUT PAGE RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .memberships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 40px;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .licenses-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .memberships-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -30px;
    }
}

/* ============================
   MEDICAL CASES
   ============================ */
.cases-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14,111,173,0.3);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.case-card.hidden {
    display: none;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.case-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-img img {
    transform: scale(1.08);
}

.case-tag {
    display: none;
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14,111,173,0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--dark);
}

.case-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .cases-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-doctor-placeholder {
        width: 250px;
        height: 320px;
    }

    .hero-blob {
        width: 320px;
        height: 320px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col {
        max-width: 400px;
        margin: 0 auto;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li > a {
        padding: 14px 16px;
        border-bottom: 1px solid var(--gray-100);
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        display: none;
        background: var(--gray-50);
        border-radius: 0;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
    }

    .top-bar-right {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-float-card {
        display: none;
    }

    .hero-doctor-placeholder {
        width: 200px;
        height: 260px;
    }

    .hero-blob {
        width: 250px;
        height: 250px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .why-cards-stack {
        grid-template-columns: 1fr 1fr;
    }

    .why-card-item:nth-child(2),
    .why-card-item:nth-child(4) {
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }

    /* About column — full width */
    .footer-grid .footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* Quick Links (col 2) + Our Services (col 3) sit side-by-side in row 2 */
    .footer-grid .footer-col:nth-child(2),
    .footer-grid .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    /* Contact Info — full width */
    .footer-grid .footer-col:nth-child(4),
    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    /* Tighten link spacing inside the 2-up footer columns on mobile */
    .footer-grid .footer-col:nth-child(2) .footer-links li,
    .footer-grid .footer-col:nth-child(3) .footer-links li {
        margin-bottom: 8px;
    }
    .footer-grid .footer-col:nth-child(2) .footer-links a,
    .footer-grid .footer-col:nth-child(3) .footer-links a {
        font-size: 0.92rem;
    }

    .cta-card {
        padding: 32px 24px;
        margin-top: -40px;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .appointment-form-wrapper {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 0.95rem;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.78rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .why-cards-stack {
        grid-template-columns: 1fr;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-info-section { padding-top: 80px; padding-bottom: 40px; }
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid #eef2f7;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.ci-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0d1b2a, var(--primary), #0891b2);
    color: #fff;
    font-size: 1.4rem;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.contact-info-card p { font-size: 0.9rem; color: #64748b; margin-bottom: 12px; }
.contact-info-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}
.contact-info-card a:hover { color: var(--accent); }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-form { margin-top: 24px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    font: inherit;
    font-size: 0.95rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,27,42,0.08);
}
.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.map-details {
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    margin-top: 16px;
    border: 1px solid #eef2f7;
}
.map-details h4 { color: var(--primary); margin-bottom: 6px; }
.map-details p { color: #64748b; font-size: 0.92rem; margin-bottom: 12px; }
.map-hours { display: flex; flex-direction: column; gap: 4px; font-size: 0.88rem; color: #475569; }
.map-hours strong { color: var(--primary); }

@media (max-width: 1024px) {
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================
   PATIENT INFO PAGE
   ============================ */
.info-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.info-tab {
    padding: 14px 28px;
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    color: #475569;
    transition: all .25s ease;
    font-size: 0.95rem;
}
.info-tab i { margin-right: 8px; }
.info-tab:hover { border-color: var(--primary); color: var(--primary); }
.info-tab.active {
    background: linear-gradient(135deg, #0d1b2a, var(--primary));
    border-color: transparent;
    color: #fff;
}
.info-tab-content { display: none; }
.info-tab-content.active { display: block; }
.info-content-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    border: 1px solid #eef2f7;
}
.info-content-card h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.info-content-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2f7;
}
.info-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}
.info-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}
.info-list li {
    padding-left: 28px;
    position: relative;
    color: #475569;
    line-height: 1.6;
}
.info-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.97rem;
    transition: background .2s;
}
.faq-q:hover { background: #eef2f7; }
.faq-q i { transition: transform .3s ease; color: var(--accent); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 20px 16px;
}
.faq-a p { color: #475569; line-height: 1.6; margin: 0; }

@media (max-width: 600px) {
    .info-content-card { padding: 24px; }
    .info-tab { padding: 12px 18px; font-size: 0.88rem; }
}

/* ============================
   PUBLICATIONS PAGE
   ============================ */
.pub-stats-section { padding: 60px 0; }
.pub-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pub-stat {
    background: #fff;
    padding: 32px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eef2f7;
    transition: transform .3s ease;
}
.pub-stat:hover { transform: translateY(-4px); }
.pub-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.pub-stat-label { color: #64748b; font-weight: 500; font-size: 0.92rem; }

.pub-articles-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}
.pub-article {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-items: center;
    border: 1px solid #eef2f7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pub-article:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    border-color: var(--accent);
}
.pub-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0d1b2a, var(--primary));
    padding: 10px 0;
    border-radius: 10px;
    text-align: center;
}
.pub-details h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.4;
}
.pub-details p { font-size: 0.88rem; color: #64748b; margin: 0; }

@media (max-width: 768px) {
    .pub-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pub-article { grid-template-columns: 70px 1fr; padding: 16px; gap: 14px; }
    .pub-year { font-size: 1.2rem; padding: 8px 0; }
}

/* Publications PDF buttons override */
.pub-article { grid-template-columns: 90px 1fr auto !important; }
.pub-actions { display: flex; gap: 8px; flex-shrink: 0; }
.pub-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}
.pub-btn-view { background: #eef2f7; color: var(--primary); border-color: #e2e8f0; }
.pub-btn-view:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pub-btn-download { background: linear-gradient(135deg, #0d1b2a, var(--primary)); color: #fff; }
.pub-btn-download:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(13,27,42,0.25); color: #fff; }

@media (max-width: 768px) {
    .pub-article { grid-template-columns: 70px 1fr !important; }
    .pub-actions { grid-column: 1 / -1; margin-top: 4px; }
    .pub-btn { flex: 1; justify-content: center; }
}

/* Linked publication list (about page) */
.pub-list-linked { list-style: decimal; padding-left: 24px; }
.pub-list-linked li { margin-bottom: 10px; }
.pub-link-item {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    color: #475569;
    text-decoration: none;
    line-height: 1.6;
    padding: 4px 0;
    transition: color .2s;
}
.pub-link-item .pub-link-title { color: var(--primary); font-weight: 600; }
.pub-link-item i { color: #dc2626; margin-left: 4px; }
.pub-link-item:hover { color: var(--accent); }
.pub-link-item:hover .pub-link-title { color: var(--accent); }
.pub-more-cta { margin-top: 24px; text-align: center; }

/* Footer credit line */
.footer-credit {
    text-align: center;
    padding: 14px 0 0;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-credit p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-credit a { color: #38bdf8; font-weight: 600; text-decoration: none; }
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* Legal pages */
.legal-section .legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 56px;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    border: 1px solid #eef2f7;
}
.legal-updated { color: #64748b; font-size: 0.9rem; margin-bottom: 24px; }
.legal-content h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2f7;
}
.legal-content p, .legal-content li {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 10px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content a { color: var(--primary); font-weight: 600; }
.legal-content a:hover { color: var(--accent); }
@media (max-width: 600px) {
    .legal-section .legal-content { padding: 30px 22px; }
}

/* Footer bottom single row */
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copy, .footer-credit-inline { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-credit-inline { flex: 1; text-align: center; }
.footer-credit-inline a { color: #38bdf8; font-weight: 600; text-decoration: none; }
.footer-credit-inline a:hover { color: #fff; text-decoration: underline; }
.footer-bottom-links { display: flex; gap: 20px; }
@media (max-width: 768px) {
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .footer-credit-inline { flex: 0 0 100%; order: 3; }
}

/* Footer bottom visibility fix */
.footer-bottom {
    background: #0a1628 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #e2e8f0;
}
.footer-bottom p,
.footer-bottom .footer-bottom-links a,
.footer-copy,
.footer-credit-inline { color: #e2e8f0 !important; }
.footer-credit-inline a { color: #38bdf8 !important; }
.footer-credit-inline a:hover { color: #fff !important; }
.footer-bottom-links a:hover { color: #38bdf8 !important; }

/* Press Releases */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.press-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.press-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.press-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 900 / 650;
    overflow: hidden;
    background: #eef2f7;
}
.press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.press-card:hover .press-thumb img { transform: scale(1.06); }
.press-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.4), rgba(13,27,42,0.75));
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.press-card:hover .press-overlay { opacity: 1; }
.press-view {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transform: scale(0.8);
    transition: transform .3s ease;
}
.press-card:hover .press-view { transform: scale(1); }
.press-info { padding: 22px 24px; }
.press-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.press-info h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}
.press-info p { font-size: 0.9rem; color: #64748b; line-height: 1.55; margin: 0; }

@media (max-width: 1024px) {
    .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .press-grid { grid-template-columns: 1fr; }
}

/* Press thumbnails: show full image (no crop) */
.press-thumb {
    background: #f1f5f9 !important;
    cursor: pointer;
}
.press-thumb img {
    object-fit: contain !important;
    padding: 10px;
    background: #f8fafc;
}

/* Lightbox */
.press-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 28, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.press-lightbox.active { display: flex; animation: plFade .25s ease; }
@keyframes plFade { from { opacity: 0; } to { opacity: 1; } }

.pl-stage {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.pl-stage img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #fff;
}
.pl-caption {
    color: #fff;
    text-align: center;
    max-width: 700px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.pl-caption strong { color: #38bdf8; font-size: 1.05rem; }
.pl-counter {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.pl-close, .pl-nav {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
}
.pl-close:hover, .pl-nav:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }
.pl-close { top: 20px; right: 20px; }
.pl-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.pl-next { right: 20px; top: 50%; transform: translateY(-50%); }
.pl-prev:hover { transform: translateY(-50%) scale(1.08); }
.pl-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 600px) {
    .pl-close, .pl-nav { width: 40px; height: 40px; font-size: 0.95rem; }
    .pl-prev { left: 10px; } .pl-next { right: 10px; } .pl-close { top: 10px; right: 10px; }
}

/* Medical cases: show full image (no crop) + clickable lightbox */
.case-img {
    background: #f1f5f9 !important;
    cursor: pointer;
}
.case-img img {
    object-fit: contain !important;
    padding: 8px;
    background: #f8fafc;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #eef2f7;
    box-shadow: 0 3px 14px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.35), rgba(13,27,42,0.7));
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-view {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transform: scale(0.8);
    transition: transform .3s ease;
}
.gallery-item:hover .gallery-view { transform: scale(1); }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px)  { .gallery-grid { grid-template-columns: 1fr; } }

/* Service detail page */
.service-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
.service-intro-text p { color: #475569; line-height: 1.75; margin-bottom: 14px; }
.service-intro-stats {
    display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.service-intro-stats > div {
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    flex: 1; min-width: 130px;
    text-align: center;
}
.service-intro-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-intro-stats span { font-size: 0.82rem; color: #64748b; font-weight: 500; }
.service-intro-img img {
    width: 100%; max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: block; margin: 0 auto;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.condition-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}
.condition-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.condition-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d1b2a, var(--primary));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.condition-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 12px; }
.condition-card ul { list-style: none; padding: 0; }
.condition-card ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.5;
}
.condition-card ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 4px; top: 6px;
}

@media (max-width: 1024px) {
    .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .conditions-grid { grid-template-columns: 1fr; }
}

/* === VIDEO GALLERY === */
.video-gallery .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.video-gallery .video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}
.video-gallery .video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}
.video-gallery .video-embed iframe,
.video-gallery .video-embed video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    border: 0 !important;
    display: block;
}
.video-gallery .video-caption { padding: 18px 20px 22px; }
.video-gallery .video-caption h3 {
    margin: 0 0 8px; font-size: 1.05rem; color: #0d1b2a; line-height: 1.35;
}
.video-gallery .video-caption p {
    margin: 0; color: #475569; font-size: 0.9rem; line-height: 1.55;
}


/* === THANK YOU PAGE === */
.ty-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 35%, #e0f2fe 70%, #f0fdfa 100%);
    overflow: hidden;
}
.ty-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.ty-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}
.ty-shape-1 {
    width: 420px; height: 420px;
    background: #60a5fa;
    top: -120px; left: -120px;
    animation: tyFloat 14s ease-in-out infinite;
}
.ty-shape-2 {
    width: 360px; height: 360px;
    background: #2dd4bf;
    bottom: -100px; right: -80px;
    animation: tyFloat 16s ease-in-out infinite reverse;
}
.ty-shape-3 {
    width: 280px; height: 280px;
    background: #a78bfa;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: tyFloat 18s ease-in-out infinite;
}
@keyframes tyFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -40px) scale(1.1); }
}

.ty-card {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 28px;
    padding: 64px 54px;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(14,111,173,0.18),
        0 10px 30px rgba(14,111,173,0.08);
}

/* Animated SVG checkmark */
.ty-checkmark {
    width: 110px; height: 110px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(16,185,129,0.45);
    animation: tyPop 0.55s cubic-bezier(.17,.85,.38,1.16);
}
.ty-checkmark svg { width: 70px; height: 70px; }
.ty-check-circle {
    stroke: rgba(255,255,255,0.4);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: tyStroke 0.6s ease-out forwards 0.15s;
}
.ty-check-tick {
    stroke: #fff;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: tyStroke 0.45s ease-out forwards 0.5s;
}
@keyframes tyStroke { to { stroke-dashoffset: 0; } }
@keyframes tyPop {
    0%   { transform: scale(0) rotate(-90deg); opacity: 0; }
    60%  { transform: scale(1.15) rotate(0); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.ty-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14,111,173,0.1), rgba(45,212,191,0.1));
    color: #0e6fad;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ty-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 18px;
    color: #0d1b2a;
    letter-spacing: -1px;
}
.ty-lead {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.75;
    margin: 0 auto 36px;
    max-width: 520px;
}
.ty-lead strong { color: #0e6fad; }

.ty-divider {
    position: relative;
    margin: 32px 0 28px;
    text-align: center;
}
.ty-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.ty-divider span {
    position: relative;
    display: inline-block;
    background: rgba(255,255,255,0.9);
    padding: 0 18px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.ty-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin-bottom: 40px;
}
.ty-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ty-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(14,111,173,0.15);
    border-color: #0e6fad;
}
.ty-info-icon {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.ty-icon-blue  { background: linear-gradient(135deg, #0e6fad, #38bdf8); }
.ty-icon-teal  { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.ty-icon-green { background: linear-gradient(135deg, #10b981, #34d399); }
.ty-info-text small {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.ty-info-text strong {
    font-size: 0.9rem;
    color: #0d1b2a;
    font-weight: 600;
    word-break: break-word;
}

.ty-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-outline {
    background: transparent;
    color: #0e6fad;
    border: 2px solid #0e6fad;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.btn-outline:hover {
    background: #0e6fad;
    color: #fff;
    transform: translateY(-2px);
}

.ty-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.88rem;
}
.ty-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}
.ty-social a:hover {
    background: linear-gradient(135deg, #0e6fad, #2dd4bf);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 700px) {
    .ty-card { padding: 44px 24px; border-radius: 20px; }
    .ty-title { font-size: 2.2rem; }
    .ty-checkmark { width: 90px; height: 90px; }
    .ty-checkmark svg { width: 58px; height: 58px; }
    .ty-actions .btn { width: 100%; justify-content: center; }
}

/* ============================
   GOOGLE REVIEWS SECTION
   ============================ */

/* Compact Google rating chip */
.gr-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 22px 10px 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
    margin: 16px auto 44px;
    width: fit-content;
}
.gr-chip-logo { display: flex; align-items: center; flex-shrink: 0; }
.gr-chip-rating {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}
.gr-chip-stars { color: #f59e0b; font-size: 0.82rem; letter-spacing: 2px; }
.gr-chip-stars .far { color: #d1d5db; }
.gr-chip-count { font-size: 0.8rem; color: #64748b; white-space: nowrap; }

/* Real Google profile photo */
.author-avatar-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}
.google-review-card:hover .author-avatar-photo { transform: scale(1.08) rotate(-3deg); }

/* Dim empty (far) stars compared to filled ones */
.google-review-card .testimonial-stars .far { color: #d1d5db; }

/* Hero rating panel */
.gr-rating-panel {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 44px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 40px 48px;
    max-width: 820px;
    margin: 24px auto 56px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}
.gr-rating-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(66, 133, 244, 0.06), transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(52, 168, 83, 0.05), transparent 55%);
    pointer-events: none;
}
.gr-rating-left {
    text-align: center;
    position: relative;
    padding-right: 24px;
    border-right: 1px solid #e5e7eb;
}
.gr-rating-left .gr-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    animation: gr-logo-pulse 3s ease-in-out infinite;
}
@keyframes gr-logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.gr-rating-big {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.gr-rating-stars-big {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.gr-rating-stars-big i {
    display: inline-block;
    animation: gr-star-pop 0.6s ease-out both;
    transform-origin: center;
}
.gr-rating-stars-big i:nth-child(1) { animation-delay: 0.0s; }
.gr-rating-stars-big i:nth-child(2) { animation-delay: 0.1s; }
.gr-rating-stars-big i:nth-child(3) { animation-delay: 0.2s; }
.gr-rating-stars-big i:nth-child(4) { animation-delay: 0.3s; }
.gr-rating-stars-big i:nth-child(5) { animation-delay: 0.4s; }
@keyframes gr-star-pop {
    0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
    60%  { transform: scale(1.25) rotate(10deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
.gr-rating-meta {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 14px;
}
.gr-rating-meta strong {
    color: #1f2937;
}
.gr-write-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4285F4;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(66, 133, 244, 0.25);
    background: rgba(66, 133, 244, 0.06);
    transition: all 0.25s ease;
}
.gr-write-link:hover {
    background: #4285F4;
    color: #fff;
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.25);
}

/* Rating breakdown bars */
.gr-rating-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.gr-breakdown-row {
    display: grid;
    grid-template-columns: 40px 1fr 44px;
    align-items: center;
    gap: 12px;
}
.gr-breakdown-label {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gr-breakdown-label i {
    color: #f59e0b;
    font-size: 0.72rem;
}
.gr-breakdown-track {
    height: 8px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.gr-breakdown-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 999px;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gr-breakdown-pct {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    text-align: right;
}

/* Carousel wrapper with nav arrows */
.gr-carousel-wrap {
    position: relative;
    padding: 0 12px;
}
.gr-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
    transition: all 0.25s ease;
    font-size: 0.95rem;
}
.gr-nav:hover {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: #fff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}
.reviews-nav-prev { left: -6px; }
.reviews-nav-next { right: -6px; }

/* Review cards */
.google-review-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px 22px;
}
.google-review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.04), rgba(251, 188, 4, 0.04));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.google-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-color: #fbbf24;
}
.google-review-card:hover::before { opacity: 1; }

.gr-quote-mark {
    position: absolute;
    top: -8px;
    right: 18px;
    font-family: Georgia, serif;
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(66, 133, 244, 0.12);
    pointer-events: none;
    transition: transform 0.4s ease, color 0.4s ease;
}
.google-review-card:hover .gr-quote-mark {
    transform: scale(1.12) rotate(6deg);
    color: rgba(251, 188, 4, 0.22);
}

.google-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.google-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.google-review-card .author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}
.google-review-card:hover .author-avatar { transform: scale(1.08) rotate(-3deg); }

.google-review-card .author-info strong {
    display: block;
    font-size: 0.98rem;
    color: #1f2937;
    line-height: 1.2;
}
.google-review-card .author-info span {
    font-size: 0.78rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.google-review-logo {
    opacity: 0.75;
    flex-shrink: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.google-review-card:hover .google-review-logo {
    opacity: 1;
    transform: rotate(15deg);
}

.google-review-card .testimonial-stars {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.google-review-card .testimonial-stars i {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-right: 2px;
}
.google-review-card .testimonial-text {
    position: relative;
    z-index: 1;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.gr-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.08);
    padding: 5px 10px;
    border-radius: 999px;
    position: relative;
    z-index: 1;
}
.gr-verified i { font-size: 0.85rem; }

/* Pagination dots */
.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 24px;
}
.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}
.testimonials-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #4285F4, #34A853);
    width: 30px;
    border-radius: 5px;
}

/* CTAs below carousel */
.google-reviews-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.google-reviews-actions .btn i { margin-right: 6px; }

/* Responsive */
@media (max-width: 860px) {
    .gr-rating-panel {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 28px;
    }
    .gr-rating-left {
        padding-right: 0;
        padding-bottom: 28px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .gr-rating-big { font-size: 3.2rem; }
    .gr-rating-stars-big { font-size: 1.1rem; letter-spacing: 2px; }
}
@media (max-width: 600px) {
    .gr-rating-panel { padding: 26px 20px; margin-bottom: 40px; }
    .gr-rating-big { font-size: 2.8rem; }
    .gr-breakdown-row { grid-template-columns: 36px 1fr 40px; gap: 10px; }
    .gr-breakdown-label { font-size: 0.78rem; }
    .gr-breakdown-pct { font-size: 0.76rem; }
    .reviews-nav-prev { left: -2px; }
    .reviews-nav-next { right: -2px; }
    .gr-nav { width: 38px; height: 38px; font-size: 0.8rem; }
    .google-reviews-actions { flex-direction: column; align-items: stretch; }
    .google-reviews-actions .btn { width: 100%; justify-content: center; }
    .gr-quote-mark { font-size: 4.5rem; }
}

/* ============================
   SLOGAN SECTION
   ============================ */
.slogan-section {
    position: relative;
    background: linear-gradient(135deg, #0c2340 0%, #0e6fad 50%, #0d9488 100%);
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}
.slogan-section--compact { padding: 60px 0; }
.slogan-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.slogan-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}
.slogan-quote-icon {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    margin-bottom: 16px;
}
.slogan-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.slogan-body {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 32px;
}
.slogan-divider {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    margin: 0 auto 32px;
}
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.btn-white-outline:hover {
    background: #fff;
    color: #0c2340;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .slogan-heading { font-size: 1.8rem; }
    .slogan-body { font-size: 1rem; }
    .slogan-section { padding: 60px 0; }
}

/* ============================
   TESTIMONIALS PAGE
   ============================ */
.tpage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.tpage-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 22px rgba(15,23,42,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tpage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC04, #EA4335);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.tpage-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15,23,42,0.11); border-color: #cbd5e1; }
.tpage-card:hover::before { opacity: 1; }

.tpage-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tpage-tag {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 999px;
}
.tpage-stars { color: #f59e0b; font-size: 0.82rem; letter-spacing: 1px; }
.tpage-stars .far { color: #d1d5db; }

.tpage-quote {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    position: relative;
    margin: 0;
}
.tpage-open-quote, .tpage-close-quote {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-style: normal;
    line-height: 0;
    vertical-align: -0.3em;
}
.tpage-open-quote { margin-right: 2px; }
.tpage-close-quote { margin-left: 2px; }

.tpage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.tpage-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tpage-author-info strong { display: block; font-size: 0.95rem; color: #1f2937; }
.tpage-author-info span { font-size: 0.78rem; color: #64748b; display: inline-flex; align-items: center; gap: 4px; }
.tpage-author-info span i { font-size: 0.7rem; }

/* CTA block */
.tpage-cta {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px;
}
.tpage-cta-icon { display: flex; justify-content: center; margin-bottom: 18px; }
.tpage-cta-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.tpage-cta-sub { font-size: 1rem; color: #64748b; line-height: 1.6; margin-bottom: 28px; }
.tpage-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .tpage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tpage-grid { grid-template-columns: 1fr; gap: 20px; }
    .slogan-heading { font-size: 1.5rem; }
    .tpage-cta-title { font-size: 1.4rem; }
    .tpage-cta-actions { flex-direction: column; align-items: stretch; }
    .tpage-cta-actions .btn { width: 100%; justify-content: center; }
}
