/* ============================================
   SUNRISE DIAGNOSTIC CENTRE — PREMIUM LUXURY THEME
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    /* Main Brand Colors from Logo */
    --primary: #0056b3;        /* Deep Trust Blue */
    --primary-dark: #003d82;   
    --primary-deeper: #002244; 
    --primary-light: #e6f0fa;  
    --primary-glow: rgba(0, 86, 179, 0.18);

    /* Secondary / Accent Colors from Logo */
    --secondary: #ED1C24;      /* Sunrise Red */
    --secondary-light: #fde8e9;
    --accent: #FF8C00;         /* Sunrise Orange/Gold */
    --accent-light: #fff3e6;

    /* Semantic Colors */
    --info: #0056b3;
    --info-light: #e6f0fa;
    --red: #ED1C24;
    --red-light: #fde8e9;
    --purple: #7c3aed;
    --purple-light: #f1edff;

    /* Luxury Gradients */
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    --gradient-sunrise: linear-gradient(135deg, #ED1C24 0%, #FF8C00 100%);
    --gradient-warm: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --gradient-hero: linear-gradient(160deg, #001a33 0%, #003366 40%, #0056b3 100%);
    --gradient-dark: linear-gradient(135deg, #001122 0%, #002244 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);

    /* Typography */
    --text-heading: #0a1929;
    --text-body: #4a5568;
    --text-muted: #718096;
    --bg-body: #fcfcfc;
    --bg-alt: #f4f7fa;
    --bg-dark: #eef2f6;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;

    /* Refined Luxury Shadows */
    --shadow-xs: 0 2px 4px rgba(0, 34, 68, 0.04);
    --shadow-sm: 0 4px 12px rgba(0, 34, 68, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 34, 68, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 34, 68, 0.12);
    --shadow-xl: 0 30px 60px rgba(0, 34, 68, 0.15);
    --shadow-primary: 0 10px 25px rgba(0, 86, 179, 0.3);
    --shadow-sunrise: 0 10px 25px rgba(237, 28, 36, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 86, 179, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 100px;

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.35s var(--ease);

    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', 'Lexend', serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-body);
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 110px 0; position: relative; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

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

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

.text-sunrise { color: var(--secondary) !important; }
.text-gold { color: #d4af37 !important; }
.text-primary { color: var(--primary) !important; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    letter-spacing: 0.01em;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 86, 179, 0.35); }

.btn-sunrise {
    background: var(--gradient-sunrise);
    color: #fff;
    box-shadow: var(--shadow-sunrise);
}
.btn-sunrise:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(237, 28, 36, 0.4); color: #fff; }

.btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
}
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-3px); }

.btn-outline-glass {
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
}
.btn-outline-glass:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-3px); }

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-outline-white {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }

.btn-text-sunrise {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    transition: var(--transition);
}
.btn-text-sunrise:hover { color: var(--primary); gap: 12px; }

.btn-lg { padding: 17px 42px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== UTILITY & BADGE CLASSES ===== */
.sunrise-badge { background: var(--secondary-light); color: var(--secondary); border: 1px solid rgba(237, 28, 36, 0.2); }
.luxury-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(20px); color: #fff; }
.luxury-badge i { color: #FFD700; }
.sunrise-bg { background: var(--gradient-sunrise) !important; color: white !important; }
.blue-bg { background: var(--gradient-primary) !important; color: white !important; }
.gold-bg { background: var(--gradient-warm) !important; color: black !important; }
.gold-text { color: #d4af37 !important; background: #fcf8e3 !important; }
.blue-gradient { background: var(--gradient-primary) !important; color: #fff !important; }
.gold-gradient { background: var(--gradient-warm) !important; color: #fff !important; }
.red-gradient { background: linear-gradient(135deg, #ED1C24, #c5161c) !important; color: #fff !important; }
.dark-gradient { background: var(--gradient-dark) !important; color: #fff !important; }
.dark-text { color: var(--primary-deeper) !important; background: #eef2f6 !important; }
.red-text { color: var(--red) !important; background: var(--red-light) !important; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--gradient-hero);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-bar-left span, .top-bar-right a { display: flex; align-items: center; gap: 8px; }
.top-bar-right a:hover { color: var(--accent); }
.top-social { display: flex; gap: 8px; }
.top-social a {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    font-size: 12px;
    transition: var(--transition);
}
.top-social a:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); }


/* ===== NAVBAR (FLOATING CURVY NOTCH TYPE) ===== */
.navbar {
    position: sticky; 
    top: 20px; /* Floating space from top */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 10px 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* The Curvy Notch Effect */
    border-radius: 100px; /* Fully rounded pill shape */
    max-width: 1200px;
    width: 94%;
    margin: 0 auto; /* Centers the floating bar */
    border: 1px solid rgba(0, 86, 179, 0.12); /* Subtle blue border */
    box-shadow: 0 10px 30px rgba(0, 34, 68, 0.08); /* Soft floating shadow */
}

/* Scrolled State for Navbar */
.navbar.scrolled {
    top: 15px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 40px rgba(0, 34, 68, 0.12);
    border-color: rgba(237, 28, 36, 0.15); /* Slight sunrise glow on border when scrolled */
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    padding: 0 !important; /* Overrides default container padding */
}

/* Logo Image Styling */
.header-logo-img {
    height: 50px; /* Perfect height for the notch */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.header-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu { display: flex; align-items: center; gap: 6px; }

/* ===== THE NEW NAV LINK HOVER (Priority Image Style) ===== */
.nav-link {
    padding: 8px 16px; 
    font-size: 15px; 
    font-weight: 600;
    color: var(--text-heading); 
    border-radius: var(--radius-full);
    letter-spacing: 0.01em; 
    transition: all 0.3s ease;
    position: relative;
}

/* Removing the old blue background & adding the Gradient Text */
.nav-link:hover, .nav-link.active {
    background: transparent; 
    color: transparent;
    background-image: var(--gradient-sunrise); /* Red to Orange gradient */
    -webkit-background-clip: text;
    background-clip: text;
    transform: translateY(-2px);
}

/* Premium Little Dot Indicator under active/hover link */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--gradient-sunrise);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scale(1);
}

/* CTA Button Inside Nav */
.nav-cta {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 12px;
    border-radius: 100px;
    display: flex; 
    align-items: center; 
    gap: 8px;
    transition: transform 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); }

/* Mobile Nav Toggle Icon */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--primary-deeper); border-radius: 3px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Responsive adjustments for the Curvy Notch */
@media (max-width: 992px) {
    .navbar {
        width: 95%;
        top: 15px;
        padding: 12px 20px;
        border-radius: 30px; /* Slightly less round on smaller screens */
    }
    .header-logo-img { height: 40px; }
    
    .nav-toggle { display: flex; }
    
    .nav-menu {
        position: fixed; 
        top: 85px; /* Drops down just below the floating notch */
        right: 2.5%;
        width: 95%; 
        background: rgba(255,255,255,0.98); 
        flex-direction: column;
        padding: 24px; 
        gap: 10px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 17, 34, 0.15);
        border: 1px solid rgba(0, 86, 179, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-spring);
    }
    
    .nav-menu.active { 
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link { width: 100%; padding: 12px 16px; border-radius: 12px; font-size: 16px; text-align: center;}
    .nav-link::after { display: none; /* Hide dot on mobile */ }
    .nav-cta { margin: 16px 0 0; justify-content: center; width: 100%; padding: 14px 24px; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden; width: 100%;
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 86, 179, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255, 140, 0, 0.08) 0%, transparent 60%);
}

.hero-overlay-luxury {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 86, 179, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(237, 28, 36, 0.1) 0%, transparent 60%);
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; background: rgba(255,255,255,0.12);
    border-radius: 50%; animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-50px) scale(1.4); opacity: 0.7; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative; z-index: 2;
    padding: 60px 0;
    width: 100%;
}

.hero-content {
    text-align: left; color: #fff;
    position: relative;
    max-width: 600px; width: 100%;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 28px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 500;
    margin-bottom: 28px; animation: fadeInDown 0.8s ease;
    max-width: 100%; flex-wrap: wrap; justify-content: center; text-align: center;
    letter-spacing: 0.03em;
}

.hero h1 {
    color: #fff; margin-bottom: 22px;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.15;
}
.hero p {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    opacity: 0.8; max-width: 540px; margin: 0 0 40px;
    line-height: 1.8; animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 300;
}

.hero-buttons {
    display: flex; gap: 16px; justify-content: flex-start;
    flex-wrap: wrap; margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex; justify-content: flex-start;
    gap: 40px; flex-wrap: wrap; width: 100%;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat { text-align: left; min-width: 0; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem; font-weight: 800; display: inline-block; line-height: 1;
    letter-spacing: -0.03em;
}
.stat-suffix { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; display: inline-block; line-height: 1; }
.stat-label {
    font-size: 11px; opacity: 0.5; text-transform: uppercase;
    letter-spacing: 2px; margin-top: 8px; display: block; font-weight: 500;
}

/* ===== HERO VISUAL (IMAGE SIDE) ===== */
.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-visual-glow {
    position: absolute;
    width: 90%; height: 90%;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.35) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 17, 34, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

.hero-image-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 17, 34, 0.5) 100%);
}

.hero-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 8s ease;
    border-radius: var(--radius-xl);
}

.hero:hover .hero-image-wrap img { transform: scale(1.1); }

.hero-float-card {
    position: absolute;
    display: flex; align-items: center; gap: 14px;
    background: rgba(0, 34, 68, 0.55);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 20px 50px rgba(0, 17, 34, 0.35);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card strong { display: block; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.01em; }
.hero-float-card span { display: block; color: rgba(255,255,255,0.6); font-size: 11px; margin-top: 2px; }

.float-card-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px;
}

.card-top { top: 6%; left: -8%; animation-delay: 0s; }
.card-bottom { bottom: 14%; right: -10%; animation-delay: 1.5s; }

.hero-rating-card {
    position: absolute;
    bottom: -22px; left: 50%; transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius-full);
    padding: 12px 26px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 17, 34, 0.25);
    z-index: 2;
    white-space: nowrap;
}
.hero-rating-card .rating-stars { color: var(--accent); font-size: 12px; letter-spacing: 2px; }
.hero-rating-card strong { color: var(--text-heading); font-size: 12px; font-weight: 700; font-family: var(--font-body); }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%); z-index: 2;
}
.hero-scroll a { color: rgba(255,255,255,0.35); font-size: 22px; animation: bounceDown 2.5s ease-in-out infinite; }

@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; padding: 0 12px; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.65); }

.section-badge {
    display: inline-block;
    background: var(--primary-light); color: var(--primary);
    padding: 8px 22px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 18px;
}
.section-badge.light { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.section-header p { color: var(--text-muted); font-size: 16px; margin-top: 18px; line-height: 1.7; font-weight: 400; }

/* ===== SERVICES DUO (Radiology + Pathology) ===== */
.services-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 760px;
    margin: 0 auto;
}

.luxury-bg { background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%); }

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    transition: all 0.45s var(--ease);
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: var(--shadow-xs);
    display: flex; flex-direction: column;
}
.luxury-card { border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.luxury-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }

.service-card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--primary-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.service-card-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.1); }
.overlay-gradient-dark { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,34,68,0.8) 100%); z-index: 2; pointer-events: none; }
.premium-tag { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,0.4); }


.service-img-fallback {
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px; color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light), #dcebff);
}

.service-card-tag {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 6px 14px; border-radius: var(--radius-full);
}

.service-card-icon {
    width: 56px; height: 56px;
    margin: -28px 0 0 24px;
    z-index: 4; position: relative;
    background: var(--gradient-primary);
    border: 4px solid #fff;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-spring);
}
.service-card:hover .service-card-icon { transform: scale(1.12) rotate(-6deg); }

.service-card-body { padding: 16px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 14px; }
.service-link:hover { gap: 12px; }

.services-cta { text-align: center; margin-top: 44px; }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--bg-alt); overflow: hidden; }
.about-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.image-card { position: relative; }
.image-placeholder {
    width: 100%; height: 420px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.9); font-size: 80px; gap: 16px;
    box-shadow: var(--shadow-lg);
}
.image-placeholder span { font-size: 18px; font-weight: 500; font-family: var(--font-body); }
.image-placeholder.large { height: 500px; font-size: 100px; }

.experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--secondary); color: #fff;
    padding: 22px 28px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-md);
}
.exp-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.exp-text { font-size: 12px; font-weight: 500; display: block; margin-top: 4px; letter-spacing: 0.03em; }

.about-preview-content .section-badge { margin-bottom: 14px; }
.about-preview-content h2 { margin-bottom: 22px; }
.about-preview-content p { margin-bottom: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature .feature-icon { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.about-feature strong { display: block; color: var(--text-heading); font-size: 14px; font-family: var(--font-body); font-weight: 600; }
.about-feature span { font-size: 13px; color: var(--text-muted); }

/* ===== FEATURES BENTO GRID ===== */
.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 24px;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.premium-border { border: 1px solid var(--border-light); }
.premium-border:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }


.feature-number {
    position: absolute; top: 16px; right: 20px; z-index: 0;
    font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
    color: var(--bg-dark); line-height: 1;
}

.feature-icon-badge {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--primary-light); color: var(--primary);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
    position: relative; z-index: 1;
    transition: all 0.4s var(--ease-spring);
}
.feature-card:hover .feature-icon-badge { background: var(--gradient-primary); color: #fff; transform: scale(1.1) rotate(-6deg); }

.feature-card h4 { font-size: 1.02rem; margin-bottom: 8px; position: relative; z-index: 1; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; position: relative; z-index: 1; margin: 0; }

/* Featured large tile (image-backed) */
.feature-card.featured {
    grid-column: span 2; grid-row: span 2;
    padding: 0; border: none;
    background: var(--gradient-dark);
}
.luxury-bento-featured { background: var(--gradient-dark); }

.feature-card.featured img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.feature-card.featured:hover img { transform: scale(1.08); }
.feature-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,17,34,0.15) 0%, rgba(0,17,34,0.9) 100%);
}
.feature-card-content {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px;
}
.feature-tag {
    display: inline-flex; align-items: center; gap: 6px; width: fit-content;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 7px 16px; border-radius: var(--radius-full);
    margin-bottom: 18px;
}
.feature-tag i { color: var(--accent); font-size: 11px; }
.feature-icon-badge.dark { background: rgba(255,255,255,0.12); color: var(--accent); margin-bottom: 18px; }
.feature-card.featured:hover .feature-icon-badge.dark { background: var(--accent); color: #fff; transform: scale(1.1) rotate(-6deg); }
.feature-card.featured h4 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.feature-card.featured p { color: rgba(255,255,255,0.75); font-size: 14.5px; }

/* ===== DOCTORS ===== */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 700px; margin: 0 auto; }

.doctor-card {
    background: #fff; border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease); border: 1px solid var(--border-light);
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.premium-doctor-card { border: 1px solid var(--border-light); }

.doctor-image { position: relative; overflow: hidden; }
.doctor-card-photo {
    width: 100%; height: 300px;
    object-fit: cover; object-position: top center;
    display: block; transition: transform 0.5s var(--ease);
}
.doctor-card:hover .doctor-card-photo { transform: scale(1.06); }
.doctor-placeholder {
    width: 100%; height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-alt));
    display: flex; align-items: center; justify-content: center;
    font-size: 80px; color: var(--primary);
}
.doctor-placeholder.large { height: 360px; font-size: 100px; }
.doctor-placeholder.tribute { background: linear-gradient(135deg, #f5e6d8, var(--secondary-light)); color: var(--secondary); }

.doctor-overlay {
    position: absolute; inset: 0;
    background: rgba(0, 86, 179, 0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.sunrise-overlay { background: rgba(0, 86, 179, 0.85); }
.doctor-card:hover .doctor-overlay { opacity: 1; }
.doctor-overlay a {
    width: 52px; height: 52px; background: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px;
    transform: scale(0); transition: all 0.4s var(--ease-spring);
}
.doctor-card:hover .doctor-overlay a { transform: scale(1); }

.doctor-info { padding: 26px; text-align: center; }
.doctor-info h4 { font-size: 1.2rem; margin-bottom: 6px; }
.doctor-degree { display: block; font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.02em; }
.doctor-role { display: block; font-size: 13px; color: var(--text-muted); }

/* ===== CORE VALUES ===== */
.core-values {
    background: var(--gradient-hero); position: relative; overflow: hidden;
}
.core-values-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 86, 179, 0.12) 0%, transparent 60%);
}
.core-values .container { position: relative; z-index: 2; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 40px 28px; text-align: center;
    transition: all 0.4s var(--ease);
}
.value-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.value-icon { font-size: 34px; color: var(--accent); margin-bottom: 22px; }
.value-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 64px 44px; text-align: center;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-primary);
}
.luxury-cta-card { background: var(--gradient-primary); box-shadow: var(--shadow-xl); }
.cta-card::before {
    content: ''; position: absolute; top: -40%; right: -30%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-card::after {
    content: ''; position: absolute; bottom: -30%; left: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: #fff; margin-bottom: 18px; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 580px; margin: 0 auto 32px; font-weight: 300; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== LOCATION ===== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.premium-shadow { box-shadow: var(--shadow-lg); }
.info-card {
    background: #fff; border-radius: var(--radius-xl);
    padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
}
.premium-info-card { background: #fff; border: 1px solid var(--border-light); box-shadow: var(--shadow-md); }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.info-item:last-child { border-bottom: none; }
.info-icon {
    width: 50px; height: 50px; background: var(--primary-light);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.info-item h5 { font-size: 13px; font-weight: 700; margin-bottom: 4px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); }
.info-item p { font-size: 14px; color: var(--text-body); }
.info-item a { color: var(--primary); font-weight: 500; }

.hover-text-sunrise:hover { color: var(--secondary); }
.hover-text-primary:hover { color: var(--primary); }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--gradient-hero);
    padding: 130px 0 80px; position: relative; overflow: hidden;
}
.page-banner-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 86, 179, 0.12) 0%, transparent 60%);
}
.page-banner-content { position: relative; z-index: 2; text-align: center; }
.page-banner h1 { color: #fff; margin-bottom: 18px; }
.breadcrumb { display: flex; justify-content: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== ABOUT PAGE ===== */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-image-card { position: relative; }
.story-float-card {
    position: absolute; bottom: -20px; left: -20px;
    background: #fff; padding: 22px 28px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center;
}
.float-icon {
    width: 52px; height: 52px; background: var(--gradient-primary);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
}
.story-float-card strong { display: block; font-size: 1.3rem; color: var(--text-heading); }
.story-float-card span { font-size: 13px; color: var(--text-muted); }

.story-highlights { display: flex; gap: 32px; margin: 32px 0; }
.highlight-item { display: flex; gap: 14px; align-items: center; }
.highlight-icon {
    width: 52px; height: 52px; background: var(--primary-light);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 20px; flex-shrink: 0;
}
.highlight-item strong { display: block; color: var(--text-heading); font-size: 1.2rem; font-family: var(--font-heading); font-weight: 800; }
.highlight-item span { font-size: 13px; color: var(--text-muted); }

/* Mission Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-vision { background: var(--bg-alt); }
.mv-card {
    background: #fff; border-radius: var(--radius-2xl);
    padding: 48px 40px; border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-icon {
    width: 68px; height: 68px; background: var(--gradient-primary);
    border-radius: var(--radius-lg); display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 26px; margin-bottom: 26px;
}
.mv-card h3 { margin-bottom: 16px; }
.mv-card p { color: var(--text-body); font-size: 15px; line-height: 1.7; }

/* Values detail */
.values-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.value-detail-card {
    text-align: center; padding: 44px 28px;
    background: #fff; border-radius: var(--radius-xl);
    border: 1px solid var(--border-light); transition: all 0.4s var(--ease);
}
.value-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-detail-icon {
    width: 72px; height: 72px; background: var(--primary-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--primary); margin: 0 auto 22px;
    transition: all 0.4s var(--ease-spring);
}
.value-detail-card:hover .value-detail-icon { background: var(--gradient-primary); color: #fff; transform: scale(1.1); }
.value-detail-card h4 { margin-bottom: 12px; }
.value-detail-card p { font-size: 14px; color: var(--text-muted); }

/* Culture */
.culture-card {
    background: var(--bg-alt); border-radius: var(--radius-2xl);
    padding: 60px; text-align: center; max-width: 900px; margin: 0 auto;
}
.culture-icon { font-size: 48px; color: var(--primary); margin-bottom: 24px; }
.culture-card h3 { margin-bottom: 20px; }
.culture-card p { margin-bottom: 16px; font-size: 16px; }

/* Infra */
.infrastructure-section { background: var(--bg-alt); }
.infra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.infra-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 32px 22px; text-align: center;
    border: 1px solid var(--border-light); transition: all 0.4s var(--ease);
}
.infra-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.infra-card i { font-size: 30px; color: var(--primary); margin-bottom: 16px; }
.infra-card h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 10px; }
.infra-card p { font-size: 13px; color: var(--text-muted); }

/* Lab Tech */
.lab-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lab-features { list-style: none; margin-top: 24px; }
.lab-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.lab-features li i { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.tech-card .image-placeholder { height: 400px; background: linear-gradient(135deg, #0056b3, #ED1C24); }

/* ===== SERVICES PAGE ===== */
.service-detail { background: #fff; }
.service-detail-alt { background: var(--bg-alt); }
.service-detail-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary-light); color: var(--primary);
    padding: 10px 22px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; margin-bottom: 22px;
}
.service-detail-badge.green { background: var(--accent-light); color: var(--accent); }
.service-detail-badge.red { background: var(--red-light); color: var(--red); }
.service-detail-badge.purple { background: var(--purple-light); color: var(--purple); }
.service-detail h2 { margin-bottom: 16px; }
.service-detail p { margin-bottom: 16px; }

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.service-list-item {
    display: flex; gap: 16px; padding: 22px;
    background: var(--bg-alt); border-radius: var(--radius-md);
    transition: all 0.4s var(--ease); border: 1px solid transparent;
}
.service-list-item:hover { background: #fff; box-shadow: var(--shadow-sm); border-color: var(--primary-light); transform: translateX(6px); }
.service-list-icon {
    width: 46px; height: 46px; background: var(--primary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.service-list-item h5 { font-family: var(--font-body); font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.service-list-item p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* Pathology */
.pathology-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0; }
.path-feature {
    background: #fff; border-radius: var(--radius-md);
    padding: 26px; border: 1px solid var(--border-light); transition: all 0.4s var(--ease);
}
.path-feature:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.path-icon {
    width: 50px; height: 50px; background: var(--accent-light);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; color: var(--accent); font-size: 20px; margin-bottom: 16px;
}
.path-feature h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.path-feature p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* Test Tags */
.test-categories { margin-top: 30px; }
.test-categories h4 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.test-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.test-tag {
    background: var(--accent-light); color: var(--accent);
    padding: 8px 20px; border-radius: var(--radius-full);
    font-size: 13px; font-weight: 500; transition: all 0.3s var(--ease);
}
.test-tag:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* Health Packages */
.health-packages { background: var(--bg-alt); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.package-card {
    background: #fff; border-radius: var(--radius-2xl);
    padding: 44px 32px; border: 1px solid var(--border-light);
    text-align: center; transition: all 0.4s var(--ease); position: relative;
}
.package-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.04); }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.package-badge {
    display: inline-block; background: var(--primary-light); color: var(--primary);
    padding: 6px 22px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 20px;
}
.package-card.featured .package-badge { background: var(--gradient-primary); color: #fff; }
.package-card h4 { margin-bottom: 24px; }
.package-card ul { list-style: none; margin-bottom: 30px; }
.package-card ul li {
    padding: 11px 0; border-bottom: 1px solid var(--border-light);
    font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li i { color: var(--accent); font-size: 14px; }

/* ===== DOCTORS PAGE ===== */
.doctor-detail-card {
    display: grid; grid-template-columns: 300px 1fr; gap: 40px;
    background: #fff; border-radius: var(--radius-2xl);
    overflow: hidden; border: 1px solid var(--border-light);
    margin-bottom: 28px; transition: all 0.4s var(--ease);
}
.doctor-detail-card:hover { box-shadow: var(--shadow-lg); }
.doctor-detail-card.tribute-card { border-color: var(--secondary); border-width: 2px; }
.doctor-detail-image { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.doctor-real-photo {
    width: 100%; height: 420px;
    object-fit: cover; object-position: top center;
    display: block; border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease);
}
.doctor-detail-card:hover .doctor-real-photo { transform: scale(1.04); }
.doctor-badge {
    position: absolute; bottom: 16px; left: 16px;
    background: var(--gradient-primary); color: #fff;
    padding: 7px 18px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
}
.doctor-badge.tribute { background: var(--gradient-warm); }
.doctor-detail-info { padding: 40px 40px 40px 0; }
.doctor-detail-info h3 { margin-bottom: 8px; font-size: 1.6rem; }
.doctor-designation { display: block; color: var(--primary); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.doctor-qualification { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.doctor-detail-info p { margin-bottom: 20px; font-size: 15px; }
.doctor-specialties h5 { font-family: var(--font-body); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; }
.specialty-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.specialty-tags span { background: var(--primary-light); color: var(--primary-dark); padding: 6px 16px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; }
.doctor-social { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.doctor-social span { font-size: 14px; color: var(--text-muted); font-style: italic; }
.tribute-quote { background: var(--secondary-light); border-left: 4px solid var(--secondary); padding: 22px 26px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-top: 20px; }
.tribute-quote i { color: var(--secondary); font-size: 20px; margin-bottom: 10px; display: block; }
.tribute-quote p { font-style: italic; color: var(--text-body); margin-bottom: 0; }

/* Team Values */
.team-values { background: var(--bg-alt); }
.team-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-feature { text-align: center; padding: 40px 28px; background: #fff; border-radius: var(--radius-xl); border: 1px solid var(--border-light); transition: all 0.4s var(--ease); }
.team-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-icon { width: 68px; height: 68px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--primary); margin: 0 auto 20px; }
.team-feature h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 10px; }
.team-feature p { font-size: 14px; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 26px; border: 2px solid var(--border-color); background: #fff;
    border-radius: var(--radius-full); font-family: var(--font-body);
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: var(--transition); color: var(--text-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--gradient-primary); color: #fff; border-color: transparent; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.gallery-item { position: relative; border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; transition: all 0.4s var(--ease); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-placeholder {
    width: 100%; height: 260px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-alt));
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; font-size: 48px; color: var(--primary); gap: 10px;
}
.gallery-placeholder span { font-size: 14px; font-weight: 500; font-family: var(--font-body); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0, 17, 34, 0.85) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ===== CONTACT ===== */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.contact-info-card {
    background: #fff; border-radius: var(--radius-xl);
    padding: 36px 28px; text-align: center;
    border: 1px solid var(--border-light); transition: all 0.4s var(--ease);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.contact-card-icon {
    width: 64px; height: 64px; background: var(--primary-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary); margin: 0 auto 20px;
    transition: all 0.4s var(--ease-spring);
}
.contact-info-card:hover .contact-card-icon { background: var(--gradient-primary); color: #fff; transform: scale(1.1); }
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.contact-info-card p { font-size: 14px; }
.contact-info-card a { color: var(--primary); font-weight: 500; }
.contact-card-note { display: block; font-size: 12px; color: var(--text-muted); margin-top: 8px; font-style: italic; }

/* Contact Form */
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-wrapper h3, .contact-map-wrapper h3 { margin-bottom: 12px; }
.contact-form-wrapper > p { color: var(--text-muted); margin-bottom: 30px; }

.form-alert { padding: 16px 22px; border-radius: var(--radius-md); margin-bottom: 24px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.form-alert.success { background: var(--accent-light); color: #b36200; border: 1px solid #ffe6cc; }
.form-alert.error { background: var(--red-light); color: #c53030; border: 1px solid #ffcdd2; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-heading); margin-bottom: 8px; letter-spacing: 0.02em; }
.required { color: var(--red); }

.input-wrapper {
    position: relative; display: flex; align-items: center;
    background: var(--bg-alt); border: 2px solid var(--border-color);
    border-radius: var(--radius-md); transition: var(--transition);
}
.input-wrapper.focused { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.input-wrapper.filled { border-color: var(--accent); }
.input-wrapper i { position: absolute; left: 16px; color: var(--text-muted); font-size: 15px; transition: var(--transition); }
.input-wrapper.focused i { color: var(--primary); }
.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
    width: 100%; padding: 15px 16px 15px 46px;
    border: none; background: none; font-family: var(--font-body);
    font-size: 15px; color: var(--text-heading); outline: none;
}
.textarea-wrapper { align-items: flex-start; }
.textarea-wrapper i { top: 16px; }
.textarea-wrapper textarea { resize: vertical; min-height: 120px; }
.input-wrapper select { cursor: pointer; appearance: none; }

.directions-card { background: var(--bg-alt); border-radius: var(--radius-md); padding: 24px; margin-top: 24px; }
.directions-card h5 { font-family: var(--font-body); font-weight: 600; margin-bottom: 12px; color: var(--primary); }
.directions-card p { font-size: 14px; margin-bottom: 10px; }

/* Quick Contact */
.quick-contact-card {
    background: var(--gradient-primary); border-radius: var(--radius-2xl);
    padding: 44px; display: flex; justify-content: center;
    align-items: center; gap: 60px; box-shadow: var(--shadow-primary);
}
.quick-contact-item { text-align: center; color: #fff; }
.quick-contact-item i { font-size: 30px; margin-bottom: 10px; display: block; }
.quick-contact-item h5 { color: #fff; font-family: var(--font-body); font-weight: 600; margin-bottom: 6px; }
.quick-contact-item a { color: rgba(255,255,255,0.8); font-size: 14px; }
.quick-contact-item a:hover { color: #fff; }
.quick-contact-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-hero); color: rgba(255,255,255,0.7);
    position: relative; padding-top: 20px;
}
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; color: var(--bg-body); line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding: 80px 0 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .brand-icon { width: 44px; height: 44px; font-size: 18px; background: rgba(255,255,255,0.1); }
.footer-brand .brand-name { color: #fff; font-size: 20px; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.4); }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; font-size: 15px; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 18px; margin-bottom: 24px; position: relative; padding-bottom: 14px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--accent); border-radius: 3px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul li a::before { content: '\203A'; font-size: 16px; opacity: 0.4; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }
.footer-col ul li a:hover::before { opacity: 1; color: var(--accent); }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-item i { color: var(--accent); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; text-align: center; font-size: 13px; }
.footer-bottom p { margin: 4px 0; }

/* ===== FLOATING ===== */
.back-to-top {
    position: fixed; bottom: 24px; right: 20px;
    width: 46px; height: 46px; background: var(--gradient-primary);
    color: #fff; border: none; border-radius: 50%;
    font-size: 16px; cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); box-shadow: var(--shadow-primary);
    z-index: 999; display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

.whatsapp-float {
    position: fixed; bottom: 80px; right: 20px;
    width: 52px; height: 52px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 26px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    z-index: 998; animation: whatsappPulse 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.call-float {
    position: fixed; bottom: 142px; right: 20px;
    width: 52px; height: 52px; background: var(--primary);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 20px;
    box-shadow: 0 4px 24px rgba(0, 86, 179, 0.35); z-index: 998;
}
.call-float:hover { transform: scale(1.1); color: #fff; }

/* ===== PHOTO SLIDER ===== */
.virtual-tour-section { background: var(--bg-alt); }
.photo-slider { position: relative; max-width: 100%; }
.slider-container { overflow: hidden; border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); }
.slider-track { display: flex; transition: transform 0.6s var(--ease); will-change: transform; }
.slide { min-width: 100%; position: relative; }
.slide-image { width: 100%; height: 480px; overflow: hidden; }
.slide-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 100px; color: rgba(255,255,255,0.2); }
.slide-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 44px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: #fff;
}
.slide-info h4 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; }
.slide-info p { font-size: 15px; opacity: 0.8; font-weight: 300; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.slider-btn {
    width: 50px; height: 50px; background: #fff;
    border: 1px solid var(--border-color); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--text-heading); cursor: pointer;
    transition: all 0.3s var(--ease);
}
.slider-btn:hover { background: var(--gradient-primary); color: #fff; border-color: transparent; transform: scale(1.08); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-color); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--primary); width: 32px; border-radius: var(--radius-full); }
.slider-progress { width: 100%; height: 3px; background: var(--border-color); border-radius: 3px; margin-top: 18px; overflow: hidden; }
.slider-progress-bar { height: 100%; background: var(--gradient-primary); border-radius: 3px; transition: width 0.4s ease; }

/* Video Tour */
.video-tour { margin-top: 64px; }
.video-tour-card {
    display: grid; grid-template-columns: 1.2fr 1fr;
    background: #fff; border-radius: var(--radius-2xl);
    overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.video-placeholder { position: relative; height: 100%; min-height: 360px; }
.video-bg { width: 100%; height: 100%; background: var(--gradient-hero); display: flex; align-items: center; justify-content: center; font-size: 80px; color: rgba(255,255,255,0.06); }
.video-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.15); }
.play-btn {
    width: 80px; height: 80px; background: #fff; border: none;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary); cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.play-btn:hover { transform: scale(1.15); background: var(--primary); color: #fff; }
.play-btn i { margin-left: 4px; }
.video-info-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px 26px; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px); display: flex; justify-content: space-between;
    color: #fff; font-size: 13px; font-weight: 400;
}
.video-info-bar span { display: flex; align-items: center; gap: 8px; }
.video-tour-content { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; }
.video-tour-content h3 { margin-bottom: 18px; }
.video-tour-content p { color: var(--text-body); margin-bottom: 26px; font-size: 15px; line-height: 1.7; }
.video-features { display: flex; flex-direction: column; gap: 14px; }
.video-features span { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-heading); }
.video-features i { color: var(--accent); font-size: 16px; }

/* ===== FAQ ===== */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-category { margin-bottom: 28px; }
.faq-category-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--primary-light);
}
.faq-category-header i {
    width: 42px; height: 42px; background: var(--primary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 16px;
}
.faq-category-header h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; }

.faq-item {
    border: 1px solid var(--border-light); border-radius: var(--radius-md);
    margin-bottom: 10px; overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-xs); }

.faq-question {
    width: 100%; padding: 18px 22px; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    cursor: pointer; font-family: var(--font-body);
    font-size: 14px; font-weight: 500; color: var(--text-heading);
    text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { font-size: 13px; color: var(--primary); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.active .faq-question { color: var(--primary); background: var(--primary-light); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 22px 22px; font-size: 14px; color: var(--text-body); line-height: 1.8; }
.faq-cta { text-align: center; margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border-light); }
.faq-cta p { font-size: 17px; font-weight: 500; color: var(--text-heading); margin-bottom: 22px; }

/* ===== HEALTH TOOLS CTA ===== */
.health-tools-cta { padding: 60px 0; }
.tools-cta-card { background: var(--bg-alt); border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid var(--border-light); }
.tools-cta-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 300px; }
.tools-cta-content { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; }
.tools-cta-content h2 { margin-bottom: 16px; }
.tools-cta-content p { margin-bottom: 26px; color: var(--text-body); }
.tools-cta-icons { position: relative; background: linear-gradient(135deg, var(--primary-light), var(--bg-alt)); overflow: hidden; }
.tool-float-icon {
    position: absolute; left: var(--x); top: var(--y);
    width: 60px; height: 60px; background: #fff;
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; font-size: 24px; color: var(--primary);
    box-shadow: var(--shadow-md); animation: toolFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}
@keyframes toolFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(5deg); }
}

/* ===== HEALTH TOOLS PAGE ===== */
.tools-intro { padding-bottom: 20px; }
.tool-section { padding: 60px 0; }
.tool-section-alt { background: var(--bg-alt); }
.tool-card {
    background: #fff; border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light); overflow: hidden; box-shadow: var(--shadow-xs);
}
.tool-section-alt .tool-card { box-shadow: var(--shadow-md); }
.tool-header {
    display: flex; align-items: center; gap: 20px;
    padding: 32px 40px; border-bottom: 1px solid var(--border-light);
    background: var(--bg-alt);
}
.tool-icon-badge {
    width: 56px; height: 56px; background: var(--primary-light);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; font-size: 24px; color: var(--primary); flex-shrink: 0;
}
.tool-icon-badge.green { background: var(--accent-light); color: var(--accent); }
.tool-icon-badge.red { background: var(--red-light); color: var(--red); }
.tool-icon-badge.blue { background: #e0f2fe; color: #0284c7; }
.tool-header h2 { font-size: 1.5rem; margin-bottom: 4px; }
.tool-header p { font-size: 14px; color: var(--text-muted); margin: 0; }
.tool-body { padding: 40px; }
.tool-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tool-form-group { margin-bottom: 20px; }
.tool-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-heading); margin-bottom: 8px; letter-spacing: 0.02em; }
.tool-input-wrapper {
    display: flex; align-items: center; background: var(--bg-alt);
    border: 2px solid var(--border-color); border-radius: var(--radius-md);
    overflow: hidden; transition: var(--transition);
}
.tool-input-wrapper:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.tool-input-wrapper input {
    flex: 1; padding: 14px 16px; border: none; background: none;
    font-family: var(--font-body); font-size: 16px; color: var(--text-heading); outline: none;
}
.input-unit { padding: 14px 16px; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; white-space: nowrap; letter-spacing: 0.03em; }
.tool-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-range { width: 100%; margin-top: 8px; -webkit-appearance: none; height: 5px; border-radius: 3px; background: var(--border-color); outline: none; }
.tool-range::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: var(--shadow-primary); }
.tool-select {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border-color);
    border-radius: var(--radius-md); background: var(--bg-alt);
    font-family: var(--font-body); font-size: 15px; color: var(--text-heading); outline: none;
    cursor: pointer; transition: var(--transition);
}
.tool-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }

/* Toggles */
.unit-toggle { display: flex; background: var(--bg-alt); border-radius: var(--radius-full); padding: 4px; margin-bottom: 24px; border: 1px solid var(--border-color); }
.unit-btn { flex: 1; padding: 10px 16px; border: none; background: none; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; border-radius: var(--radius-full); transition: var(--transition); color: var(--text-body); }
.unit-btn.active { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-xs); }
.gender-toggle { display: flex; gap: 10px; }
.gender-btn {
    flex: 1; padding: 12px 16px; border: 2px solid var(--border-color);
    background: #fff; border-radius: var(--radius-md); font-family: var(--font-body);
    font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--text-body);
}
.gender-btn.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* Activity */
.activity-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.activity-option { cursor: pointer; }
.activity-option input { display: none; }
.activity-card { padding: 16px; border: 2px solid var(--border-color); border-radius: var(--radius-md); text-align: center; transition: var(--transition); }
.activity-card i { font-size: 22px; color: var(--text-muted); margin-bottom: 8px; display: block; }
.activity-card strong { display: block; font-size: 13px; margin-bottom: 4px; }
.activity-card span { font-size: 11px; color: var(--text-muted); }
.activity-option.active .activity-card, .activity-option input:checked + .activity-card { border-color: var(--primary); background: var(--primary-light); }
.activity-option.active .activity-card i, .activity-option input:checked + .activity-card i { color: var(--primary); }

/* BMI Result */
.tool-result { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.result-circle { width: 200px; height: 200px; position: relative; }
.result-circle svg { width: 100%; height: 100%; }
.result-value { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.result-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--text-heading); line-height: 1; }
.result-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; }
.status-badge { display: inline-block; padding: 8px 24px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.status-badge.underweight { background: #e0f2fe; color: #0284c7; }
.status-badge.normal { background: var(--accent-light); color: #059669; }
.status-badge.overweight { background: #fef3c7; color: #d97706; }
.status-badge.obese { background: var(--red-light); color: #dc2626; }

.bmi-scale { width: 100%; max-width: 360px; }
.scale-bar { display: flex; height: 10px; border-radius: 5px; overflow: hidden; position: relative; margin-bottom: 8px; }
.scale-segment { height: 100%; }
.scale-segment.underweight { background: #38bdf8; }
.scale-segment.normal { background: #34d399; }
.scale-segment.overweight { background: #fbbf24; }
.scale-segment.obese { background: #f87171; }
.scale-pointer { position: absolute; top: -5px; width: 3px; height: 20px; background: var(--text-heading); border-radius: 2px; transition: left 0.8s var(--ease); }
.scale-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); text-align: center; }

.result-details { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-detail-item { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 14px 16px; text-align: center; }
.result-detail-item strong { display: block; font-size: 13px; color: var(--text-heading); margin-bottom: 2px; }
.result-detail-item span { font-size: 11px; color: var(--text-muted); }

.result-disclaimer { display: flex; gap: 10px; align-items: flex-start; padding: 16px; background: #fff3e6; border-radius: var(--radius-md); border-left: 3px solid var(--accent); width: 100%; }
.result-disclaimer i { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.result-disclaimer p { font-size: 13px; color: var(--text-body); margin: 0; }
.result-disclaimer a { color: var(--primary); font-weight: 600; }

/* Calorie */
.calorie-result-card { width: 100%; text-align: center; }
.calorie-result-card h4 { margin-bottom: 24px; }
.calorie-main { margin-bottom: 30px; }
.calorie-circle { width: 160px; height: 160px; border-radius: 50%; background: var(--gradient-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 12px; box-shadow: var(--shadow-primary); }
.calorie-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.calorie-unit { font-size: 12px; color: rgba(255,255,255,0.7); }
.calorie-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.calorie-goals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.calorie-goal { display: flex; gap: 12px; align-items: center; padding: 16px; border-radius: var(--radius-md); text-align: left; }
.calorie-goal.lose { background: var(--accent-light); }
.calorie-goal.gain { background: var(--secondary-light); }
.goal-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.calorie-goal.lose .goal-icon { background: var(--accent); color: #fff; }
.calorie-goal.gain .goal-icon { background: var(--secondary); color: #fff; }
.calorie-goal strong { display: block; font-size: 1.2rem; color: var(--text-heading); font-family: var(--font-body); font-weight: 700; }
.calorie-goal span { font-size: 12px; color: var(--text-muted); }
.calorie-goal p { font-size: 11px; color: var(--text-muted); margin: 2px 0 0; }

.macro-breakdown { text-align: left; padding: 22px; background: var(--bg-alt); border-radius: var(--radius-md); margin-bottom: 20px; }
.macro-breakdown h5 { font-family: var(--font-body); font-weight: 600; font-size: 13px; margin-bottom: 16px; text-align: center; letter-spacing: 0.03em; }
.macro-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.macro-bar:last-child { margin-bottom: 0; }
.macro-label { width: 80px; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.macro-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.macro-dot.protein { background: #7c3aed; }
.macro-dot.carbs { background: #f59e0b; }
.macro-dot.fat { background: #ec4899; }
.macro-track { flex: 1; height: 8px; background: var(--border-color); border-radius: 4px; overflow: hidden; }
.macro-fill { height: 100%; border-radius: 4px; transition: width 0.8s ease; }
.macro-fill.protein { background: #7c3aed; }
.macro-fill.carbs { background: #f59e0b; }
.macro-fill.fat { background: #ec4899; }
.macro-value { width: 50px; font-size: 13px; font-weight: 600; text-align: right; }

/* Heart Rate */
.hr-result-card { width: 100%; }
.hr-max { text-align: center; padding: 26px; background: var(--gradient-primary); border-radius: var(--radius-xl); color: #fff; margin-bottom: 24px; box-shadow: var(--shadow-primary); }
.hr-label { display: block; font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }
.hr-value { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; display: block; line-height: 1.2; }
.hr-unit { font-size: 14px; opacity: 0.6; }
.hr-zone { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--radius-md); margin-bottom: 10px; border: 1px solid var(--border-light); }
.hr-zone-color { width: 6px; height: 50px; border-radius: 3px; flex-shrink: 0; }
.hr-zone-info { flex: 1; }
.hr-zone-info strong { display: block; font-size: 13px; margin-bottom: 2px; font-family: var(--font-body); font-weight: 600; }
.hr-zone-info span { font-size: 12px; color: var(--text-muted); }
.hr-zone-range { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-heading); white-space: nowrap; }

/* Water */
.water-result-card { width: 100%; text-align: center; }
.water-visual { margin-bottom: 24px; }
.water-glass {
    width: 140px; height: 200px; background: #e0f2fe;
    border-radius: 0 0 20px 20px; margin: 0 auto; position: relative;
    overflow: hidden; border: 3px solid #bae6fd; border-top: none;
    display: flex; align-items: center; justify-content: center;
}
.water-glass::before { content: ''; position: absolute; top: -3px; left: -10px; right: -10px; height: 8px; background: #bae6fd; border-radius: 4px; }
.water-fill { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, #0284c7, #38bdf8); border-radius: 0 0 17px 17px; transition: height 1s var(--ease); }
.water-fill::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; background: rgba(255,255,255,0.25); animation: waterWave 2s ease-in-out infinite; }
@keyframes waterWave { 0%, 100% { transform: translateX(-5px); } 50% { transform: translateX(5px); } }
.water-amount { position: relative; z-index: 2; }
.water-liters { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--text-heading); display: block; line-height: 1; }
.water-unit { font-size: 12px; color: var(--text-muted); }
.water-details { display: flex; justify-content: center; gap: 30px; margin-bottom: 24px; }
.water-detail-item { display: flex; gap: 10px; align-items: center; }
.water-detail-item i { font-size: 24px; color: #0284c7; }
.water-detail-item strong { display: block; font-size: 1.3rem; color: var(--text-heading); font-family: var(--font-body); font-weight: 700; }
.water-detail-item span { font-size: 12px; color: var(--text-muted); }
.water-tips { background: #e0f2fe; border-radius: var(--radius-md); padding: 22px; text-align: left; margin-bottom: 20px; }
.water-tips h5 { font-family: var(--font-body); font-weight: 600; color: #0284c7; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.water-tips ul { list-style: none; }
.water-tips ul li { padding: 4px 0; font-size: 13px; padding-left: 18px; position: relative; }
.water-tips ul li::before { content: '\2022'; position: absolute; left: 4px; color: #0284c7; font-weight: bold; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .about-preview-grid, .about-story-grid, .lab-tech-grid,
    .location-grid, .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .mv-grid, .service-list { grid-template-columns: 1fr; }
    .doctor-detail-card { grid-template-columns: 1fr; }
    .doctor-detail-info { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-link { padding: 8px 10px; font-size: 13px; }
    .nav-cta { padding: 9px 18px; font-size: 12px; }
    .tool-form-grid { grid-template-columns: 1fr; }
    .video-tour-card { grid-template-columns: 1fr; }
    .tools-cta-grid { grid-template-columns: 1fr; }
    .tools-cta-icons { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 50px; padding: 40px 0; text-align: center; }
    .hero-content { max-width: 700px; margin: 0 auto; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-stat { text-align: center; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .hero-image-wrap img { height: 420px; }
    .card-top { left: 0; }
    .card-bottom { right: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .top-bar { display: none; }

    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 82%; max-width: 360px;
        height: 100vh; height: 100dvh;
        background: #fff; flex-direction: column;
        padding: 90px 28px 30px; gap: 0;
        box-shadow: var(--shadow-xl); transition: var(--transition);
        z-index: 1000; overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-link { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--border-light); border-radius: 0; font-size: 16px; }
    .nav-cta { margin: 24px 0 0; justify-content: center; width: 100%; padding: 14px 24px; font-size: 14px; }
    .brand-icon { width: 42px; height: 42px; font-size: 18px; }
    .brand-name { font-size: 20px; }
    .brand-tagline { font-size: 8px; letter-spacing: 2px; }

    .section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header p { font-size: 14px; }
    .section-badge { font-size: 10px; padding: 6px 16px; letter-spacing: 2px; }

    .hero { min-height: auto; padding: 70px 0 50px; }
    .hero-grid { gap: 40px; padding: 20px 0; }
    .hero-content { padding: 0; }
    .hero-badge { font-size: 11px; padding: 10px 18px; margin-bottom: 22px; }
    .hero h1 { font-size: 2rem; margin-bottom: 18px; }
    .hero p { font-size: 14px; margin-bottom: 30px; padding: 0 8px; margin-left: auto; margin-right: auto; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; padding: 0 8px; }
    .hero-buttons .btn { justify-content: center; font-size: 14px; padding: 14px 24px; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 8px; }
    .hero-stat { background: rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 18px 10px; border: 1px solid rgba(255,255,255,0.06); text-align: center; }
    .stat-number { font-size: 1.8rem; }
    .stat-suffix { font-size: 1.4rem; }
    .stat-label { font-size: 9px; letter-spacing: 1px; }
    .hero-scroll { display: none; }

    .hero-visual { max-width: 320px; }
    .hero-image-wrap img { height: 360px; }
    .hero-float-card { padding: 12px 16px; gap: 10px; }
    .hero-float-card strong { font-size: 12px; }
    .hero-float-card span { font-size: 10px; }
    .float-card-icon { width: 36px; height: 36px; font-size: 15px; }
    .card-top { top: 4%; }
    .card-bottom { bottom: 18%; }
    .hero-rating-card { padding: 10px 18px; bottom: -18px; }
    .hero-rating-card strong { font-size: 10px; }

    .services-duo { grid-template-columns: 1fr; gap: 22px; max-width: 420px; }
    .service-card-media { height: 190px; }
    .service-card-body { padding: 16px 22px 26px; }
    .service-card-icon { width: 48px; height: 48px; font-size: 19px; margin: -24px 0 0 18px; }
    .service-img-fallback { font-size: 44px; }

    .image-placeholder { height: 280px; font-size: 60px; }
    .image-placeholder.large { height: 340px; font-size: 70px; }
    .experience-badge { right: 10px; bottom: 10px; padding: 16px 20px; }
    .exp-number { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }

    .features-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 14px; }
    .feature-card.featured { grid-column: span 2; grid-row: span 1; min-height: 260px; }
    .feature-card { padding: 22px 18px; }
    .feature-number { font-size: 2rem; }
    .feature-icon-badge { width: 44px; height: 44px; font-size: 18px; margin-bottom: 12px; }
    .feature-card h4 { font-size: 0.92rem; }
    .feature-card p { font-size: 12.5px; }
    .feature-card-content { padding: 26px; }
    .feature-card.featured h4 { font-size: 1.2rem; }

    .doctors-grid { grid-template-columns: 1fr; max-width: 100%; }
    .doctor-placeholder { height: 240px; font-size: 60px; }

    .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .value-card { padding: 28px 18px; }
    .value-card h4 { font-size: 1rem; }
    .value-card p { font-size: 13px; }

    .cta-card { padding: 40px 22px; border-radius: var(--radius-xl); }
    .cta-content h2 { font-size: 1.4rem; }
    .cta-content p { font-size: 14px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { justify-content: center; }

    .map-container iframe { height: 280px; }
    .info-card { padding: 24px; }
    .pathology-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-8px); }

    .quick-contact-card { flex-direction: column; gap: 20px; padding: 32px 24px; }
    .quick-contact-divider { width: 60px; height: 1px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 60px 0 28px; }
    .footer-wave svg { height: 50px; }

    .story-float-card { position: relative; left: 0; bottom: 0; margin-top: 16px; }
    .story-highlights { flex-direction: column; gap: 16px; }
    .mv-card { padding: 32px 24px; }
    .culture-card { padding: 32px 22px; }
    .infra-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .doctor-detail-card { grid-template-columns: 1fr; }
    .doctor-detail-info { padding: 24px; }
    .doctor-placeholder.large { height: 260px; font-size: 80px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gallery-placeholder { height: 180px; font-size: 36px; }
    .filter-btn { padding: 8px 18px; font-size: 12px; }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .contact-info-card { padding: 24px 18px; }

    .whatsapp-float, .call-float { width: 48px; height: 48px; right: 16px; }
    .whatsapp-float { bottom: 72px; font-size: 22px; }
    .call-float { bottom: 128px; font-size: 18px; }
    .back-to-top { width: 42px; height: 42px; bottom: 18px; right: 16px; }

    .page-banner { padding: 100px 0 60px; }
    .page-banner h1 { font-size: 1.8rem; }

    .faq-grid { grid-template-columns: 1fr; }
    .slide-image { height: 320px; }
    .slide-placeholder { font-size: 60px; }
    .slide-info { padding: 28px; }
    .tool-header { padding: 22px 24px; }
    .tool-body { padding: 24px; }
    .team-features { grid-template-columns: 1fr 1fr; gap: 14px; }
    .team-feature { padding: 28px 18px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section { padding: 56px 0; }
    .hero h1 { font-size: 1.65rem; }
    .hero p { font-size: 13px; }
    .hero-badge { font-size: 10px; padding: 8px 14px; }
    h2 { font-size: 1.4rem; }

    .values-grid, .gallery-grid,
    .contact-cards-grid, .team-features, .infra-grid { grid-template-columns: 1fr; }

    .features-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .feature-card.featured { grid-column: span 1; min-height: 220px; }
    .feature-card:not(.featured) { min-height: 150px; }

    .btn-lg { padding: 13px 24px; font-size: 14px; }
    .hero-stat { padding: 14px 8px; }
    .stat-number { font-size: 1.5rem; }
    .stat-suffix { font-size: 1.1rem; }
    .slide-image { height: 260px; }
    .slide-info { padding: 20px; }
    .slide-info h4 { font-size: 1.05rem; }
    .video-tour-content { padding: 24px; }
    .play-btn { width: 60px; height: 60px; font-size: 22px; }
    .video-placeholder { min-height: 260px; }
    .activity-options { grid-template-columns: 1fr; }
    .gender-toggle { flex-direction: column; }
    .water-details { flex-direction: column; align-items: center; gap: 14px; }
    .calorie-goals { grid-template-columns: 1fr; }
    .tool-form-row { grid-template-columns: 1fr; }
    .result-details { grid-template-columns: 1fr; }

    .hero-visual { max-width: 260px; }
    .hero-image-wrap img { height: 300px; }
    .hero-float-card { position: static; margin: 10px auto 0; width: fit-content; animation: none; }
    .card-top, .card-bottom { position: static; }
    .hero-rating-card { position: static; transform: none; margin: 14px auto 0; }
    .hero-visual { display: flex; flex-direction: column; align-items: center; }
}

/* ===== HOME PACKAGES ===== */
.home-packages { background: var(--bg-alt); }
.home-packages-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-bottom: 40px;
}
.home-pkg-card {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); padding: 32px 24px;
    position: relative; transition: all 0.4s var(--ease);
    display: flex; flex-direction: column; box-shadow: var(--shadow-xs);
}
.home-pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.home-pkg-card.popular { border-color: var(--primary); background: linear-gradient(135deg, #fff, rgba(0, 86, 179, 0.05)); }
.pkg-popular-tag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary); color: #fff;
    padding: 4px 18px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.pkg-icon {
    width: 54px; height: 54px; background: var(--gradient-primary);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; margin-bottom: 14px;
}
.pkg-badge {
    display: inline-block; background: var(--primary-light); color: var(--primary);
    padding: 3px 12px; border-radius: var(--radius-full);
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.home-pkg-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; }
.home-pkg-card ul { list-style: none; padding: 0; margin: 0 0 auto; }

/* Custom Premium Package List */
.premium-list { list-style: none; margin: 0 0 20px 0; padding: 0; }
.premium-list li {
    font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid var(--border-light);
    display: flex; align-items: center; gap: 10px; color: var(--text-body);
}
.premium-list li:last-child { border-bottom: none; }
.premium-list li i { font-size: 14px; }

.pkg-btn { width: 100%; justify-content: center; font-size: 0.875rem; margin-top: 20px; }

/* ===== TRUST STATS ROW ===== */
.trust-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-bottom: 48px;
}
.trust-stat-card {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); padding: 28px 20px;
    text-align: center; transition: all 0.3s var(--ease);
}
.trust-stat-card:hover { transform: translateY(-4px); border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.trust-stat-icon {
    width: 52px; height: 52px; background: var(--gradient-primary);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; margin: 0 auto 14px;
}
.trust-stat-number { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.trust-stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-alt); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 40px;
}
.testimonial-card {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-xs);
    position: relative; transition: all 0.35s var(--ease);
}
.premium-testimonial { background: #fff; border: 1px solid var(--border-light); box-shadow: var(--shadow-xs); }
.premium-testimonial:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.testimonial-card::before {
    content: '\201C'; position: absolute; top: 12px; right: 20px;
    font-size: 64px; line-height: 1; color: var(--primary); opacity: 0.12;
    font-family: Georgia, serif; pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar {
    width: 46px; height: 46px; background: var(--gradient-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial-header > div:nth-child(2) strong { display: block; color: var(--text-heading); font-size: 0.95rem; margin-bottom: 4px; }
.testimonial-stars { color: #f59e0b; font-size: 12px; }
.google-badge { margin-left: auto; color: #4285F4; font-size: 18px; flex-shrink: 0; }
.testimonial-card > p { color: var(--text-body); font-size: 0.875rem; line-height: 1.75; margin: 0; }
.testimonials-cta { text-align: center; }

/* ===== SERVICES TABS (Pathology) ===== */
.path-tabs-wrap { margin-top: 40px; }
.path-tab-btns {
    display: flex; gap: 0; flex-wrap: wrap;
    background: var(--bg-alt); border-radius: var(--radius-lg);
    padding: 6px; margin-bottom: 32px; gap: 4px;
}
.path-tab-btn {
    flex: 1; min-width: 140px; padding: 12px 16px;
    background: transparent; border: none; border-radius: var(--radius-md);
    color: var(--text-muted); font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s var(--ease);
    display: flex; align-items: center; gap: 8px; justify-content: center;
    font-family: var(--font-body);
}
.path-tab-btn i { font-size: 15px; }
.path-tab-btn:hover { color: var(--primary); background: #fff; box-shadow: var(--shadow-xs); }
.path-tab-btn.active { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3); }
.path-tab-panel { display: none; }
.path-tab-panel.active { display: block; animation: fadeInUp 0.3s ease; }
.path-panel-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.path-test-card {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 24px;
    transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
}
.path-test-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15); transform: translateY(-3px); }
.path-test-icon {
    width: 44px; height: 44px; background: var(--gradient-warm);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; margin-bottom: 14px;
}
.path-test-card h5 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.path-test-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* ===== RADIOLOGY DETAIL SECTIONS ===== */
.radio-services-grid { display: flex; flex-direction: column; gap: 0; }
.radio-service-item {
    display: grid; grid-template-columns: 72px 1fr;
    gap: 0; border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}
.radio-service-item:last-child { border-bottom: none; }
.radio-service-item:hover { background: var(--bg-alt); }
.radio-service-num {
    padding: 28px 0 28px 4px;
    display: flex; align-items: flex-start; justify-content: center;
}
.radio-service-num span {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
    color: var(--primary); opacity: 0.18; line-height: 1;
}
.radio-service-body { padding: 28px 28px 28px 0; }
.radio-service-title {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.radio-service-title-icon {
    width: 40px; height: 40px; background: var(--gradient-primary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff; flex-shrink: 0;
}
.radio-service-body h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin: 0; }
.radio-service-body p { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; margin: 0 0 10px; }
.radio-service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.radio-tag {
    background: var(--primary-light); color: var(--primary);
    padding: 3px 10px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 600;
}

/* ===== RADIOLOGY SECTION LAYOUT ===== */
.radiology-sections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.radiology-section-card {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); padding: 32px; transition: all 0.35s var(--ease);
}
.radiology-section-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.radiology-section-head {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
    padding-bottom: 20px; border-bottom: 1px solid var(--border-light);
}
.radiology-section-icon {
    width: 56px; height: 56px; background: var(--gradient-primary);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; flex-shrink: 0;
}
.radiology-section-head h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin: 0; }
.radiology-section-head span { font-size: 0.8rem; color: var(--text-muted); }
.radiology-sub-list { list-style: none; padding: 0; margin: 0; }
.radiology-sub-list li {
    padding: 10px 0; border-bottom: 1px solid var(--border-light);
    display: grid; grid-template-columns: 1fr;
}
.radiology-sub-list li:last-child { border-bottom: none; padding-bottom: 0; }
.radiology-sub-list li strong { display: block; color: var(--text-heading); font-size: 0.9rem; margin-bottom: 3px; }
.radiology-sub-list li span { color: var(--text-body); font-size: 0.82rem; line-height: 1.6; }

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .home-packages-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-stats-row { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .radiology-sections { grid-template-columns: 1fr; }
    .path-panel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .home-packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }
    .trust-stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
    .path-tab-btns { flex-direction: column; }
    .path-tab-btn { min-width: unset; width: 100%; justify-content: flex-start; }
    .radiology-section-card { padding: 24px; }
}
@media (max-width: 480px) {
    .trust-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MISC ===== */
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }


.nav-brand .logo{
    width: 180px;
    height: auto;
}


/* =====================================================
   SDC Isolated Header CSS
   Fully separate from old navbar/topbar CSS
===================================================== */

.sdc-header,
.sdc-header *,
.sdc-header *::before,
.sdc-header *::after {
    box-sizing: border-box;
}

.sdc-header {
    position: fixed;
    top: 14px;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-family: "Plus Jakarta Sans", sans-serif;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.36s ease, top 0.36s ease;
}

.sdc-header * {
    pointer-events: auto;
}

.sdc-header.sdc-hidden {
    transform: translateY(-145%);
}

.sdc-header.sdc-scrolled {
    top: 8px;
}

.sdc-header-wrap {
    width: calc(100% - 36px);
    max-width: 100%;
    margin: 0 auto;
}

/* Top Bar */
.sdc-topbar {
    width: 100%;
    margin-bottom: 8px;
    transition: opacity 0.28s ease, transform 0.28s ease, height 0.28s ease, margin 0.28s ease;
}

.sdc-topbar-inner {
    min-height: 40px;
    padding: 6px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 48, 100, 0.96), rgba(0, 93, 185, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(0, 27, 70, 0.24);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sdc-topbar-left,
.sdc-topbar-right,
.sdc-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sdc-topbar a,
.sdc-topbar span {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.sdc-topbar i {
    color: #ff3024;
    font-size: 15px;
}

.sdc-social {
    gap: 10px;
}

.sdc-social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    transition: all 0.28s ease;
}

.sdc-social a i {
    color: #fff;
    font-size: 14px;
}

.sdc-social a:hover {
    background: linear-gradient(135deg, #ff3024, #ff8700);
    transform: translateY(-2px);
}

/* Main Nav */
.sdc-navbar {
    width: 100%;
}

.sdc-nav-inner {
    min-height: 72px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 69, 138, 0.10);
    box-shadow: 0 22px 58px rgba(0, 28, 70, 0.24);
    backdrop-filter: blur(22px);
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 170px;
    align-items: center;
    gap: 14px;
}

.sdc-logo {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.sdc-logo img {
    width: 118px;
    height: auto;
    display: block;
}

.sdc-menu {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.sdc-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    color: #102033;
    background: transparent;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.28s ease;
}

.sdc-nav-link:hover,
.sdc-nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 12px 28px rgba(255, 70, 31, 0.25);
    transform: translateY(-1px);
}

.sdc-book-btn {
    justify-self: end;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 16px 38px rgba(255, 70, 31, 0.36);
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.28s ease;
}

.sdc-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(255, 70, 31, 0.44);
}

.sdc-book-btn i {
    color: #fff;
}

/* Mobile Button */
.sdc-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    margin-left: auto;
    background: linear-gradient(135deg, #003b7a, #006bd6);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 69, 138, 0.25);
}

.sdc-menu-btn span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: all 0.28s ease;
}

.sdc-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sdc-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.sdc-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero spacing */
.hero.premium-hero,
.premium-hero,
.hero,
.hero-section,
.home-hero,
.main-hero {
    padding-top: 155px !important;
}

/* Compact on scroll */
.sdc-header.sdc-scrolled .sdc-topbar {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.sdc-header.sdc-scrolled .sdc-nav-inner {
    min-height: 66px;
}

.sdc-header.sdc-scrolled .sdc-logo img {
    width: 104px;
}

/* Laptop */
@media (max-width: 1320px) {
    .sdc-nav-inner {
        grid-template-columns: 135px minmax(0, 1fr) 145px;
    }

    .sdc-logo img {
        width: 104px;
    }

    .sdc-menu {
        gap: 5px;
    }

    .sdc-nav-link {
        font-size: 13px;
        padding: 0 10px;
    }

    .sdc-book-btn {
        min-height: 46px;
        padding: 0 18px;
        font-size: 14px;
    }
}

/* Tablet/Mobile */
@media (max-width: 1080px) {
    .sdc-header-wrap {
        width: calc(100% - 24px);
    }

    .sdc-topbar-inner {
        min-height: 38px;
        padding: 6px 14px;
    }

    .sdc-topbar-left a {
        max-width: 48vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sdc-topbar a,
    .sdc-topbar span {
        font-size: 12px;
    }

    .sdc-social {
        display: none;
    }

    .sdc-nav-inner {
        min-height: 64px;
        padding: 8px 12px 8px 16px;
        border-radius: 24px;
        display: flex;
    }

    .sdc-logo img {
        width: 94px;
    }

    .sdc-menu-btn {
        display: flex;
    }

    .sdc-book-btn {
        display: none;
    }

    .sdc-menu {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 69, 138, 0.10);
        box-shadow: 0 24px 65px rgba(0, 28, 70, 0.25);
        backdrop-filter: blur(20px);
    }

    .sdc-menu.active {
        display: flex;
    }

    .sdc-menu::after {
        content: "Book Now";
        min-height: 50px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: linear-gradient(135deg, #ff3024, #ff8700);
        font-size: 15px;
        font-weight: 900;
        margin-top: 4px;
    }

    .sdc-nav-link {
        width: 100%;
        min-height: 45px;
        justify-content: flex-start;
        padding: 0 16px;
        font-size: 15px;
    }

    .hero.premium-hero,
    .premium-hero,
    .hero,
    .hero-section,
    .home-hero,
    .main-hero {
        padding-top: 130px !important;
    }

    .sdc-header.sdc-scrolled .sdc-topbar {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .sdc-header {
        top: 8px;
    }

    .sdc-header-wrap {
        width: calc(100% - 18px);
    }

    .sdc-topbar-left a {
        display: none;
    }

    .sdc-topbar-inner {
        justify-content: center;
        min-height: 34px;
        border-radius: 18px;
    }

    .sdc-nav-inner {
        min-height: 60px;
        border-radius: 22px;
    }

    .sdc-logo img {
        width: 84px;
    }

    .sdc-menu-btn {
        width: 40px;
        height: 40px;
    }

    .hero.premium-hero,
    .premium-hero,
    .hero,
    .hero-section,
    .home-hero,
    .main-hero {
        padding-top: 112px !important;
    }
}


/* Mobile menu full width fix */
@media (max-width: 1080px) {
    .sdc-menu {
        position: fixed !important;
        top: 112px !important;
        left: 10px !important;
        right: 10px !important;
        width: calc(100vw - 20px) !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 16px !important;
        border-radius: 24px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 24px 65px rgba(0, 28, 70, 0.28) !important;
        z-index: 999999 !important;
    }

    .sdc-menu.active {
        display: flex !important;
    }

    .sdc-nav-link {
        width: 100% !important;
        justify-content: center !important;
        min-height: 48px !important;
        font-size: 15px !important;
        border-radius: 999px !important;
    }

    .sdc-menu::after {
        width: 100% !important;
        min-height: 50px !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 575px) {
    .sdc-menu {
        top: 104px !important;
        left: 8px !important;
        right: 8px !important;
        width: calc(100vw - 16px) !important;
        padding: 14px !important;
    }
}

/* Mobile menu page names left align */
@media (max-width: 1080px) {
    .sdc-menu .sdc-nav-link {
        justify-content: flex-start !important;
        text-align: left !important;
        padding-left: 22px !important;
    }

    .sdc-menu .sdc-nav-link:hover,
    .sdc-menu .sdc-nav-link.active {
        justify-content: flex-start !important;
    }
}


/* =====================================================
   SDC Ultra Premium Hero - Isolated CSS
===================================================== */

.sdc-hero,
.sdc-hero *,
.sdc-hero *::before,
.sdc-hero *::after {
    box-sizing: border-box;
}

.sdc-hero {
    position: relative;
    min-height: 100svh;
    padding: 165px 0 70px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 86, 28, 0.18), transparent 28%),
        radial-gradient(circle at 86% 22%, rgba(0, 143, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #021f3f 0%, #003c78 48%, #0055a6 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1, 22, 46, 0.95), rgba(1, 37, 78, 0.78), rgba(0, 75, 150, 0.66)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px);
    z-index: -3;
}

.sdc-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% -10%;
    height: 45%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.11), transparent 65%);
    z-index: -2;
}

.sdc-hero-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sdc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
    align-items: center;
    gap: clamp(34px, 5vw, 86px);
}

.sdc-hero-content {
    max-width: 760px;
}

.sdc-hero-kicker {
    width: fit-content;
    max-width: 100%;
    min-height: 54px;
    padding: 10px 22px 10px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 800;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.sdc-hero-kicker span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 12px 30px rgba(255, 88, 24, 0.35);
}

.sdc-hero-title {
    margin: 34px 0 20px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 7vw, 106px);
    line-height: 0.96;
    letter-spacing: 0;
    font-weight: 700;
}

.sdc-hero-title span {
    display: block;
    width: fit-content;
    background: linear-gradient(135deg, #ff3024, #ff8700 55%, #ffc36b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 14px 28px rgba(255, 81, 26, 0.25));
}

.sdc-hero-text {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.8;
    font-weight: 500;
}

.sdc-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.sdc-hero-btn {
    min-height: 62px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    transition: all 0.3s ease;
}

.sdc-hero-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 22px 50px rgba(255, 71, 30, 0.38);
}

.sdc-hero-btn-glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
}

.sdc-hero-btn:hover {
    transform: translateY(-3px);
}

.sdc-hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.sdc-trust-item {
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sdc-trust-item i {
    color: #ffb34d;
    margin-right: 7px;
}

.sdc-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.sdc-hero-stat {
    min-height: 112px;
    padding: 20px 14px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.sdc-hero-stat strong {
    display: block;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 900;
    line-height: 1;
}

.sdc-hero-stat small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-hero-visual {
    position: relative;
}

.sdc-hero-image-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.88;
    border-radius: 48px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 40px 90px rgba(0, 18, 44, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.sdc-hero-image-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    z-index: 2;
    pointer-events: none;
}

.sdc-hero-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
}

.sdc-hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 30, 64, 0.08), rgba(0, 24, 50, 0.34)),
        linear-gradient(90deg, rgba(255, 78, 26, 0.18), transparent 35%);
    z-index: 1;
}

.sdc-hero-image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.20), transparent 42%);
    transform: translateX(-120%);
    animation: sdcHeroShine 5s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

.sdc-float-card {
    position: absolute;
    z-index: 4;
    min-width: 230px;
    padding: 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    background: rgba(8, 24, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.sdc-float-card span {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-float-card strong,
.sdc-float-card small {
    display: block;
}

.sdc-float-card strong {
    font-size: 16px;
    font-weight: 900;
}

.sdc-float-card small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 700;
}

.sdc-float-top {
    top: 38px;
    left: -28px;
}

.sdc-float-bottom {
    right: 28px;
    bottom: 28px;
}

.sdc-hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
}

.sdc-orb-one {
    width: 220px;
    height: 220px;
    left: 44%;
    top: 18%;
    background: rgba(255, 95, 28, 0.16);
}

.sdc-orb-two {
    width: 300px;
    height: 300px;
    right: -90px;
    bottom: 6%;
    background: rgba(0, 167, 255, 0.16);
}

.sdc-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.sdc-hero-particles .particle {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    animation: sdcHeroParticle 6s ease-in-out infinite;
}

@keyframes sdcHeroParticle {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-22px);
        opacity: 0.8;
    }
}

@keyframes sdcHeroShine {
    0%, 42% {
        transform: translateX(-120%);
    }
    62%, 100% {
        transform: translateX(120%);
    }
}

/* Laptop */
@media (max-width: 1280px) {
    .sdc-hero {
        padding-top: 145px;
    }

    .sdc-hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 44px;
    }

    .sdc-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-float-top {
        left: 18px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .sdc-hero {
        min-height: auto;
        padding: 128px 0 52px;
    }

    .sdc-hero-wrap {
        width: min(100% - 28px, 760px);
    }

    .sdc-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sdc-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .sdc-hero-kicker,
    .sdc-hero-title span {
        margin-left: auto;
        margin-right: auto;
    }

    .sdc-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .sdc-hero-actions,
    .sdc-hero-trust {
        justify-content: center;
    }

    .sdc-hero-image-card {
        max-width: 620px;
        margin: 0 auto;
        border-radius: 34px;
    }

    .sdc-float-card {
        min-width: 200px;
    }
}

/* Phone */
@media (max-width: 575px) {
    .sdc-hero {
        padding: 112px 0 38px;
    }

    .sdc-hero-wrap {
        width: calc(100% - 24px);
    }

    .sdc-hero-content {
        text-align: left;
    }

    .sdc-hero-kicker {
        min-height: auto;
        padding: 9px 14px 9px 10px;
        border-radius: 18px;
        font-size: 12px;
        align-items: flex-start;
    }

    .sdc-hero-kicker span {
        width: 30px;
        height: 30px;
    }

    .sdc-hero-title {
        margin-top: 24px;
        font-size: clamp(42px, 14vw, 58px);
    }

    .sdc-hero-title span {
        margin-left: 0;
        margin-right: 0;
    }

    .sdc-hero-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .sdc-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .sdc-hero-btn {
        width: 100%;
        min-height: 56px;
        font-size: 16px;
    }

    .sdc-hero-trust {
        align-items: stretch;
    }

    .sdc-trust-item {
        width: 100%;
        font-size: 12px;
    }

    .sdc-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 24px;
    }

    .sdc-hero-stat {
        min-height: 92px;
        padding: 16px 10px;
        border-radius: 18px;
    }

    .sdc-hero-stat small {
        font-size: 9px;
    }

    .sdc-hero-image-card {
        aspect-ratio: 1 / 0.95;
        border-radius: 26px;
    }

    .sdc-hero-image-card::before {
        inset: 10px;
        border-radius: 20px;
    }

    .sdc-float-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        margin-top: 12px;
        border-radius: 18px;
        padding: 13px;
    }

    .sdc-float-card span {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .sdc-float-card strong {
        font-size: 14px;
    }

    .sdc-float-card small {
        font-size: 12px;
    }
}


/* =====================================================
   SDC Premium Health Packages - Isolated CSS
===================================================== */

.sdc-packages,
.sdc-packages *,
.sdc-packages *::before,
.sdc-packages *::after {
    box-sizing: border-box;
}

.sdc-packages {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 99, 34, 0.12), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(40, 167, 69, 0.15), transparent 30%),
        linear-gradient(180deg, #f7fff1 0%, #ffffff 46%, #f2fbec 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-packages::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 91, 44, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(12, 91, 44, 0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -2;
}

.sdc-packages-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-packages-header {
    max-width: 850px;
    margin: 0 auto 46px;
    text-align: center;
}

.sdc-packages-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 84, 30, 0.25);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-packages-header h2 {
    margin: 22px 0 14px;
    color: #0c552b;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-packages-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-packages-header p {
    margin: 0 auto;
    max-width: 720px;
    color: #51615a;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 600;
}

.sdc-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.sdc-package-card {
    position: relative;
    min-height: 100%;
    padding: 34px 28px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 108, 50, 0.10);
    box-shadow:
        0 24px 65px rgba(13, 87, 44, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.32s ease;
}

.sdc-package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 111, 31, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(16, 122, 55, 0.05), transparent 40%);
    pointer-events: none;
}

.sdc-package-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 34px 80px rgba(13, 87, 44, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sdc-package-popular {
    border-color: rgba(255, 106, 31, 0.30);
    box-shadow:
        0 30px 82px rgba(255, 93, 30, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.sdc-package-advanced {
    background:
        linear-gradient(145deg, rgba(5, 66, 32, 0.96), rgba(14, 111, 50, 0.94));
    color: #fff;
}

.sdc-package-advanced::before {
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 143, 42, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 48%);
}

.sdc-package-top-label {
    position: absolute;
    top: 0;
    right: 24px;
    min-height: 30px;
    padding: 6px 16px;
    border-radius: 0 0 14px 14px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 10px 28px rgba(255, 81, 28, 0.22);
}

.sdc-package-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.sdc-icon-green { background: linear-gradient(135deg, #0b7a3a, #67c23a); }
.sdc-icon-orange { background: linear-gradient(135deg, #ff3024, #ff8700); }
.sdc-icon-blue { background: linear-gradient(135deg, #004f9f, #00a7ff); }
.sdc-icon-dark { background: linear-gradient(135deg, #0b223d, #0f6b3c); }
.sdc-icon-red { background: linear-gradient(135deg, #e11d48, #ff7a18); }
.sdc-icon-gold { background: linear-gradient(135deg, #b7791f, #f6c453); }

.sdc-package-meta {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-top: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #17803b;
    background: rgba(103, 194, 58, 0.12);
    font-size: 13px;
    font-weight: 900;
}

.sdc-package-advanced .sdc-package-meta {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.sdc-package-card h3 {
    position: relative;
    z-index: 1;
    margin: 16px 0 10px;
    color: #0c552b;
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.12;
    font-weight: 900;
}

.sdc-package-advanced h3 {
    color: #fff;
}

.sdc-package-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    min-height: 76px;
    color: #5a6760;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 650;
}

.sdc-package-advanced p {
    color: rgba(255, 255, 255, 0.78);
}

.sdc-package-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}

.sdc-package-card li {
    color: #243a2e;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sdc-package-card li i {
    color: #5bbd32;
    margin-top: 2px;
}

.sdc-package-advanced li {
    color: rgba(255, 255, 255, 0.88);
}

.sdc-package-price {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    border-top: 1px dashed rgba(12, 85, 43, 0.28);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.sdc-package-advanced .sdc-package-price {
    border-top-color: rgba(255, 255, 255, 0.24);
}

.sdc-package-price span {
    color: #5b6a61;
    font-size: 13px;
    font-weight: 900;
}

.sdc-package-advanced .sdc-package-price span {
    color: rgba(255, 255, 255, 0.72);
}

.sdc-package-price del {
    color: #75b84d;
    font-size: 20px;
    font-weight: 900;
}

.sdc-package-price strong {
    color: #0c552b;
    font-size: clamp(28px, 2.3vw, 38px);
    line-height: 1;
    font-weight: 1000;
}

.sdc-package-advanced .sdc-package-price strong {
    color: #fff;
}

.sdc-package-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 17px 38px rgba(255, 80, 30, 0.28);
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    transition: all 0.28s ease;
}

.sdc-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(255, 80, 30, 0.36);
}

.sdc-package-benefits {
    margin-top: 32px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 108, 50, 0.10);
    box-shadow: 0 22px 60px rgba(13, 87, 44, 0.10);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sdc-benefit-item {
    min-height: 82px;
    padding: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #ffffff, #f5fff1);
    color: #193b27;
    font-size: 14px;
    font-weight: 850;
}

.sdc-benefit-item i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #0b7a3a, #67c23a);
}

.sdc-package-cta {
    margin-top: 22px;
    padding: 22px 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0c552b, #57ae32);
    box-shadow: 0 24px 70px rgba(13, 87, 44, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.sdc-package-cta strong,
.sdc-package-cta span {
    display: block;
    color: #fff;
}

.sdc-package-cta strong {
    font-size: clamp(22px, 2.6vw, 38px);
    line-height: 1.15;
    font-weight: 1000;
}

.sdc-package-cta span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 700;
}

.sdc-package-cta a {
    min-height: 62px;
    padding: 0 28px;
    border-radius: 999px;
    color: #0c552b;
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(20px, 2.3vw, 34px);
    font-weight: 1000;
    white-space: nowrap;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-packages {
        padding: 76px 0;
    }

    .sdc-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-package-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-package-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-packages {
        padding: 58px 0;
    }

    .sdc-packages-wrap {
        width: calc(100% - 24px);
    }

    .sdc-packages-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-packages-kicker {
        font-size: 11px;
        border-radius: 16px;
    }

    .sdc-packages-header h2 span {
        display: inline;
    }

    .sdc-packages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sdc-package-card {
        padding: 30px 20px 22px;
        border-radius: 24px;
    }

    .sdc-package-card p {
        min-height: auto;
    }

    .sdc-package-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sdc-package-benefits {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 22px;
    }

    .sdc-benefit-item {
        min-height: 68px;
    }

    .sdc-package-cta {
        padding: 20px;
        border-radius: 22px;
    }

    .sdc-package-cta a {
        width: 100%;
        min-height: 56px;
        font-size: 22px;
    }
}


/* =====================================================
   SDC Ultra Premium Services Section - Isolated CSS
===================================================== */

.sdc-services,
.sdc-services *,
.sdc-services *::before,
.sdc-services *::after {
    box-sizing: border-box;
}

.sdc-services {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 82, 28, 0.14), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(0, 123, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #031f3d 0%, #003f7c 46%, #0059aa 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-services-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-services-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.sdc-services-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-services-kicker i {
    color: #ff8a00;
}

.sdc-services-header h2 {
    margin: 22px 0 14px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-services-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8a00, #ffc56d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-services-header p {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 600;
}

.sdc-services-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.sdc-services-intro-card {
    min-height: 110px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.sdc-services-intro-card i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    box-shadow: 0 16px 34px rgba(255, 79, 28, 0.25);
}

.sdc-services-intro-card strong,
.sdc-services-intro-card span {
    display: block;
}

.sdc-services-intro-card strong {
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.sdc-services-intro-card span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 650;
}

.sdc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.sdc-service-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 88px rgba(0, 18, 44, 0.28);
    transition: all 0.32s ease;
}

.sdc-service-card:hover {
    transform: translateY(-8px);
}

.sdc-service-media {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: #0b2c4d;
}

.sdc-service-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.sdc-service-card:hover .sdc-service-media img {
    transform: scale(1.08);
}

.sdc-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 31, 61, 0.06), rgba(3, 31, 61, 0.72)),
        linear-gradient(90deg, rgba(255, 70, 31, 0.18), transparent 45%);
}

.sdc-service-media span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    min-height: 36px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-service-body {
    position: relative;
    padding: 34px 30px 30px;
}

.sdc-service-icon {
    position: absolute;
    top: -34px;
    right: 28px;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #004f9f, #00a7ff);
    box-shadow: 0 18px 44px rgba(0, 103, 210, 0.35);
}

.sdc-service-orange .sdc-service-icon {
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    box-shadow: 0 18px 44px rgba(255, 79, 28, 0.32);
}

.sdc-service-body h3,
.sdc-service-mini-card h3 {
    margin: 0 0 12px;
    color: #09223d;
    font-size: clamp(26px, 2.3vw, 38px);
    line-height: 1.1;
    font-weight: 1000;
}

.sdc-service-body p,
.sdc-service-mini-card p {
    margin: 0 0 22px;
    color: #5a6670;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-service-body ul,
.sdc-service-mini-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 14px;
}

.sdc-service-body li,
.sdc-service-mini-card li {
    color: #263949;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.sdc-service-body li i,
.sdc-service-mini-card li i {
    color: #25a244;
    margin-top: 2px;
}

.sdc-service-link,
.sdc-service-mini-card a {
    width: fit-content;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 15px 34px rgba(255, 79, 28, 0.24);
    transition: all 0.28s ease;
}

.sdc-service-link:hover,
.sdc-service-mini-card a:hover {
    transform: translateY(-2px);
}

.sdc-service-mini-card {
    position: relative;
    min-height: 360px;
    padding: 32px 28px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 74px rgba(0, 18, 44, 0.22);
    transition: all 0.32s ease;
}

.sdc-service-mini-card:hover {
    transform: translateY(-8px);
}

.sdc-service-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 10%, rgba(255, 107, 31, 0.14), transparent 32%);
    pointer-events: none;
}

.sdc-mini-blue::before {
    background: radial-gradient(circle at 92% 10%, rgba(0, 153, 255, 0.17), transparent 34%);
}

.sdc-mini-icon {
    position: relative;
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
}

.sdc-mini-blue .sdc-mini-icon {
    background: linear-gradient(135deg, #004f9f, #00a7ff);
    box-shadow: 0 18px 42px rgba(0, 103, 210, 0.28);
}

.sdc-service-mini-card ul {
    grid-template-columns: 1fr;
}

.sdc-services-features {
    margin-top: 30px;
    padding: 18px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.sdc-services-features div {
    min-height: 84px;
    padding: 16px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.sdc-services-features i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
}

.sdc-services-features span {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 850;
}

.sdc-services-cta {
    margin-top: 24px;
    padding: 24px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 74px rgba(0, 18, 44, 0.22);
}

.sdc-services-cta strong,
.sdc-services-cta span {
    display: block;
}

.sdc-services-cta strong {
    color: #09223d;
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 1000;
    line-height: 1.15;
}

.sdc-services-cta span {
    margin-top: 6px;
    color: #5a6670;
    font-size: 15px;
    font-weight: 700;
}

.sdc-services-cta a {
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 1000;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-services {
        padding: 78px 0;
    }

    .sdc-services-intro,
    .sdc-services-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-services-grid {
        grid-template-columns: 1fr;
    }

    .sdc-service-media {
        height: 260px;
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-services {
        padding: 58px 0;
    }

    .sdc-services-wrap {
        width: calc(100% - 24px);
    }

    .sdc-services-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-services-header h2 span {
        display: inline;
    }

    .sdc-services-intro,
    .sdc-services-features {
        grid-template-columns: 1fr;
    }

    .sdc-services-intro-card {
        min-height: auto;
        align-items: flex-start;
    }

    .sdc-service-card,
    .sdc-service-mini-card {
        border-radius: 24px;
    }

    .sdc-service-media {
        height: 220px;
    }

    .sdc-service-body {
        padding: 30px 20px 22px;
    }

    .sdc-service-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        right: 20px;
        top: -29px;
        font-size: 23px;
    }

    .sdc-service-body ul {
        grid-template-columns: 1fr;
    }

    .sdc-service-mini-card {
        min-height: auto;
        padding: 28px 20px 22px;
    }

    .sdc-service-link,
    .sdc-service-mini-card a {
        width: 100%;
        justify-content: center;
    }

    .sdc-services-cta {
        padding: 22px 20px;
        border-radius: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .sdc-services-cta a {
        width: 100%;
        min-height: 56px;
        font-size: 20px;
    }
}



/* =====================================================
   SDC Ultra Premium Why Choose Us - Isolated CSS
===================================================== */

.sdc-why,
.sdc-why *,
.sdc-why *::before,
.sdc-why *::after {
    box-sizing: border-box;
}

.sdc-why {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 89, 28, 0.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(0, 116, 225, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 45%, #eef7ff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-why-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-why-header {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.sdc-why-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 84, 30, 0.25);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-why-header h2 {
    margin: 22px 0 14px;
    color: #09223d;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-why-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-why-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #5a6670;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-why-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.sdc-why-stat {
    position: relative;
    min-height: 150px;
    padding: 22px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 24px 64px rgba(0, 49, 102, 0.10);
}

.sdc-why-stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 10%, rgba(255, 101, 31, 0.13), transparent 34%);
    pointer-events: none;
}

.sdc-why-stat-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 16px 34px rgba(255, 79, 28, 0.28);
}

.sdc-why-stat strong {
    position: relative;
    display: block;
    margin-top: 16px;
    color: #09223d;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1;
    font-weight: 1000;
}

.sdc-why-stat span {
    position: relative;
    display: block;
    margin-top: 8px;
    color: #65717b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.sdc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: 20px;
}

.sdc-why-feature {
    position: relative;
    grid-column: span 2;
    grid-row: span 2;
    min-height: 480px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 34px 88px rgba(0, 28, 70, 0.22);
}

.sdc-why-feature img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.sdc-why-feature:hover img {
    transform: scale(1.08);
}

.sdc-why-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 31, 61, 0.10), rgba(3, 31, 61, 0.82)),
        linear-gradient(90deg, rgba(255, 78, 28, 0.22), transparent 48%);
}

.sdc-why-feature-content {
    position: absolute;
    inset: auto 26px 26px 26px;
    z-index: 2;
    color: #fff;
}

.sdc-feature-tag {
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-feature-tag i {
    color: #ffc56d;
}

.sdc-feature-big-icon {
    width: 66px;
    height: 66px;
    margin-top: 20px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #09223d;
    background: linear-gradient(135deg, #ffd36e, #ff9d28);
    box-shadow: 0 18px 44px rgba(255, 162, 42, 0.25);
    font-size: 28px;
}

.sdc-why-feature h3 {
    margin: 18px 0 10px;
    color: #fff;
    font-size: clamp(30px, 3vw, 50px);
    line-height: 1.05;
    font-weight: 1000;
}

.sdc-why-feature p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 650;
}

.sdc-why-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 24px 64px rgba(0, 49, 102, 0.10);
    transition: all 0.32s ease;
}

.sdc-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 12%, rgba(0, 123, 255, 0.11), transparent 32%),
        linear-gradient(180deg, rgba(255, 95, 28, 0.055), transparent 42%);
    pointer-events: none;
}

.sdc-why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 78px rgba(0, 49, 102, 0.15);
}

.sdc-card-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(255, 84, 30, 0.18);
    font-size: 42px;
    line-height: 1;
    font-weight: 1000;
}

.sdc-card-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #004f9f, #00a7ff);
    box-shadow: 0 16px 36px rgba(0, 103, 210, 0.26);
}

.sdc-why-card h3 {
    position: relative;
    margin: 18px 0 10px;
    color: #09223d;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 1000;
}

.sdc-why-card p {
    position: relative;
    margin: 0;
    color: #5a6670;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 650;
}

.sdc-why-bottom {
    margin-top: 26px;
    padding: 24px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #09223d, #004f9f);
    box-shadow: 0 28px 74px rgba(0, 28, 70, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sdc-why-bottom strong,
.sdc-why-bottom span {
    display: block;
    color: #fff;
}

.sdc-why-bottom strong {
    font-size: clamp(22px, 2.5vw, 36px);
    line-height: 1.15;
    font-weight: 1000;
}

.sdc-why-bottom span {
    max-width: 780px;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 650;
}

.sdc-why-bottom a {
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 1000;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-why {
        padding: 78px 0;
    }

    .sdc-why-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-why-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-why {
        padding: 58px 0;
    }

    .sdc-why-wrap {
        width: calc(100% - 24px);
    }

    .sdc-why-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-why-header h2 span {
        display: inline;
    }

    .sdc-why-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .sdc-why-stat {
        min-height: 132px;
        padding: 18px;
        border-radius: 22px;
    }

    .sdc-why-stat-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .sdc-why-stat span {
        font-size: 10px;
    }

    .sdc-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sdc-why-feature {
        grid-column: auto;
        grid-row: auto;
        min-height: 390px;
        border-radius: 24px;
    }

    .sdc-why-feature-content {
        inset: auto 20px 20px 20px;
    }

    .sdc-feature-big-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 23px;
    }

    .sdc-why-card {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .sdc-why-bottom {
        padding: 22px 20px;
        border-radius: 24px;
    }

    .sdc-why-bottom a {
        width: 100%;
        min-height: 56px;
    }
}



/* =====================================================
   SDC Ultra Premium Testimonials - Isolated CSS
===================================================== */

.sdc-testimonials,
.sdc-testimonials *,
.sdc-testimonials *::before,
.sdc-testimonials *::after {
    box-sizing: border-box;
}

.sdc-testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 89, 28, 0.14), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(0, 123, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #031f3d 0%, #003f7c 48%, #0059aa 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-testimonials-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-testimonials-header {
    max-width: 880px;
    margin: 0 auto 28px;
    text-align: center;
}

.sdc-testimonials-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-testimonials-kicker i {
    color: #ff8a00;
}

.sdc-testimonials-header h2 {
    margin: 22px 0 14px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-testimonials-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8a00, #ffc56d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-testimonials-header p {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-testimonials-summary {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 34px;
    padding: 12px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.sdc-testimonials-summary div:first-child {
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
}

.sdc-testimonials-summary strong,
.sdc-testimonials-summary span {
    display: inline-block;
}

.sdc-testimonials-summary strong {
    font-size: 22px;
    font-weight: 1000;
}

.sdc-testimonials-summary span {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 850;
}

.sdc-testimonials-summary div:nth-child(2) {
    color: #ffc56d;
    display: inline-flex;
    gap: 4px;
}

.sdc-testimonials-summary a {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #09223d;
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
}

.sdc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(260px, auto);
    gap: 22px;
}

.sdc-testimonial-card {
    position: relative;
    min-height: 260px;
    padding: 26px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 76px rgba(0, 18, 44, 0.24);
    transition: all 0.32s ease;
}

.sdc-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 100, 30, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(0, 123, 255, 0.05), transparent 45%);
    pointer-events: none;
}

.sdc-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 92px rgba(0, 18, 44, 0.30);
}

.sdc-testimonial-featured {
    grid-row: span 2;
    min-height: 542px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(239, 248, 255, 0.97));
}

.sdc-testimonial-dark {
    background:
        linear-gradient(145deg, rgba(8, 34, 61, 0.97), rgba(0, 79, 159, 0.95));
}

.sdc-quote-icon {
    position: absolute;
    right: 24px;
    bottom: 18px;
    color: rgba(255, 106, 31, 0.11);
    font-size: 82px;
    line-height: 1;
}

.sdc-testimonial-dark .sdc-quote-icon {
    color: rgba(255, 255, 255, 0.10);
}

.sdc-testimonial-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.sdc-testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 1000;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.sdc-avatar-blue {
    background: linear-gradient(135deg, #004f9f, #00a7ff);
}

.sdc-avatar-orange {
    background: linear-gradient(135deg, #ff3024, #ff8a00);
}

.sdc-avatar-green {
    background: linear-gradient(135deg, #0b7a3a, #67c23a);
}

.sdc-testimonial-top strong,
.sdc-testimonial-top span {
    display: block;
}

.sdc-testimonial-top strong {
    color: #09223d;
    font-size: 17px;
    font-weight: 1000;
}

.sdc-testimonial-dark .sdc-testimonial-top strong {
    color: #fff;
}

.sdc-testimonial-top span {
    margin-top: 4px;
    color: #6b7580;
    font-size: 12px;
    font-weight: 800;
}

.sdc-testimonial-dark .sdc-testimonial-top span {
    color: rgba(255, 255, 255, 0.64);
}

.sdc-testimonial-stars {
    margin-top: 8px;
    color: #ffc247;
    display: inline-flex;
    gap: 3px;
    font-size: 13px;
}

.sdc-google-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4285f4;
    background: rgba(66, 133, 244, 0.10);
    font-size: 18px;
}

.sdc-testimonial-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #3a4652;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 650;
}

.sdc-testimonial-featured p {
    font-size: 19px;
    line-height: 1.9;
}

.sdc-testimonial-dark p {
    color: rgba(255, 255, 255, 0.84);
}

.sdc-testimonials-cta {
    margin-top: 26px;
    padding: 24px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 74px rgba(0, 18, 44, 0.22);
}

.sdc-testimonials-cta strong,
.sdc-testimonials-cta span {
    display: block;
}

.sdc-testimonials-cta strong {
    color: #09223d;
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1.15;
    font-weight: 1000;
}

.sdc-testimonials-cta span {
    margin-top: 6px;
    color: #5a6670;
    font-size: 15px;
    font-weight: 700;
}

.sdc-testimonials-cta a {
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8a00);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 1000;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-testimonials {
        padding: 78px 0;
    }

    .sdc-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-testimonial-featured {
        grid-row: auto;
        min-height: 300px;
    }

    .sdc-testimonial-featured p {
        font-size: 16px;
    }

    .sdc-testimonials-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-testimonials {
        padding: 58px 0;
    }

    .sdc-testimonials-wrap {
        width: calc(100% - 24px);
    }

    .sdc-testimonials-header {
        text-align: left;
        margin-bottom: 24px;
    }

    .sdc-testimonials-header h2 span {
        display: inline;
    }

    .sdc-testimonials-summary {
        width: 100%;
        border-radius: 22px;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .sdc-testimonials-summary div:first-child,
    .sdc-testimonials-summary a {
        justify-content: center;
        text-align: center;
    }

    .sdc-testimonials-summary div:nth-child(2) {
        justify-content: center;
    }

    .sdc-testimonials-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .sdc-testimonial-card,
    .sdc-testimonial-featured {
        min-height: auto;
        padding: 22px;
        border-radius: 24px;
    }

    .sdc-testimonial-top {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .sdc-google-mark {
        display: none;
    }

    .sdc-testimonial-card p,
    .sdc-testimonial-featured p {
        font-size: 15px;
        line-height: 1.75;
    }

    .sdc-testimonials-cta {
        padding: 22px 20px;
        border-radius: 24px;
    }

    .sdc-testimonials-cta a {
        width: 100%;
        justify-content: center;
        min-height: 56px;
    }
}



/* =====================================================
   SDC Ultra Premium Doctors + CTA - Isolated CSS
===================================================== */

.sdc-doctors,
.sdc-doctors *,
.sdc-doctors *::before,
.sdc-doctors *::after,
.sdc-final-cta,
.sdc-final-cta *,
.sdc-final-cta *::before,
.sdc-final-cta *::after {
    box-sizing: border-box;
}

.sdc-doctors {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 89, 28, 0.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(0, 116, 225, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 48%, #edf7ff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-doctors::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-doctors-wrap,
.sdc-final-cta-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-doctors-header {
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.sdc-doctors-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 84, 30, 0.25);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-doctors-header h2 {
    margin: 22px 0 14px;
    color: #09223d;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-doctors-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-doctors-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #5a6670;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.sdc-doctor-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    min-height: 520px;
    border-radius: 36px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 34px 88px rgba(0, 49, 102, 0.14);
    transition: all 0.32s ease;
}

.sdc-doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 42px 100px rgba(0, 49, 102, 0.20);
}

.sdc-doctor-featured {
    border-color: rgba(255, 92, 31, 0.22);
}

.sdc-doctor-photo {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #0b2c4d;
}

.sdc-doctor-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.sdc-doctor-card:hover .sdc-doctor-photo img {
    transform: scale(1.08);
}

.sdc-doctor-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 31, 61, 0.04), rgba(3, 31, 61, 0.70)),
        linear-gradient(90deg, rgba(255, 82, 28, 0.18), transparent 50%);
}

.sdc-doctor-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sdc-doctor-card:hover .sdc-doctor-photo-overlay {
    opacity: 1;
}

.sdc-doctor-photo-overlay a {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.32);
}

.sdc-doctor-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 3;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-doctor-badge i {
    color: #ffc56d;
}

.sdc-doctor-info {
    position: relative;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sdc-doctor-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 12%, rgba(0, 123, 255, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(255, 95, 28, 0.05), transparent 45%);
    pointer-events: none;
}

.sdc-doctor-icon {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #004f9f, #00a7ff);
    box-shadow: 0 18px 42px rgba(0, 103, 210, 0.28);
    font-size: 27px;
}

.sdc-doctor-icon-orange {
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
}

.sdc-doctor-info h3 {
    position: relative;
    margin: 22px 0 10px;
    color: #09223d;
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.05;
    font-weight: 1000;
}

.sdc-doctor-degree {
    position: relative;
    display: block;
    color: #ff4f1f;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 950;
}

.sdc-doctor-role {
    position: relative;
    margin: 8px 0 20px;
    color: #5a6670;
    font-size: 15px;
    font-weight: 800;
}

.sdc-doctor-points {
    position: relative;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.sdc-doctor-points span {
    color: #263949;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.sdc-doctor-points i {
    color: #25a244;
    margin-top: 2px;
}

.sdc-doctor-link {
    position: relative;
    width: fit-content;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 16px 38px rgba(255, 79, 28, 0.26);
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    transition: all 0.28s ease;
}

.sdc-doctor-link:hover {
    transform: translateY(-2px);
}

.sdc-doctors-note {
    margin-top: 28px;
    padding: 22px 26px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #09223d, #004f9f);
    box-shadow: 0 28px 74px rgba(0, 28, 70, 0.18);
}

.sdc-doctors-note i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-doctors-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 700;
}

/* Final CTA */
.sdc-final-cta {
    position: relative;
    padding: 0 0 100px;
    overflow: hidden;
    background: #edf7ff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 132, 31, 0.28), transparent 34%),
        linear-gradient(135deg, #031f3d 0%, #004f9f 52%, #006bd6 100%);
    box-shadow: 0 36px 96px rgba(0, 28, 70, 0.28);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.sdc-final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.sdc-final-cta-content {
    position: relative;
    z-index: 1;
}

.sdc-final-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-final-cta-kicker i {
    color: #ffc56d;
}

.sdc-final-cta h2 {
    margin: 22px 0 14px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 74px);
    line-height: 1.02;
    font-weight: 700;
}

.sdc-final-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.5vw, 20px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-final-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sdc-final-cta-btn {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 950;
    transition: all 0.28s ease;
}

.sdc-final-cta-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.32);
}

.sdc-final-cta-glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sdc-final-cta-btn:hover {
    transform: translateY(-2px);
}

.sdc-final-cta-panel {
    position: relative;
    z-index: 1;
    min-height: 330px;
    padding: 28px;
    border-radius: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sdc-final-cta-panel-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #09223d;
    background: linear-gradient(135deg, #ffd36e, #ff9d28);
    font-size: 30px;
    box-shadow: 0 18px 42px rgba(255, 162, 42, 0.28);
}

.sdc-final-cta-panel strong {
    display: block;
    margin-top: 22px;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 1000;
}

.sdc-final-cta-panel span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.sdc-final-cta-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.sdc-final-cta-mini div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
}

.sdc-final-cta-mini b,
.sdc-final-cta-mini small {
    display: block;
}

.sdc-final-cta-mini b {
    font-size: 26px;
    line-height: 1;
    font-weight: 1000;
}

.sdc-final-cta-mini small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-doctors {
        padding: 78px 0;
    }

    .sdc-doctors-grid {
        grid-template-columns: 1fr;
    }

    .sdc-doctor-card {
        min-height: 470px;
    }

    .sdc-final-cta-card {
        grid-template-columns: 1fr;
    }

    .sdc-final-cta-panel {
        min-height: auto;
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-doctors {
        padding: 58px 0;
    }

    .sdc-doctors-wrap,
    .sdc-final-cta-wrap {
        width: calc(100% - 24px);
    }

    .sdc-doctors-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-doctors-header h2 span {
        display: inline;
    }

    .sdc-doctors-grid {
        gap: 18px;
    }

    .sdc-doctor-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 26px;
    }

    .sdc-doctor-photo {
        min-height: 390px;
    }

    .sdc-doctor-info {
        padding: 28px 22px 24px;
    }

    .sdc-doctor-link {
        width: 100%;
        justify-content: center;
    }

    .sdc-doctors-note {
        padding: 20px;
        border-radius: 24px;
        align-items: flex-start;
    }

    .sdc-final-cta {
        padding-bottom: 58px;
    }

    .sdc-final-cta-card {
        padding: 26px 20px;
        border-radius: 28px;
        gap: 24px;
    }

    .sdc-final-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sdc-final-cta-btn {
        width: 100%;
        min-height: 56px;
    }

    .sdc-final-cta-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .sdc-final-cta-mini {
        grid-template-columns: 1fr;
    }
}



/* =====================================================
   SDC Ultra Premium Location Section - Isolated CSS
===================================================== */

.sdc-location,
.sdc-location *,
.sdc-location *::before,
.sdc-location *::after {
    box-sizing: border-box;
}

.sdc-location {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 89, 28, 0.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(0, 116, 225, 0.15), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 48%, #edf7ff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-location::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-location-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-location-header {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.sdc-location-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 84, 30, 0.25);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-location-header h2 {
    margin: 22px 0 14px;
    color: #09223d;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-location-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-location-header p {
    margin: 0 auto;
    max-width: 700px;
    color: #5a6670;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: 28px;
    align-items: stretch;
}

.sdc-map-card,
.sdc-location-info-card {
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 34px 88px rgba(0, 49, 102, 0.14);
    overflow: hidden;
}

.sdc-map-top {
    min-height: 70px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #09223d, #004f9f);
}

.sdc-map-top span,
.sdc-map-top a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 950;
}

.sdc-map-top span {
    font-size: 16px;
}

.sdc-map-top a {
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    font-size: 13px;
    white-space: nowrap;
}

.sdc-map-frame {
    height: 520px;
    width: 100%;
    background: #eaf3fb;
}

.sdc-location-info-card {
    position: relative;
    height: 100%;
    padding: 26px;
    display: grid;
    gap: 16px;
}

.sdc-location-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 100, 30, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(0, 123, 255, 0.045), transparent 45%);
    pointer-events: none;
}

.sdc-location-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(246, 251, 255, 0.86);
    border: 1px solid rgba(0, 75, 150, 0.08);
}

.sdc-location-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #004f9f, #00a7ff);
    box-shadow: 0 16px 34px rgba(0, 103, 210, 0.24);
}

.sdc-location-icon-orange {
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 16px 34px rgba(255, 79, 28, 0.26);
}

.sdc-location-item h3 {
    margin: 0 0 7px;
    color: #09223d;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 1000;
}

.sdc-location-item p {
    margin: 0;
    color: #5a6670;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}

.sdc-location-item a {
    color: #ff4f1f;
    text-decoration: none;
    font-weight: 950;
}

.sdc-location-actions {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.sdc-location-btn {
    min-height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    transition: all 0.28s ease;
}

.sdc-location-btn:hover {
    transform: translateY(-2px);
}

.sdc-location-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.26);
}

.sdc-location-btn-glass {
    color: #09223d;
    background: rgba(0, 79, 159, 0.08);
    border: 1px solid rgba(0, 79, 159, 0.10);
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-location {
        padding: 78px 0;
    }

    .sdc-location-grid {
        grid-template-columns: 1fr;
    }

    .sdc-map-frame {
        height: 430px;
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-location {
        padding: 58px 0;
    }

    .sdc-location-wrap {
        width: calc(100% - 24px);
    }

    .sdc-location-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-location-header h2 span {
        display: inline;
    }

    .sdc-map-card,
    .sdc-location-info-card {
        border-radius: 24px;
    }

    .sdc-map-top {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
    }

    .sdc-map-top a {
        width: 100%;
        justify-content: center;
    }

    .sdc-map-frame {
        height: 340px;
    }

    .sdc-location-info-card {
        padding: 16px;
        gap: 12px;
    }

    .sdc-location-item {
        padding: 15px;
        border-radius: 18px;
    }

    .sdc-location-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .sdc-location-actions {
        grid-template-columns: 1fr;
    }

    .sdc-location-btn {
        width: 100%;
        min-height: 52px;
    }
}


/* =====================================================
   SDC Ultra Premium Footer + Floating Buttons
===================================================== */

.sdc-footer,
.sdc-footer *,
.sdc-footer *::before,
.sdc-footer *::after,
.sdc-floating-actions,
.sdc-floating-actions *,
.sdc-floating-actions *::before,
.sdc-floating-actions *::after {
    box-sizing: border-box;
}

.sdc-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 89, 28, 0.16), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(0, 123, 255, 0.20), transparent 34%),
        linear-gradient(135deg, #031f3d 0%, #003f7c 48%, #0059aa 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-footer-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-footer-top {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.sdc-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.sdc-footer-brand img {
    width: 200px;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
}

.sdc-footer-brand strong,
.sdc-footer-brand span {
    display: block;
}

.sdc-footer-brand strong {
    color: #fff;
    font-size: 32px;
    line-height: 1;
    font-weight: 1000;
}

.sdc-footer-brand span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-footer-brand-block p {
    max-width: 440px;
    margin: 22px 0 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 650;
}

.sdc-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sdc-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transition: all 0.28s ease;
}

.sdc-footer-social a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-footer-col h3,
.sdc-footer-contact h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 19px;
    font-weight: 1000;
}

.sdc-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sdc-footer-col a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    transition: all 0.25s ease;
}

.sdc-footer-col a:hover {
    color: #ff9d28;
    padding-left: 5px;
}

.sdc-footer-contact-list {
    display: grid;
    gap: 13px;
}

.sdc-footer-contact-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.sdc-footer-contact-list i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-footer-contact-list a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 900;
}

.sdc-footer-call-btn {
    min-height: 52px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
}

.sdc-footer-bottom {
    margin-top: 54px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sdc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 700;
}

.sdc-footer-bottom a {
    color: #ffb24a;
    font-weight: 950;
    text-decoration: none;
}

/* Floating buttons */
.sdc-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99998;
    display: grid;
    gap: 12px;
}

.sdc-back-top,
.sdc-call-float,
.sdc-whatsapp-float {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 28, 70, 0.26);
    transition: all 0.28s ease;
}

.sdc-back-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    background: linear-gradient(135deg, #09223d, #004f9f);
}

.sdc-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sdc-call-float {
    background: linear-gradient(135deg, #004f9f, #00a7ff);
}

.sdc-whatsapp-float {
    background: linear-gradient(135deg, #18b957, #25d366);
}

.sdc-back-top:hover,
.sdc-call-float:hover,
.sdc-whatsapp-float:hover {
    transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 1100px) {
    .sdc-footer {
        padding-top: 78px;
    }

    .sdc-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Phone */
@media (max-width: 640px) {
    .sdc-footer {
        padding-top: 58px;
    }

    .sdc-footer-wrap {
        width: calc(100% - 24px);
    }

    .sdc-footer-top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sdc-footer-brand {
        align-items: flex-start;
    }

    .sdc-footer-brand img {
        width: 78px;
        border-radius: 16px;
    }

    .sdc-footer-brand strong {
        font-size: 28px;
    }

    .sdc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 38px;
    }

    .sdc-floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .sdc-back-top,
    .sdc-call-float,
    .sdc-whatsapp-float {
        width: 50px;
        height: 50px;
    }
}

/* =====================================================
   SDC Ultra Luxury Dark Footer Final Override
===================================================== */

.sdc-footer {
    position: relative;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 132, 31, 0.20), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 196, 109, 0.10), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255, 48, 36, 0.10), transparent 35%),
        linear-gradient(135deg, #050505 0%, #101010 48%, #1b1009 100%) !important;
}

.sdc-footer::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) !important;
    background-size: 72px 72px !important;
}

.sdc-footer::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
    z-index: -1;
}

.sdc-footer-top {
    position: relative;
    padding: 28px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 38px 100px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.sdc-footer-brand-block,
.sdc-footer-col,
.sdc-footer-contact {
    position: relative;
    padding: 22px;
    border-radius: 28px;
    transition: all 0.35s ease;
}

.sdc-footer-brand-block:hover,
.sdc-footer-col:hover,
.sdc-footer-contact:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sdc-footer-brand img {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(255, 178, 74, 0.22);
    box-shadow:
        0 20px 45px rgba(255, 96, 28, 0.18),
        0 0 0 8px rgba(255, 255, 255, 0.035) !important;
    transition: all 0.35s ease;
}

.sdc-footer-brand:hover img {
    transform: rotate(-2deg) scale(1.04);
    box-shadow:
        0 26px 60px rgba(255, 96, 28, 0.28),
        0 0 0 10px rgba(255, 138, 0, 0.08) !important;
}

.sdc-footer-brand strong {
    color: #fff !important;
    text-shadow: 0 12px 36px rgba(255, 138, 0, 0.18);
}

.sdc-footer-brand span {
    color: rgba(255, 202, 130, 0.82) !important;
}

.sdc-footer-brand-block p {
    color: rgba(255, 255, 255, 0.70) !important;
}

.sdc-footer-col h3,
.sdc-footer-contact h3 {
    position: relative;
    width: fit-content;
    color: #fff !important;
    padding-bottom: 12px;
}

.sdc-footer-col h3::after,
.sdc-footer-contact h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    box-shadow: 0 10px 24px rgba(255, 138, 0, 0.28);
    transition: width 0.3s ease;
}

.sdc-footer-col:hover h3::after,
.sdc-footer-contact:hover h3::after {
    width: 72px;
}

.sdc-footer-col a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.70) !important;
    transition: all 0.28s ease;
}

.sdc-footer-col a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.55);
    box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.22);
    transition: all 0.28s ease;
}

.sdc-footer-col a:hover {
    color: #ffc56d !important;
    padding-left: 7px;
}

.sdc-footer-col a:hover::before {
    background: #ff8700;
    box-shadow: 0 0 0 7px rgba(255, 138, 0, 0.10);
}

.sdc-footer-social a {
    position: relative;
    overflow: hidden;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.085) !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.sdc-footer-social a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sdc-footer-social a i {
    position: relative;
    z-index: 1;
}

.sdc-footer-social a:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 18px 40px rgba(255, 96, 28, 0.26);
}

.sdc-footer-social a:hover::before {
    opacity: 1;
}

.sdc-footer-contact-list div {
    padding: 10px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.sdc-footer-contact-list div:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateX(4px);
}

.sdc-footer-contact-list i {
    background: linear-gradient(135deg, #ff3024, #ff8700) !important;
    box-shadow: 0 14px 32px rgba(255, 96, 28, 0.24);
    transition: all 0.3s ease;
}

.sdc-footer-contact-list div:hover i {
    transform: rotate(-6deg) scale(1.05);
}

.sdc-footer-contact-list a,
.sdc-footer-contact-list span {
    color: rgba(255, 255, 255, 0.74) !important;
}

.sdc-footer-call-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff3024, #ff8700) !important;
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
    transition: all 0.35s ease;
}

.sdc-footer-call-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28), transparent 42%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.sdc-footer-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(255, 79, 28, 0.38);
}

.sdc-footer-call-btn:hover::after {
    transform: translateX(120%);
}

.sdc-footer-bottom {
    margin-top: 34px;
    padding: 22px 26px !important;
    border-radius: 24px 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11) !important;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sdc-footer-bottom p {
    color: rgba(255, 255, 255, 0.68) !important;
}

.sdc-footer-bottom a {
    color: #ffc56d !important;
    position: relative;
}

.sdc-footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    transition: width 0.28s ease;
}

.sdc-footer-bottom a:hover::after {
    width: 100%;
}

/* Floating button luxury hover */
.sdc-back-top,
.sdc-call-float,
.sdc-whatsapp-float {
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
}

.sdc-back-top:hover,
.sdc-call-float:hover,
.sdc-whatsapp-float:hover {
    transform: translateY(-5px) scale(1.06);
}

/* Phone polish */
@media (max-width: 640px) {
    .sdc-footer-top {
        padding: 16px;
        border-radius: 28px;
    }

    .sdc-footer-brand-block,
    .sdc-footer-col,
    .sdc-footer-contact {
        padding: 16px;
        border-radius: 22px;
    }

    .sdc-footer-bottom {
        border-radius: 22px 22px 0 0;
        padding: 18px !important;
    }
}
/* Footer extra dark luxury background */
.sdc-footer {
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 96, 28, 0.13), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(255, 178, 74, 0.06), transparent 28%),
        linear-gradient(135deg, #000000 0%, #050505 45%, #0b0603 100%) !important;
}

.sdc-footer-top {
    background: rgba(255, 255, 255, 0.035) !important;
    border-color: rgba(255, 255, 255, 0.075) !important;
    box-shadow:
        0 42px 110px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

.sdc-footer-brand-block:hover,
.sdc-footer-col:hover,
.sdc-footer-contact:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

.sdc-footer-bottom {
    background: rgba(255, 255, 255, 0.032) !important;
}


/* =====================================================
   SDC About Page - Ultra Premium Isolated CSS
===================================================== */

.sdc-about-hero,
.sdc-about-story,
.sdc-about-mission,
.sdc-about-values,
.sdc-about-strengths,
.sdc-about-doctors,
.sdc-about-cta,
.sdc-about-hero *,
.sdc-about-story *,
.sdc-about-mission *,
.sdc-about-values *,
.sdc-about-strengths *,
.sdc-about-doctors *,
.sdc-about-cta * {
    box-sizing: border-box;
}

.sdc-about-wrap,
.sdc-about-hero-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-about-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 100px;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 96, 28, 0.22), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(255, 178, 74, 0.10), transparent 32%),
        linear-gradient(135deg, #000 0%, #070707 48%, #160d07 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-about-hero::before,
.sdc-about-story::before,
.sdc-about-values::before,
.sdc-about-strengths::before,
.sdc-about-doctors::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-about-hero-content {
    max-width: 920px;
    color: #fff;
}

.sdc-about-kicker,
.sdc-about-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 84, 30, 0.25);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-about-hero h1,
.sdc-about-story-content h2,
.sdc-about-header h2,
.sdc-about-cta-card h2 {
    margin: 22px 0 14px;
    font-family: "Playfair Display", serif;
    line-height: 1.04;
    font-weight: 700;
}

.sdc-about-hero h1 {
    max-width: 880px;
    font-size: clamp(48px, 7vw, 108px);
    color: #fff;
}

.sdc-about-hero h1 span,
.sdc-about-story-content h2 span,
.sdc-about-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-about-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-about-breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 850;
}

.sdc-about-breadcrumb a {
    color: #ffc56d;
    text-decoration: none;
}

.sdc-about-story,
.sdc-about-values,
.sdc-about-strengths,
.sdc-about-doctors {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0;
    background: linear-gradient(180deg, #fff 0%, #f6fbff 50%, #fff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-about-story::before,
.sdc-about-values::before,
.sdc-about-strengths::before,
.sdc-about-doctors::before {
    background:
        linear-gradient(90deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px);
}

.sdc-about-story-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
    gap: 64px;
    align-items: center;
}

.sdc-about-story-media {
    position: relative;
}

.sdc-about-image-card {
    overflow: hidden;
    border-radius: 38px;
    box-shadow: 0 34px 88px rgba(0, 49, 102, 0.18);
}

.sdc-about-image-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease;
}

.sdc-about-image-card:hover img {
    transform: scale(1.06);
}

.sdc-about-float-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    background: rgba(8, 34, 61, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
}

.sdc-about-float-card i {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-about-float-card strong,
.sdc-about-float-card span {
    display: block;
}

.sdc-about-float-card strong {
    font-size: 22px;
    font-weight: 1000;
}

.sdc-about-float-card span {
    color: rgba(255, 255, 255, 0.70);
    font-weight: 750;
}

.sdc-about-story-content h2,
.sdc-about-header h2 {
    color: #09223d;
    font-size: clamp(36px, 4.5vw, 72px);
}

.sdc-about-story-content p,
.sdc-about-header p {
    color: #5a6670;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 650;
}

.sdc-about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.sdc-about-highlights div {
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 22px 60px rgba(0, 49, 102, 0.10);
}

.sdc-about-highlights i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-about-highlights strong,
.sdc-about-highlights span {
    display: block;
}

.sdc-about-highlights strong {
    margin-top: 14px;
    color: #09223d;
    font-size: 22px;
    font-weight: 1000;
}

.sdc-about-highlights span {
    color: #66727c;
    font-size: 13px;
    font-weight: 850;
}

.sdc-about-mission {
    padding: 80px 0;
    background: #f6fbff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-about-mission-grid,
.sdc-about-values-grid,
.sdc-about-strengths-grid,
.sdc-about-doctors-grid {
    display: grid;
    gap: 24px;
}

.sdc-about-mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sdc-about-mv-card,
.sdc-about-value-card,
.sdc-about-strength-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 28px 76px rgba(0, 49, 102, 0.12);
    transition: all 0.32s ease;
}

.sdc-about-mv-card:hover,
.sdc-about-value-card:hover,
.sdc-about-strength-card:hover,
.sdc-about-doctor-card:hover {
    transform: translateY(-8px);
}

.sdc-about-mv-dark {
    color: #fff;
    background: linear-gradient(135deg, #050505, #16100b);
}

.sdc-about-mv-icon,
.sdc-about-value-card > i,
.sdc-about-strength-card > i {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.26);
    font-size: 24px;
}

.sdc-about-mv-card h3,
.sdc-about-value-card h3,
.sdc-about-strength-card h3 {
    margin: 20px 0 12px;
    color: #09223d;
    font-size: 26px;
    font-weight: 1000;
}

.sdc-about-mv-dark h3,
.sdc-about-mv-dark p {
    color: #fff;
}

.sdc-about-mv-card p,
.sdc-about-value-card p,
.sdc-about-strength-card p {
    margin: 0;
    color: #5a6670;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-about-header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.sdc-about-values-grid,
.sdc-about-strengths-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sdc-about-doctors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sdc-about-doctor-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    min-height: 460px;
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(0, 75, 150, 0.10);
    box-shadow: 0 34px 88px rgba(0, 49, 102, 0.14);
    text-decoration: none;
    transition: all 0.32s ease;
}

.sdc-about-doctor-photo {
    position: relative;
    overflow: hidden;
}

.sdc-about-doctor-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.sdc-about-doctor-card:hover img {
    transform: scale(1.08);
}

.sdc-about-doctor-photo span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-about-doctor-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sdc-about-doctor-info > i {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #004f9f, #00a7ff);
    font-size: 24px;
}

.sdc-about-doctor-info h3 {
    margin: 22px 0 10px;
    color: #09223d;
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.05;
    font-weight: 1000;
}

.sdc-about-doctor-info strong {
    color: #ff4f1f;
    font-size: 14px;
    line-height: 1.5;
}

.sdc-about-doctor-info p {
    color: #5a6670;
    font-size: 15px;
    font-weight: 800;
}

.sdc-about-cta {
    padding: 0 0 96px;
    background: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-about-cta-card {
    padding: 44px;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 132, 31, 0.26), transparent 32%),
        linear-gradient(135deg, #050505, #16100b);
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.22);
}

.sdc-about-cta-card h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 68px);
}

.sdc-about-cta-card p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-about-cta-actions {
    display: grid;
    gap: 14px;
    min-width: 260px;
}

.sdc-about-cta-actions a {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    text-decoration: none;
    font-weight: 950;
}

.sdc-about-cta-secondary {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Responsive */
@media (max-width: 1100px) {
    .sdc-about-story-grid,
    .sdc-about-mission-grid,
    .sdc-about-doctors-grid {
        grid-template-columns: 1fr;
    }

    .sdc-about-values-grid,
    .sdc-about-strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-about-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .sdc-about-wrap,
    .sdc-about-hero-wrap {
        width: calc(100% - 24px);
    }

    .sdc-about-hero {
        padding: 145px 0 64px;
    }

    .sdc-about-story,
    .sdc-about-values,
    .sdc-about-strengths,
    .sdc-about-doctors {
        padding: 58px 0;
    }

    .sdc-about-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-about-hero h1 span,
    .sdc-about-story-content h2 span,
    .sdc-about-header h2 span {
        display: inline;
    }

    .sdc-about-image-card img {
        height: 360px;
    }

    .sdc-about-float-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 14px;
    }

    .sdc-about-highlights,
    .sdc-about-values-grid,
    .sdc-about-strengths-grid {
        grid-template-columns: 1fr;
    }

    .sdc-about-doctor-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 26px;
    }

    .sdc-about-doctor-photo {
        min-height: 390px;
    }

    .sdc-about-cta {
        padding-bottom: 58px;
    }

    .sdc-about-cta-card {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .sdc-about-cta-actions {
        width: 100%;
    }
}


/* =====================================================
   SDC About Page - Ultra Luxury Final Override
===================================================== */

.sdc-about-hero {
    padding: 210px 0 120px !important;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 101, 31, 0.24), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(255, 196, 109, 0.10), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255, 48, 36, 0.12), transparent 36%),
        linear-gradient(135deg, #000000 0%, #070707 46%, #1b0f08 100%) !important;
}

.sdc-about-hero::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 44px;
    pointer-events: none;
}

.sdc-about-hero-content {
    position: relative;
    padding: 44px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 40px 110px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
}

.sdc-about-kicker,
.sdc-about-section-tag {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 196, 109, 0.24);
    box-shadow:
        0 18px 42px rgba(255, 84, 30, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    color: black !important;
}
.sdc-about-kickerr,
.sdc-about-section-tagg {
   
    color: white !important;
}
.sdc-about-section-tagg {
    
    color: white !important;
}


.sdc-about-kicker i,
.sdc-about-section-tag i {
    color: red;
}

.sdc-about-hero h1 {
    text-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.sdc-about-hero h1 span,
.sdc-about-story-content h2 span,
.sdc-about-header h2 span {
    background: linear-gradient(135deg, #ff3024 0%, #ff8700 50%, #ffd37a 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Story luxury frame */
.sdc-about-story {
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 96, 28, 0.10), transparent 30%),
        linear-gradient(180deg, #fffaf6 0%, #ffffff 52%, #f7fbff 100%) !important;
}

.sdc-about-image-card {
    position: relative;
    border-radius: 42px !important;
    padding: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 237, 0.88));
    border: 1px solid rgba(255, 96, 28, 0.14);
    box-shadow:
        0 36px 100px rgba(0, 49, 102, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.sdc-about-image-card img {
    border-radius: 32px !important;
    height: 560px !important;
}

.sdc-about-float-card {
    background: rgba(10, 10, 10, 0.76) !important;
    border-color: rgba(255, 196, 109, 0.20) !important;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);
}

.sdc-about-story-content {
    padding: 36px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 75, 150, 0.08);
    box-shadow: 0 28px 80px rgba(0, 49, 102, 0.08);
    backdrop-filter: blur(18px);
}

/* Premium cards */
.sdc-about-highlights div,
.sdc-about-mv-card,
.sdc-about-value-card,
.sdc-about-strength-card,
.sdc-about-doctor-card {
    border-radius: 32px !important;
    border: 1px solid rgba(255, 96, 28, 0.12) !important;
    box-shadow:
        0 30px 90px rgba(0, 49, 102, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.80) !important;
}

.sdc-about-highlights div:hover,
.sdc-about-mv-card:hover,
.sdc-about-value-card:hover,
.sdc-about-strength-card:hover,
.sdc-about-doctor-card:hover {
    transform: translateY(-10px) !important;
    box-shadow:
        0 42px 110px rgba(0, 49, 102, 0.18),
        0 18px 44px rgba(255, 96, 28, 0.10) !important;
}

/* Mission section dark premium */
.sdc-about-mission {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 96, 28, 0.16), transparent 30%),
        linear-gradient(135deg, #060606 0%, #111111 50%, #1a100a 100%) !important;
}

.sdc-about-mv-card {
    background: rgba(255, 255, 255, 0.94) !important;
}

.sdc-about-mv-dark {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.22), transparent 34%),
        linear-gradient(145deg, #0b0b0b, #1d120b) !important;
    border-color: rgba(255, 196, 109, 0.18) !important;
}

/* Values and strengths bento style */
.sdc-about-values,
.sdc-about-strengths,
.sdc-about-doctors {
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 96, 28, 0.08), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(0, 116, 225, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
}

.sdc-about-value-card,
.sdc-about-strength-card {
    overflow: hidden;
}

.sdc-about-value-card::before,
.sdc-about-strength-card::before,
.sdc-about-doctor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 110, 31, 0.13), transparent 32%),
        linear-gradient(180deg, rgba(0, 123, 255, 0.035), transparent 48%);
    pointer-events: none;
}

.sdc-about-value-card > i,
.sdc-about-strength-card > i,
.sdc-about-mv-icon,
.sdc-about-highlights i {
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d) !important;
    box-shadow:
        0 20px 45px rgba(255, 96, 28, 0.26),
        0 0 0 8px rgba(255, 96, 28, 0.065) !important;
    transition: all 0.35s ease;
}

.sdc-about-value-card:hover > i,
.sdc-about-strength-card:hover > i,
.sdc-about-mv-card:hover .sdc-about-mv-icon {
    transform: rotate(-6deg) scale(1.06);
}

/* Doctors cards */
.sdc-about-doctor-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96) !important;
}

.sdc-about-doctor-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.50)),
        linear-gradient(90deg, rgba(255, 96, 28, 0.16), transparent 50%);
}

.sdc-about-doctor-photo span {
    z-index: 2;
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.34);
    transition: all 0.35s ease;
}

.sdc-about-doctor-card:hover .sdc-about-doctor-photo span {
    transform: translateY(-4px) rotate(-8deg);
}

.sdc-about-doctor-info {
    position: relative;
    z-index: 2;
}

.sdc-about-doctor-info > i {
    background: linear-gradient(135deg, #050505, #1a100a) !important;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18),
        0 0 0 8px rgba(255, 96, 28, 0.06);
}

/* CTA next level */
.sdc-about-cta {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%) !important;
}

.sdc-about-cta-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 96, 28, 0.22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(255, 196, 109, 0.12), transparent 32%),
        linear-gradient(135deg, #000000 0%, #070707 50%, #1a100a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 44px 120px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.sdc-about-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.sdc-about-cta-card > * {
    position: relative;
    z-index: 1;
}

.sdc-about-cta-actions a {
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
    transition: all 0.35s ease;
}

.sdc-about-cta-actions a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.30), transparent 42%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.sdc-about-cta-actions a:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 62px rgba(255, 79, 28, 0.38);
}

.sdc-about-cta-actions a:hover::after {
    transform: translateX(120%);
}

/* Smooth luxury entrance feel */
.sdc-about-value-card,
.sdc-about-strength-card,
.sdc-about-mv-card,
.sdc-about-doctor-card,
.sdc-about-highlights div {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

/* Mobile polish */
@media (max-width: 640px) {
    .sdc-about-hero {
        padding: 145px 0 70px !important;
    }

    .sdc-about-hero::after {
        inset: 10px;
        border-radius: 28px;
    }

    .sdc-about-hero-content {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .sdc-about-story-content {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .sdc-about-image-card {
        border-radius: 28px !important;
        padding: 8px;
    }

    .sdc-about-image-card img {
        height: 400px !important;
        border-radius: 22px !important;
    }

    .sdc-about-highlights div,
    .sdc-about-mv-card,
    .sdc-about-value-card,
    .sdc-about-strength-card {
        border-radius: 24px !important;
        padding: 24px !important;
    }
}



/* About detailed content section */
.sdc-about-detail {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 96, 28, 0.10), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(0, 116, 225, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-about-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-about-detail-header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.sdc-about-detail-header h2 {
    margin: 22px 0 14px;
    color: #09223d;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-about-detail-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-about-detail-header p {
    margin: 0 auto;
    color: #5a6670;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 750;
}

.sdc-about-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sdc-about-detail-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow:
        0 30px 90px rgba(0, 49, 102, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.80);
    transition: all 0.35s ease;
}

.sdc-about-detail-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 110, 31, 0.13), transparent 32%),
        linear-gradient(180deg, rgba(0, 123, 255, 0.035), transparent 48%);
    pointer-events: none;
}

.sdc-about-detail-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 42px 110px rgba(0, 49, 102, 0.18),
        0 18px 44px rgba(255, 96, 28, 0.10);
}

.sdc-about-detail-featured {
    grid-column: span 2;
}

.sdc-about-detail-dark {
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.22), transparent 34%),
        linear-gradient(145deg, #050505, #1d120b);
    border-color: rgba(255, 196, 109, 0.18);
}

.sdc-about-detail-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    box-shadow:
        0 20px 45px rgba(255, 96, 28, 0.26),
        0 0 0 8px rgba(255, 96, 28, 0.065);
    font-size: 24px;
}

.sdc-about-detail-card h3 {
    position: relative;
    z-index: 1;
    margin: 22px 0 14px;
    color: #09223d;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 1000;
}

.sdc-about-detail-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #5a6670;
    font-size: 15px;
    line-height: 1.78;
    font-weight: 650;
}

.sdc-about-detail-dark h3,
.sdc-about-detail-dark p {
    color: #fff;
}

.sdc-about-detail-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.sdc-about-detail-call {
    position: relative;
    z-index: 1;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    text-decoration: none;
    font-weight: 950;
}

.sdc-about-services-list {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 22px;
}

.sdc-about-service-list-card,
.sdc-about-special-features {
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow: 0 30px 90px rgba(0, 49, 102, 0.12);
}

.sdc-about-service-list-card h3,
.sdc-about-special-features h3 {
    margin: 0 0 18px;
    color: #09223d;
    font-size: 24px;
    font-weight: 1000;
}

.sdc-about-service-list-card h3 i {
    color: #ff5b21;
    margin-right: 9px;
}

.sdc-about-service-list-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sdc-about-service-list-card li,
.sdc-about-special-grid span {
    color: #263949;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.sdc-about-service-list-card li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #25a244;
    margin-right: 9px;
}

.sdc-about-special-features {
    margin-top: 26px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.18), transparent 34%),
        linear-gradient(145deg, #050505, #1d120b);
}

.sdc-about-special-features h3 {
    color: #fff;
}

.sdc-about-special-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sdc-about-special-grid span {
    padding: 14px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.07);
}

.sdc-about-special-grid i {
    color: #ffc56d;
    margin-right: 8px;
}

@media (max-width: 1100px) {
    .sdc-about-detail-grid,
    .sdc-about-services-list {
        grid-template-columns: 1fr 1fr;
    }

    .sdc-about-detail-featured {
        grid-column: span 2;
    }

    .sdc-about-service-list-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .sdc-about-detail {
        padding: 58px 0;
    }

    .sdc-about-detail-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-about-detail-header h2 span {
        display: inline;
    }

    .sdc-about-detail-grid,
    .sdc-about-services-list,
    .sdc-about-special-grid {
        grid-template-columns: 1fr;
    }

    .sdc-about-detail-featured,
    .sdc-about-service-list-card:first-child {
        grid-column: auto;
    }

    .sdc-about-detail-card,
    .sdc-about-service-list-card,
    .sdc-about-special-features {
        padding: 24px;
        border-radius: 24px;
    }
}




/* =====================================================
   SDC Services Page - Ultra Premium Isolated CSS
===================================================== */

.sdc-srv-hero,
.sdc-srv-overview,
.sdc-srv-detail,
.sdc-srv-pathology,
.sdc-srv-help,
.sdc-srv-hero *,
.sdc-srv-overview *,
.sdc-srv-detail *,
.sdc-srv-pathology *,
.sdc-srv-help * {
    box-sizing: border-box;
}

.sdc-srv-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-srv-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 210px 0 120px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 96, 28, 0.24), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(255, 196, 109, 0.10), transparent 30%),
        linear-gradient(135deg, #000 0%, #070707 46%, #1b0f08 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-srv-hero::before,
.sdc-srv-overview::before,
.sdc-srv-detail::before,
.sdc-srv-pathology::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-srv-hero::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    pointer-events: none;
}

.sdc-srv-hero-content {
    max-width: 950px;
    padding: 44px;
    border-radius: 38px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 40px 110px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
}

.sdc-srv-kicker,
.sdc-srv-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: black;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 196, 109, 0.24);
    box-shadow:
        0 18px 42px rgba(255, 84, 30, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-srv-kicker i,
.sdc-srv-section-tag i {
    color: #ffc56d;
}

.sdc-srv-hero h1,
.sdc-srv-header h2,
.sdc-srv-help-card h2 {
    margin: 22px 0 14px;
    font-family: "Playfair Display", serif;
    line-height: 1.04;
    font-weight: 700;
}

.sdc-srv-hero h1 {
    font-size: clamp(48px, 7vw, 108px);
    color: #fff;
}

.sdc-srv-hero h1 span,
.sdc-srv-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024 0%, #ff8700 50%, #ffd37a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-srv-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-srv-breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 850;
}

.sdc-srv-breadcrumb a {
    color: #ffc56d;
    text-decoration: none;
}

/* Overview */
.sdc-srv-overview,
.sdc-srv-detail,
.sdc-srv-pathology {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 96, 28, 0.10), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(0, 116, 225, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-srv-overview::before,
.sdc-srv-detail::before,
.sdc-srv-pathology::before {
    background:
        linear-gradient(90deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 75, 150, 0.04) 1px, transparent 1px);
}

.sdc-srv-header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.sdc-srv-header-left {
    margin-left: 0;
    text-align: left;
}

.sdc-srv-header h2,
.sdc-srv-help-card h2 {
    color: #09223d;
    font-size: clamp(38px, 5vw, 76px);
}

.sdc-srv-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #5a6670;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-srv-header-left p {
    margin-left: 0;
}

.sdc-srv-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.sdc-srv-intro-card {
    padding: 22px;
    border-radius: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow: 0 28px 76px rgba(0, 49, 102, 0.10);
    transition: all 0.35s ease;
}

.sdc-srv-intro-card:hover {
    transform: translateY(-8px);
}

.sdc-srv-intro-card > i,
.sdc-srv-core-icon,
.sdc-srv-mini-icon,
.sdc-srv-service-box > i,
.sdc-path-grid div > i {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    box-shadow:
        0 20px 45px rgba(255, 96, 28, 0.26),
        0 0 0 8px rgba(255, 96, 28, 0.065);
    font-size: 22px;
}

.sdc-srv-intro-card h3,
.sdc-srv-core-body h3,
.sdc-srv-mini-card h3,
.sdc-srv-service-box h3,
.sdc-path-grid h3 {
    margin: 0 0 8px;
    color: #09223d;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 1000;
}

.sdc-srv-intro-card p,
.sdc-srv-core-body p,
.sdc-srv-mini-card p,
.sdc-srv-service-box p,
.sdc-path-grid p {
    margin: 0;
    color: #5a6670;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 650;
}

/* Core cards */
.sdc-srv-core-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.sdc-srv-core-card,
.sdc-srv-mini-card,
.sdc-srv-service-box,
.sdc-path-grid div {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow:
        0 30px 90px rgba(0, 49, 102, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.80);
    transition: all 0.35s ease;
}

.sdc-srv-core-card:hover,
.sdc-srv-mini-card:hover,
.sdc-srv-service-box:hover,
.sdc-path-grid div:hover {
    transform: translateY(-10px);
    box-shadow:
        0 42px 110px rgba(0, 49, 102, 0.18),
        0 18px 44px rgba(255, 96, 28, 0.10);
}

.sdc-srv-core-media {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.sdc-srv-core-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.sdc-srv-core-card:hover img {
    transform: scale(1.08);
}

.sdc-srv-core-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.65)),
        linear-gradient(90deg, rgba(255, 96, 28, 0.18), transparent 50%);
}

.sdc-srv-core-media span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    min-height: 36px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-srv-core-body {
    padding: 34px 30px 30px;
}

.sdc-srv-core-icon {
    margin-bottom: 20px;
}

.sdc-srv-core-body h3 {
    font-size: clamp(28px, 2.6vw, 42px);
}

.sdc-srv-core-body ul,
.sdc-srv-mini-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 14px;
}

.sdc-srv-core-body li,
.sdc-srv-mini-card li {
    color: #263949;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.sdc-srv-core-body li i,
.sdc-srv-mini-card li i {
    color: #25a244;
    margin-top: 2px;
}

.sdc-srv-link,
.sdc-srv-mini-card a {
    width: fit-content;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 16px 38px rgba(255, 79, 28, 0.26);
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    transition: all 0.28s ease;
}

.sdc-srv-link:hover,
.sdc-srv-mini-card a:hover {
    transform: translateY(-2px);
}

.sdc-srv-mini-card {
    padding: 32px 28px;
    min-height: 350px;
}

.sdc-srv-mini-icon {
    margin-bottom: 22px;
}

.sdc-srv-mini-card ul {
    grid-template-columns: 1fr;
}

.sdc-srv-mini-dark {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.22), transparent 34%),
        linear-gradient(145deg, #050505, #1d120b);
}

.sdc-srv-mini-dark h3,
.sdc-srv-mini-dark p,
.sdc-srv-mini-dark li {
    color: #fff;
}

.sdc-srv-feature-strip {
    margin-top: 30px;
    padding: 18px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    background: linear-gradient(135deg, #050505, #1d120b);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.18);
}

.sdc-srv-feature-strip div {
    min-height: 84px;
    padding: 16px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.sdc-srv-feature-strip i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

/* Detail boxes */
.sdc-srv-radiology-grid,
.sdc-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sdc-srv-service-box,
.sdc-path-grid div {
    padding: 28px;
}

.sdc-srv-service-box > i,
.sdc-path-grid div > i {
    margin-bottom: 20px;
}

/* Pathology */
.sdc-srv-pathology {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 96, 28, 0.16), transparent 30%),
        linear-gradient(135deg, #060606 0%, #111111 50%, #1a100a 100%);
}

.sdc-srv-pathology .sdc-srv-header h2 {
    color: #fff;
}

.sdc-srv-pathology .sdc-srv-header p {
    color: rgba(255, 255, 255, 0.74);
}

.sdc-path-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 26px;
}

.sdc-path-tab {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.28s ease;
}

.sdc-path-tab.active,
.sdc-path-tab:hover {
    background: linear-gradient(135deg, #ff3024, #ff8700);
    transform: translateY(-2px);
}

.sdc-path-panel {
    display: none;
}

.sdc-path-panel.active {
    display: block;
}

.sdc-path-grid div {
    background: rgba(255, 255, 255, 0.96);
}

.sdc-test-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sdc-test-tags span {
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 850;
}

/* Help CTA */
.sdc-srv-help {
    padding: 0 0 96px;
    background: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-srv-help-card {
    padding: 44px;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 132, 31, 0.26), transparent 32%),
        linear-gradient(135deg, #050505, #16100b);
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.22);
}

.sdc-srv-help-card h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(30px, 4vw, 58px);
}

.sdc-srv-help-card > a {
    min-height: 64px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.30);
    text-decoration: none;
    font-size: clamp(20px, 2.2vw, 34px);
    font-weight: 1000;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sdc-srv-help-card > a:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .sdc-srv-radiology-grid,
    .sdc-path-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sdc-srv-feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sdc-srv-intro-grid,
    .sdc-srv-core-grid {
        grid-template-columns: 1fr;
    }

    .sdc-srv-radiology-grid,
    .sdc-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-srv-help-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .sdc-srv-wrap {
        width: calc(100% - 24px);
    }

    .sdc-srv-hero {
        padding: 145px 0 70px;
    }

    .sdc-srv-hero::after {
        inset: 10px;
        border-radius: 28px;
    }

    .sdc-srv-hero-content {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .sdc-srv-overview,
    .sdc-srv-detail,
    .sdc-srv-pathology {
        padding: 58px 0;
    }

    .sdc-srv-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-srv-hero h1 span,
    .sdc-srv-header h2 span {
        display: inline;
    }

    .sdc-srv-core-media {
        height: 230px;
    }

    .sdc-srv-core-body {
        padding: 28px 20px 22px;
    }

    .sdc-srv-core-body ul,
    .sdc-srv-radiology-grid,
    .sdc-path-grid,
    .sdc-srv-feature-strip {
        grid-template-columns: 1fr;
    }

    .sdc-srv-link,
    .sdc-srv-mini-card a {
        width: 100%;
        justify-content: center;
    }

    .sdc-path-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .sdc-path-tab {
        flex: 0 0 auto;
    }

    .sdc-srv-help {
        padding-bottom: 58px;
    }

    .sdc-srv-help-card {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .sdc-srv-help-card > a {
        width: 100%;
        min-height: 58px;
        font-size: 22px;
    }
}


/* =====================================================
   SDC Health Packages Page - Ultra Premium Isolated CSS
===================================================== */

.sdc-hp-hero,
.sdc-hp-intro,
.sdc-hp-packages,
.sdc-hp-comparison,
.sdc-hp-benefits,
.sdc-hp-cta,
.sdc-hp-hero *,
.sdc-hp-intro *,
.sdc-hp-packages *,
.sdc-hp-comparison *,
.sdc-hp-benefits *,
.sdc-hp-cta * {
    box-sizing: border-box;
}

.sdc-hp-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-hp-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 210px 0 120px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 96, 28, 0.24), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(255, 196, 109, 0.10), transparent 30%),
        linear-gradient(135deg, #000 0%, #070707 46%, #1b0f08 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-hp-hero::before,
.sdc-hp-intro::before,
.sdc-hp-packages::before,
.sdc-hp-comparison::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-hp-hero::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    pointer-events: none;
}

.sdc-hp-hero-content {
    max-width: 950px;
    padding: 44px;
    border-radius: 38px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 40px 110px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
}

.sdc-hp-kicker,
.sdc-hp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 196, 109, 0.24);
    box-shadow:
        0 18px 42px rgba(255, 84, 30, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-hp-kicker i,
.sdc-hp-section-tag i {
    color: #ffc56d;
}

.sdc-hp-hero h1,
.sdc-hp-header h2,
.sdc-hp-benefits-card h2,
.sdc-hp-cta-card h2 {
    margin: 22px 0 14px;
    font-family: "Playfair Display", serif;
    line-height: 1.04;
    font-weight: 700;
}

.sdc-hp-hero h1 {
    color: #fff;
    font-size: clamp(48px, 7vw, 108px);
}

.sdc-hp-hero h1 span,
.sdc-hp-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024 0%, #ff8700 50%, #ffd37a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-hp-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-hp-breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 850;
}

.sdc-hp-breadcrumb a {
    color: #ffc56d;
    text-decoration: none;
}

.sdc-hp-intro,
.sdc-hp-packages,
.sdc-hp-comparison {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 90px 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 96, 28, 0.10), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(0, 116, 225, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-hp-packages {
    padding-top: 30px;
}

.sdc-hp-header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.sdc-hp-header h2 {
    color: #09223d;
    font-size: clamp(38px, 5vw, 76px);
}

.sdc-hp-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #5a6670;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-hp-benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sdc-hp-benefit-strip div {
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow: 0 24px 64px rgba(0, 49, 102, 0.10);
    color: #09223d;
    font-weight: 900;
}

.sdc-hp-benefit-strip i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-hp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sdc-hp-card {
    position: relative;
    overflow: hidden;
    padding: 34px 28px 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow:
        0 30px 90px rgba(0, 49, 102, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.80);
    transition: all 0.35s ease;
}

.sdc-hp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 110, 31, 0.13), transparent 32%),
        linear-gradient(180deg, rgba(0, 123, 255, 0.035), transparent 48%);
    pointer-events: none;
}

.sdc-hp-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 42px 110px rgba(0, 49, 102, 0.18),
        0 18px 44px rgba(255, 96, 28, 0.10);
}

.sdc-hp-popular {
    border-color: rgba(255, 96, 28, 0.34);
}

.sdc-hp-dark {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.22), transparent 34%),
        linear-gradient(145deg, #050505, #1d120b);
    border-color: rgba(255, 196, 109, 0.18);
}

.sdc-hp-label {
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 2;
    min-height: 30px;
    padding: 7px 16px;
    border-radius: 0 0 14px 14px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    font-size: 12px;
    font-weight: 950;
}

.sdc-hp-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    box-shadow:
        0 20px 45px rgba(255, 96, 28, 0.26),
        0 0 0 8px rgba(255, 96, 28, 0.065);
    font-size: 24px;
}

.sdc-hp-param {
    position: relative;
    z-index: 1;
    width: fit-content;
    display: block;
    margin-top: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ff4f1f;
    background: rgba(255, 96, 28, 0.09);
    font-size: 13px;
    font-weight: 950;
}

.sdc-hp-card h3 {
    position: relative;
    z-index: 1;
    margin: 16px 0 10px;
    color: #09223d;
    font-size: clamp(24px, 2.3vw, 36px);
    line-height: 1.1;
    font-weight: 1000;
}

.sdc-hp-card p {
    position: relative;
    z-index: 1;
    min-height: 78px;
    margin: 0 0 18px;
    color: #5a6670;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 650;
}

.sdc-hp-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.sdc-hp-card li {
    color: #263949;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.sdc-hp-card li i {
    color: #25a244;
    margin-top: 2px;
}

.sdc-hp-dark h3,
.sdc-hp-dark p,
.sdc-hp-dark li {
    color: #fff;
}

.sdc-hp-dark p,
.sdc-hp-dark li {
    color: rgba(255, 255, 255, 0.78);
}

.sdc-hp-price {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    border-top: 1px dashed rgba(255, 96, 28, 0.25);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.sdc-hp-price span {
    color: #66727c;
    font-size: 13px;
    font-weight: 900;
}

.sdc-hp-price del {
    color: #7fb957;
    font-size: 19px;
    font-weight: 950;
}

.sdc-hp-price strong {
    color: #09223d;
    font-size: clamp(30px, 2.6vw, 42px);
    line-height: 1;
    font-weight: 1000;
}

.sdc-hp-dark .sdc-hp-price span,
.sdc-hp-dark .sdc-hp-price strong {
    color: #fff;
}

.sdc-hp-btn,
.sdc-hp-cta-actions a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    transition: all 0.3s ease;
}

.sdc-hp-btn:hover,
.sdc-hp-cta-actions a:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 62px rgba(255, 79, 28, 0.38);
}

/* Comparison */
.sdc-hp-table-wrap {
    overflow-x: auto;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow: 0 30px 90px rgba(0, 49, 102, 0.12);
}

.sdc-hp-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-hp-table th,
.sdc-hp-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 75, 150, 0.08);
    text-align: center;
}

.sdc-hp-table th:first-child,
.sdc-hp-table td:first-child {
    text-align: left;
}

.sdc-hp-table th {
    color: #09223d;
    font-size: 16px;
    font-weight: 1000;
    background: #fff6ef;
}

.sdc-hp-table th span {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    font-size: 11px;
}

.sdc-hp-table td {
    color: #263949;
    font-size: 15px;
    font-weight: 850;
}

.sdc-hp-table td:not(:first-child) {
    color: #25a244;
    font-size: 22px;
    font-weight: 1000;
}

.sdc-hp-price-row td {
    color: #ff4f1f !important;
    font-size: 22px !important;
    font-weight: 1000 !important;
    background: #fff8f2;
}

/* Benefits + CTA */
.sdc-hp-benefits,
.sdc-hp-cta {
    padding: 0 0 90px;
    background: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-hp-benefits-card,
.sdc-hp-cta-card {
    padding: 44px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 132, 31, 0.26), transparent 32%),
        linear-gradient(135deg, #050505, #16100b);
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.22);
}

.sdc-hp-benefits-card h2,
.sdc-hp-cta-card h2 {
    max-width: 860px;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 70px);
}

.sdc-hp-benefits-card p,
.sdc-hp-cta-card p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-hp-benefits-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sdc-hp-benefits-grid div {
    min-height: 100px;
    padding: 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.sdc-hp-benefits-grid i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ff3024, #ff8700);
}

.sdc-hp-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sdc-hp-cta-actions {
    display: grid;
    gap: 14px;
    min-width: 260px;
}

.sdc-hp-cta-secondary {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Responsive */
@media (max-width: 1100px) {
    .sdc-hp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-hp-benefit-strip,
    .sdc-hp-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-hp-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .sdc-hp-wrap {
        width: calc(100% - 24px);
    }

    .sdc-hp-hero {
        padding: 145px 0 70px;
    }

    .sdc-hp-hero::after {
        inset: 10px;
        border-radius: 28px;
    }

    .sdc-hp-hero-content {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .sdc-hp-intro,
    .sdc-hp-packages,
    .sdc-hp-comparison {
        padding: 58px 0;
    }

    .sdc-hp-packages {
        padding-top: 10px;
    }

    .sdc-hp-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-hp-hero h1 span,
    .sdc-hp-header h2 span {
        display: inline;
    }

    .sdc-hp-grid,
    .sdc-hp-benefit-strip,
    .sdc-hp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sdc-hp-card {
        padding: 32px 20px 22px;
        border-radius: 26px;
    }

    .sdc-hp-card p {
        min-height: auto;
    }

    .sdc-hp-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sdc-hp-benefits,
    .sdc-hp-cta {
        padding-bottom: 58px;
    }

    .sdc-hp-benefits-card,
    .sdc-hp-cta-card {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .sdc-hp-cta-actions {
        width: 100%;
    }
}


/* =====================================================
   SDC Patient Care Page - Ultra Premium Isolated CSS
===================================================== */

.sdc-pc-hero,
.sdc-pc-intro,
.sdc-pc-guide,
.sdc-pc-rights,
.sdc-pc-cta,
.sdc-pc-hero *,
.sdc-pc-intro *,
.sdc-pc-guide *,
.sdc-pc-rights *,
.sdc-pc-cta * {
    box-sizing: border-box;
}

.sdc-pc-wrap {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.sdc-pc-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 210px 0 120px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 96, 28, 0.24), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(255, 196, 109, 0.10), transparent 30%),
        linear-gradient(135deg, #000 0%, #070707 46%, #1b0f08 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-pc-hero::before,
.sdc-pc-intro::before,
.sdc-pc-guide::before,
.sdc-pc-rights::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    z-index: -2;
}

.sdc-pc-hero::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    pointer-events: none;
}

.sdc-pc-hero-content {
    max-width: 950px;
    padding: 44px;
    border-radius: 38px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 40px 110px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
}

.sdc-pc-kicker,
.sdc-pc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    color: black;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 196, 109, 0.24);
    box-shadow:
        0 18px 42px rgba(255, 84, 30, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdc-pc-kicker i,
.sdc-pc-section-tag i {
    color: #ffc56d;
}

.sdc-pc-hero h1,
.sdc-pc-header h2,
.sdc-pc-cta-card h2 {
    margin: 22px 0 14px;
    font-family: "Playfair Display", serif;
    line-height: 1.04;
    font-weight: 700;
}

.sdc-pc-hero h1 {
    color: #fff;
    font-size: clamp(48px, 7vw, 108px);
}

.sdc-pc-hero h1 span,
.sdc-pc-header h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024 0%, #ff8700 50%, #ffd37a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-pc-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-pc-breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 850;
}

.sdc-pc-breadcrumb a {
    color: #ffc56d;
    text-decoration: none;
}

/* Shared sections */
.sdc-pc-intro,
.sdc-pc-guide,
.sdc-pc-rights {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 96, 28, 0.10), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(0, 116, 225, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-pc-guide {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 96, 28, 0.16), transparent 30%),
        linear-gradient(135deg, #060606 0%, #111111 50%, #1a100a 100%);
}

.sdc-pc-guide .sdc-pc-header h2 {
    color: #fff;
}

.sdc-pc-guide .sdc-pc-header p {
    color: rgba(255, 255, 255, 0.72);
}

.sdc-pc-header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.sdc-pc-header h2 {
    color: #09223d;
    font-size: clamp(38px, 5vw, 76px);
}

.sdc-pc-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #5a6670;
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 650;
}

/* Care cards */
.sdc-pc-care-grid,
.sdc-pc-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sdc-pc-care-card,
.sdc-pc-right-card,
.sdc-pc-guide-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 96, 28, 0.12);
    box-shadow:
        0 30px 90px rgba(0, 49, 102, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.80);
    transition: all 0.35s ease;
}

.sdc-pc-care-card::before,
.sdc-pc-right-card::before,
.sdc-pc-guide-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 110, 31, 0.13), transparent 32%),
        linear-gradient(180deg, rgba(0, 123, 255, 0.035), transparent 48%);
    pointer-events: none;
}

.sdc-pc-care-card:hover,
.sdc-pc-right-card:hover,
.sdc-pc-guide-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 42px 110px rgba(0, 49, 102, 0.18),
        0 18px 44px rgba(255, 96, 28, 0.10);
}

.sdc-pc-care-card > i,
.sdc-pc-right-card > i,
.sdc-pc-guide-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700, #ffc56d);
    box-shadow:
        0 20px 45px rgba(255, 96, 28, 0.26),
        0 0 0 8px rgba(255, 96, 28, 0.065);
    font-size: 24px;
}

.sdc-pc-care-card h3,
.sdc-pc-right-card h3,
.sdc-pc-guide-card h3 {
    position: relative;
    z-index: 1;
    margin: 22px 0 12px;
    color: #09223d;
    font-size: 24px;
    line-height: 1.14;
    font-weight: 1000;
}

.sdc-pc-care-card p,
.sdc-pc-right-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5a6670;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-pc-care-dark {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.22), transparent 34%),
        linear-gradient(145deg, #050505, #1d120b);
}

.sdc-pc-care-dark h3,
.sdc-pc-care-dark p {
    color: #fff;
}

.sdc-pc-care-dark p {
    color: rgba(255, 255, 255, 0.78);
}

/* Guide */
.sdc-pc-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sdc-pc-guide-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
}

.sdc-pc-guide-card li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 75, 150, 0.08);
    color: #263949;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    display: flex;
    gap: 10px;
}

.sdc-pc-guide-card li i {
    color: #25a244;
    margin-top: 2px;
}

.sdc-pc-guide-dark {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 132, 31, 0.22), transparent 34%),
        linear-gradient(145deg, #050505, #1d120b);
    border-color: rgba(255, 196, 109, 0.18);
}

.sdc-pc-guide-dark h3,
.sdc-pc-guide-dark li {
    color: #fff;
}

.sdc-pc-guide-dark li {
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

/* CTA */
.sdc-pc-cta {
    padding: 0 0 96px;
    background: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sdc-pc-cta-card {
    padding: 44px;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 132, 31, 0.26), transparent 32%),
        linear-gradient(135deg, #050505, #16100b);
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.22);
}

.sdc-pc-cta-card h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 70px);
}

.sdc-pc-cta-card p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-pc-cta-actions {
    display: grid;
    gap: 14px;
    min-width: 260px;
}

.sdc-pc-cta-actions a {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff8700);
    box-shadow: 0 18px 42px rgba(255, 79, 28, 0.28);
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    transition: all 0.3s ease;
}

.sdc-pc-cta-actions a:hover {
    transform: translateY(-3px);
}

.sdc-pc-cta-secondary {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Responsive */
@media (max-width: 1100px) {
    .sdc-pc-care-grid,
    .sdc-pc-rights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-pc-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 780px) {
    .sdc-pc-guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sdc-pc-wrap {
        width: calc(100% - 24px);
    }

    .sdc-pc-hero {
        padding: 145px 0 70px;
    }

    .sdc-pc-hero::after {
        inset: 10px;
        border-radius: 28px;
    }

    .sdc-pc-hero-content {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .sdc-pc-intro,
    .sdc-pc-guide,
    .sdc-pc-rights {
        padding: 58px 0;
    }

    .sdc-pc-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .sdc-pc-hero h1 span,
    .sdc-pc-header h2 span {
        display: inline;
    }

    .sdc-pc-care-grid,
    .sdc-pc-rights-grid {
        grid-template-columns: 1fr;
    }

    .sdc-pc-care-card,
    .sdc-pc-right-card,
    .sdc-pc-guide-card {
        padding: 24px;
        border-radius: 26px;
    }

    .sdc-pc-cta {
        padding-bottom: 58px;
    }

    .sdc-pc-cta-card {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .sdc-pc-cta-actions {
        width: 100%;
    }
}



/* =====================================================
   SDC Gallery Page - Ultra Premium Isolated CSS
===================================================== */

.sdc-gallery-page,
.sdc-gallery-page *,
.sdc-gallery-page *::before,
.sdc-gallery-page *::after,
.sdc-gallery-lightbox,
.sdc-gallery-lightbox *,
.sdc-gallery-lightbox *::before,
.sdc-gallery-lightbox *::after {
    box-sizing: border-box;
}

.sdc-gallery-page {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f7f9fc;
    color: #091827;
    overflow: hidden;
}

.sdc-gallery-wrap {
    width: min(100% - 44px, 1440px);
    margin: 0 auto;
}

/* Hero */

.sdc-gallery-hero {
    position: relative;
    min-height: 620px;
    padding: 210px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 106, 31, 0.22), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(255, 190, 96, 0.12), transparent 30%),
        linear-gradient(135deg, #020202 0%, #080604 42%, #140905 100%);
}

.sdc-gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    z-index: -2;
}

.sdc-gallery-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    top: 80px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 122, 28, 0.18), transparent 62%);
    filter: blur(4px);
    z-index: -1;
}

.sdc-gallery-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35)),
        url("assets/images/unnamed%20(9).webp") center / cover no-repeat;
    opacity: 0.24;
    z-index: -3;
}

.sdc-gallery-hero-content {
    max-width: 880px;
    color: #fff;
}

.sdc-gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 18px;
    border-radius: 999px;
    color: #ffd2a6;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-gallery-kicker i {
    color: #ff7a1c;
}

.sdc-gallery-hero h1 {
    margin: 24px 0 18px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 7vw, 102px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sdc-gallery-hero h1 span {
    display: block;
    background: linear-gradient(135deg, #ff2d22, #ff7a1c, #ffd08a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-gallery-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-gallery-breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    font-size: 14px;
    font-weight: 800;
}

.sdc-gallery-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.sdc-gallery-breadcrumb i {
    color: #ff7a1c;
    font-size: 11px;
}

/* Showcase */

.sdc-gallery-showcase {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(255, 122, 28, 0.10), transparent 28%),
        radial-gradient(circle at 92% 0%, rgba(0, 79, 159, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.sdc-gallery-section-head {
    max-width: 840px;
    margin: 0 auto 28px;
    text-align: center;
}

.sdc-gallery-section-head > span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #ff5a1f;
    background: rgba(255, 105, 31, 0.10);
    border: 1px solid rgba(255, 105, 31, 0.16);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-gallery-section-head h2 {
    margin: 18px 0 12px;
    color: #071827;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
}

.sdc-gallery-section-head h2 strong {
    display: block;
    font-weight: inherit;
    background: linear-gradient(135deg, #ff3024, #ff7a1c, #ffb84d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-gallery-section-head p {
    max-width: 720px;
    margin: 0 auto;
    color: #5c6a78;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.75;
    font-weight: 650;
}

/* Filter */

.sdc-gallery-filter {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 34px;
    padding: 8px;
    border-radius: 999px;
    display: flex;
    gap: 8px;
    background: rgba(8, 24, 39, 0.06);
    border: 1px solid rgba(8, 24, 39, 0.08);
    box-shadow: 0 18px 50px rgba(10, 30, 60, 0.08);
    overflow-x: auto;
}

.sdc-gallery-filter-btn {
    min-height: 44px;
    padding: 0 19px;
    border: 0;
    border-radius: 999px;
    color: #14283a;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: all 0.28s ease;
}

.sdc-gallery-filter-btn:hover,
.sdc-gallery-filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 14px 34px rgba(255, 86, 28, 0.28);
}

/* Grid */

.sdc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 22px;
}

.sdc-gallery-card {
    position: relative;
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    background: #0b1118;
    box-shadow: 0 26px 70px rgba(8, 24, 39, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.25s ease;
}

.sdc-gallery-card.sdc-gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 742px;
}

.sdc-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 36px 94px rgba(8, 24, 39, 0.24);
}

.sdc-gallery-card.is-hidden {
    display: none;
}

.sdc-gallery-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sdc-gallery-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.sdc-gallery-card:hover .sdc-gallery-media img {
    transform: scale(1.1);
    filter: saturate(1.08) contrast(1.04);
}

.sdc-gallery-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 26% 22%, rgba(255, 122, 28, 0.28), transparent 32%),
        linear-gradient(135deg, #06111d, #0c2743 55%, #071827);
}

.sdc-gallery-fallback i {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(62px, 7vw, 110px);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.26));
}

.sdc-gallery-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74)),
        radial-gradient(circle at 80% 15%, rgba(255, 122, 28, 0.18), transparent 34%);
}

.sdc-gallery-shine {
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.28), transparent 52%);
    transition: transform 0.75s ease;
    z-index: 2;
}

.sdc-gallery-card:hover .sdc-gallery-shine {
    transform: translateX(120%);
}

.sdc-gallery-chip {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sdc-gallery-card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    padding: 18px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(22px);
    transform: translateY(8px);
    transition: transform 0.35s ease, background 0.35s ease;
}

.sdc-gallery-card:hover .sdc-gallery-card-content {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.17);
}

.sdc-gallery-card-icon,
.sdc-gallery-view {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.sdc-gallery-card-icon {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 16px 34px rgba(255, 84, 28, 0.30);
}

.sdc-gallery-card-content h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 1000;
}

.sdc-gallery-card-content p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.sdc-gallery-view {
    border: 0;
    color: #071827;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: all 0.28s ease;
}

.sdc-gallery-card:hover .sdc-gallery-view {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
}

/* CTA */

.sdc-gallery-cta {
    padding: 0 0 100px;
    background: #fff;
}

.sdc-gallery-cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 122, 28, 0.30), transparent 32%),
        linear-gradient(135deg, #050505 0%, #0c0704 56%, #1b0b04 100%);
    box-shadow: 0 34px 90px rgba(8, 12, 18, 0.26);
}

.sdc-gallery-cta-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.sdc-gallery-cta-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ffbd82;
    font-size: 13px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-gallery-cta-card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.05;
}

.sdc-gallery-cta-card p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-gallery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.sdc-gallery-cta-actions a {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 20px 46px rgba(255, 82, 28, 0.30);
    text-decoration: none;
    font-size: 15px;
    font-weight: 1000;
    white-space: nowrap;
    transition: all 0.28s ease;
}

.sdc-gallery-cta-actions a:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 58px rgba(255, 82, 28, 0.40);
}

.sdc-gallery-cta-actions .sdc-gallery-outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

/* Lightbox */

.sdc-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(16px);
}

.sdc-gallery-lightbox.active {
    display: flex;
}

.sdc-gallery-lightbox-card {
    width: min(100%, 1040px);
    max-height: calc(100vh - 80px);
    border-radius: 30px;
    overflow: hidden;
    background: #090909;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48);
    animation: sdcGalleryZoom 0.28s ease both;
}

@keyframes sdcGalleryZoom {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(18px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sdc-gallery-lightbox-media {
    height: min(64vh, 620px);
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 122, 28, 0.24), transparent 34%),
        linear-gradient(135deg, #080808, #160b05);
}

.sdc-gallery-lightbox-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sdc-gallery-lightbox-fallback {
    height: 100%;
    display: grid;
    place-items: center;
}

.sdc-gallery-lightbox-fallback i {
    color: #ff7a1c;
    font-size: 110px;
}

.sdc-gallery-lightbox-info {
    padding: 24px 28px 28px;
}

.sdc-gallery-lightbox-info span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #ff9952;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-gallery-lightbox-info h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.1;
    font-weight: 1000;
}

.sdc-gallery-lightbox-info p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 650;
}

.sdc-gallery-lightbox-close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 100000;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 18px 44px rgba(255, 86, 28, 0.34);
}

/* Responsive */

@media (max-width: 1180px) {
    .sdc-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sdc-gallery-card.sdc-gallery-featured {
        grid-column: span 2;
        min-height: 600px;
    }

    .sdc-gallery-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 860px) {
    .sdc-gallery-hero {
        min-height: auto;
        padding: 170px 0 82px;
    }

    .sdc-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-gallery-card,
    .sdc-gallery-card.sdc-gallery-featured {
        grid-column: span 1;
        grid-row: auto;
        min-height: 380px;
    }

    .sdc-gallery-section-head {
        text-align: left;
    }

    .sdc-gallery-section-head h2 strong {
        display: inline;
    }

    .sdc-gallery-filter {
        width: 100%;
        justify-content: flex-start;
        border-radius: 24px;
    }
}

@media (max-width: 640px) {
    .sdc-gallery-wrap {
        width: calc(100% - 24px);
    }

    .sdc-gallery-hero {
        padding: 142px 0 66px;
    }

    .sdc-gallery-hero h1 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .sdc-gallery-hero p {
        font-size: 15px;
    }

    .sdc-gallery-breadcrumb {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
    }

    .sdc-gallery-showcase {
        padding: 62px 0;
    }

    .sdc-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sdc-gallery-card,
    .sdc-gallery-card.sdc-gallery-featured {
        min-height: 390px;
        border-radius: 24px;
    }

    .sdc-gallery-card-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px;
        border-radius: 20px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .sdc-gallery-view {
        display: none;
    }

    .sdc-gallery-card-content h3 {
        font-size: 16px;
    }

    .sdc-gallery-card-content p {
        font-size: 12px;
    }

    .sdc-gallery-cta {
        padding-bottom: 62px;
    }

    .sdc-gallery-cta-card {
        border-radius: 28px;
    }

    .sdc-gallery-cta-actions,
    .sdc-gallery-cta-actions a {
        width: 100%;
    }

    .sdc-gallery-lightbox {
        padding: 12px;
    }

    .sdc-gallery-lightbox-card {
        border-radius: 22px;
    }

    .sdc-gallery-lightbox-media {
        height: 48vh;
    }

    .sdc-gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 46px;
        height: 46px;
    }
}


/* =====================================================
   SDC Contact Page - Ultra Premium Isolated CSS
===================================================== */

.sdc-contact-page,
.sdc-contact-page *,
.sdc-contact-page *::before,
.sdc-contact-page *::after {
    box-sizing: border-box;
}

.sdc-contact-page {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #0a1724;
    background: #f7f9fc;
    overflow: hidden;
}

.sdc-contact-wrap {
    width: min(100% - 44px, 1440px);
    margin: 0 auto;
}

/* Hero */

.sdc-contact-hero {
    position: relative;
    min-height: 620px;
    padding: 210px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 106, 31, 0.25), transparent 32%),
        radial-gradient(circle at 86% 16%, rgba(255, 210, 140, 0.12), transparent 30%),
        linear-gradient(135deg, #020202 0%, #080604 46%, #170905 100%);
}

.sdc-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 82px 82px;
    z-index: -2;
}

.sdc-contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42)),
        url("assets/images/unnamed%20(9).webp") center / cover no-repeat;
    opacity: 0.22;
    z-index: -3;
}

.sdc-contact-hero-content {
    max-width: 900px;
    color: #fff;
}

.sdc-contact-kicker,
.sdc-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #ffd4aa;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-contact-kicker i {
    color: #ff7a1c;
}

.sdc-contact-hero h1 {
    margin: 24px 0 18px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 7vw, 106px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sdc-contact-hero h1 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff7a1c, #ffd08a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-contact-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.8;
    font-weight: 650;
}

.sdc-contact-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sdc-contact-primary-btn,
.sdc-contact-glass-btn {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 1000;
    transition: all 0.28s ease;
}

.sdc-contact-primary-btn {
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 22px 52px rgba(255, 82, 28, 0.34);
}

.sdc-contact-glass-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.sdc-contact-primary-btn:hover,
.sdc-contact-glass-btn:hover {
    transform: translateY(-4px);
}

.sdc-contact-breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    font-size: 14px;
    font-weight: 800;
}

.sdc-contact-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.sdc-contact-breadcrumb i {
    color: #ff7a1c;
    font-size: 11px;
}

/* Info Cards */

.sdc-contact-info-section {
    position: relative;
    padding: 0 0 72px;
    margin-top: -70px;
    z-index: 2;
}

.sdc-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sdc-contact-info-card {
    position: relative;
    min-height: 260px;
    padding: 26px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 24, 39, 0.08);
    box-shadow: 0 26px 70px rgba(8, 24, 39, 0.14);
    transition: all 0.32s ease;
}

.sdc-contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 122, 28, 0.13), transparent 34%),
        linear-gradient(180deg, rgba(0, 79, 159, 0.04), transparent);
    pointer-events: none;
}

.sdc-contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 36px 90px rgba(8, 24, 39, 0.20);
}

.sdc-contact-info-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 18px 38px rgba(255, 82, 28, 0.28);
    font-size: 21px;
}

.sdc-contact-info-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: #071827;
    font-size: 20px;
    font-weight: 1000;
}

.sdc-contact-info-card p {
    position: relative;
    margin: 0;
    color: #4e5d6b;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
}

.sdc-contact-info-card a {
    color: #071827;
    text-decoration: none;
}

.sdc-contact-info-card span {
    position: relative;
    display: block;
    margin-top: 14px;
    color: #ff5a1f;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main */

.sdc-contact-main-section {
    padding: 30px 0 90px;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 122, 28, 0.10), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(0, 79, 159, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.sdc-contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.sdc-contact-form-card,
.sdc-contact-map-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 24, 39, 0.08);
    box-shadow: 0 28px 80px rgba(8, 24, 39, 0.12);
}

.sdc-contact-form-card {
    padding: clamp(26px, 4vw, 46px);
}

.sdc-contact-form-card::before,
.sdc-contact-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 122, 28, 0.11), transparent 30%);
    pointer-events: none;
}

.sdc-contact-form-card > *,
.sdc-contact-map-card > * {
    position: relative;
}

.sdc-contact-label {
    color: #ff5a1f;
    background: rgba(255, 105, 31, 0.10);
    border-color: rgba(255, 105, 31, 0.18);
}

.sdc-contact-form-card h2,
.sdc-contact-map-head h2 {
    margin: 18px 0 12px;
    color: #071827;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 700;
}

.sdc-contact-form-card h2 span,
.sdc-contact-map-head h2 span {
    display: block;
    background: linear-gradient(135deg, #ff3024, #ff7a1c, #ffb84d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sdc-contact-form-card p,
.sdc-contact-map-head p {
    margin: 0 0 24px;
    color: #5a6876;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.sdc-contact-alert {
    margin-bottom: 22px;
    padding: 15px 16px;
    border-radius: 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.sdc-contact-alert.is-success {
    color: #0f5a2b;
    background: rgba(31, 180, 90, 0.12);
    border: 1px solid rgba(31, 180, 90, 0.20);
}

.sdc-contact-alert.is-error {
    color: #9e1f1f;
    background: rgba(255, 48, 36, 0.10);
    border: 1px solid rgba(255, 48, 36, 0.18);
}

.sdc-contact-form {
    display: grid;
    gap: 18px;
}

.sdc-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sdc-contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #102235;
    font-size: 13px;
    font-weight: 1000;
}

.sdc-contact-field label span {
    color: #ff3024;
}

.sdc-contact-input {
    position: relative;
}

.sdc-contact-input i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #ff6a1f;
    font-size: 15px;
    pointer-events: none;
}

.sdc-contact-textarea i {
    top: 20px;
    transform: none;
}

.sdc-contact-input input,
.sdc-contact-input select,
.sdc-contact-input textarea {
    width: 100%;
    min-height: 56px;
    padding: 0 16px 0 46px;
    border: 1px solid rgba(8, 24, 39, 0.10);
    border-radius: 18px;
    outline: none;
    color: #071827;
    background: #f8fafc;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    transition: all 0.25s ease;
}

.sdc-contact-input textarea {
    min-height: 150px;
    padding-top: 17px;
    resize: vertical;
}

.sdc-contact-input input:focus,
.sdc-contact-input select:focus,
.sdc-contact-input textarea:focus {
    border-color: rgba(255, 106, 31, 0.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 106, 31, 0.10);
}

.sdc-contact-submit {
    min-height: 60px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 22px 52px rgba(255, 82, 28, 0.30);
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 1000;
    transition: all 0.28s ease;
}

.sdc-contact-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(255, 82, 28, 0.40);
}

/* Map */

.sdc-contact-map-card {
    padding: 24px;
}

.sdc-contact-map-head {
    padding: 16px 16px 6px;
}

.sdc-contact-map {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(8, 24, 39, 0.10);
    box-shadow: 0 20px 54px rgba(8, 24, 39, 0.12);
}

.sdc-contact-map iframe {
    display: block;
    width: 100%;
}

.sdc-contact-direction-card {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 122, 28, 0.14), transparent 36%),
        #071827;
    color: #fff;
}

.sdc-contact-direction-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 18px 38px rgba(255, 82, 28, 0.28);
}

.sdc-contact-direction-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 1000;
}

.sdc-contact-direction-card p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 650;
}

.sdc-contact-direction-card p:last-child {
    margin-bottom: 0;
}

/* Quick Contact */

.sdc-contact-quick-section {
    padding: 0 0 100px;
    background: #fff;
}

.sdc-contact-quick-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 122, 28, 0.24), transparent 34%),
        linear-gradient(135deg, #030303 0%, #090604 52%, #170905 100%);
    box-shadow: 0 34px 90px rgba(8, 12, 18, 0.26);
}

.sdc-contact-quick-item {
    min-height: 160px;
    padding: 24px;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: all 0.32s ease;
}

.sdc-contact-quick-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.13);
}

.sdc-contact-quick-item i {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff3024, #ff7a1c);
    box-shadow: 0 18px 38px rgba(255, 82, 28, 0.28);
    font-size: 21px;
}

.sdc-contact-quick-item span {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sdc-contact-quick-item strong {
    margin-top: 6px;
    color: #fff;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.15;
    font-weight: 1000;
}

/* Responsive */

@media (max-width: 1180px) {
    .sdc-contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdc-contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .sdc-contact-wrap {
        width: calc(100% - 24px);
    }

    .sdc-contact-hero {
        min-height: auto;
        padding: 145px 0 88px;
    }

    .sdc-contact-hero h1 {
        font-size: clamp(42px, 13vw, 66px);
    }

    .sdc-contact-hero-actions,
    .sdc-contact-primary-btn,
    .sdc-contact-glass-btn {
        width: 100%;
    }

    .sdc-contact-breadcrumb {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
    }

    .sdc-contact-info-section {
        margin-top: -46px;
        padding-bottom: 50px;
    }

    .sdc-contact-info-grid,
    .sdc-contact-form-row,
    .sdc-contact-quick-card {
        grid-template-columns: 1fr;
    }

    .sdc-contact-info-card {
        min-height: auto;
        padding: 22px;
        border-radius: 24px;
    }

    .sdc-contact-main-section {
        padding: 10px 0 62px;
    }

    .sdc-contact-form-card,
    .sdc-contact-map-card {
        border-radius: 26px;
    }

    .sdc-contact-map-card {
        padding: 14px;
    }

    .sdc-contact-map-head {
        padding: 14px 10px 4px;
    }

    .sdc-contact-form-card h2 span,
    .sdc-contact-map-head h2 span {
        display: inline;
    }

    .sdc-contact-map iframe {
        height: 360px;
    }

    .sdc-contact-direction-card {
        grid-template-columns: 1fr;
    }

    .sdc-contact-quick-section {
        padding-bottom: 62px;
    }

    .sdc-contact-quick-card {
        border-radius: 28px;
    }

    .sdc-contact-quick-item {
        min-height: 140px;
        border-radius: 22px;
    }
}