:root {
    --navy: #0a1628;
    --deep-blue: #0d2144;
    --mid-blue: #1a3a6e;
    --accent: #c8a96e;
    --accent-light: #e8d5a3;
    --teal: #1b7a7a;
    --teal-light: #2aa8a8;
    --cream: #f8f4ef;
    --white: #ffffff;
    --gray-light: #f0ede8;
    --gray-mid: #a09080;
    --text-dark: #1a1208;
    --text-mid: #3d3020;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ====== NAV ====== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.03em;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(200, 169, 110, 0.08);
}

.nav-cta {
    background: var(--accent);
    color: var(--navy) !important;
    border-radius: 4px;
    font-weight: 600;
    padding: 9px 20px !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    color: var(--navy) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ====== PAGE SYSTEM ====== */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
}

.page.active {
    display: block;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27, 122, 122, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 30%, rgba(200, 169, 110, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0a1628 0%, #0d2144 50%, #0a1628 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
    animation: fadeInUp 1s ease forwards;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.4);
    background: var(--accent-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 5%;
    display: flex;
    gap: 48px;
    z-index: 2;
    animation: fadeInUp 1s ease 0.3s both;
}

.stat {
    text-align: right;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-cross {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.05;
    z-index: 1;
}

.hero-cross::before,
.hero-cross::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 4px;
}

.hero-cross::before {
    width: 40px;
    height: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-cross::after {
    width: 200px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* ====== SECTION HEADERS ====== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
}

.section-title em {
    font-style: italic;
    color: var(--teal);
}

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    margin: 20px auto 0;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-tag {
    color: var(--accent);
}

.section-dark .section-title em {
    color: var(--accent-light);
}

/* ====== SERVICES PAGE ====== */
.services-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.services-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.1);
}

.services-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.services-hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.services-hero p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    line-height: 1.7;
}

.breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.breadcrumb span {
    color: var(--accent);
}

.services-grid-section {
    padding: 80px 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--teal));
    transition: height 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(200, 169, 110, 0.2);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--mid-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 14px;
}

/* ====== DOCTORS PAGE ====== */
.doctors-section {
    padding: 80px 5%;
}

.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    color: var(--text-mid);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.doctor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.doctor-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.doctor-photo-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.doctor-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.doctor-info {
    padding: 24px;
}

.doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.doctor-spec {
    font-size: 0.8rem;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.doctor-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.doctor-meta-item {
    font-size: 0.8rem;
    color: var(--gray-mid);
    display: flex;
    align-items: center;
    gap: 4px;
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--text-mid);
}

.stars {
    color: #f5a623;
}

.doctor-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-btn {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.book-btn:hover {
    background: var(--mid-blue);
}

/* ====== FACILITIES PAGE ====== */
.facilities-section {
    padding: 80px 5%;
}

.facilities-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.facilities-intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.facilities-intro-text h2 em {
    font-style: italic;
    color: var(--teal);
}

.facilities-intro-text p {
    color: var(--gray-mid);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.facilities-visual {
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.facility-stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.facility-stat-box .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.facility-stat-box .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.facility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.facility-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.facility-card-header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.facility-card-body {
    padding: 28px;
}

.facility-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.facility-card-body p {
    font-size: 0.88rem;
    color: var(--gray-mid);
    line-height: 1.7;
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.facility-tag {
    background: var(--gray-light);
    color: var(--text-mid);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

/* ====== INFRASTRUCTURE PAGE ====== */
.infra-section {
    padding: 80px 5%;
}

.infra-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.infra-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--teal), var(--accent));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: box-shadow 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 20px;
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.2);
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-year {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--gray-mid);
    line-height: 1.7;
}

.infra-equipment {
    background: var(--navy);
    border-radius: 20px;
    padding: 64px 5%;
    margin-top: 80px;
}

.infra-equipment h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.infra-equipment h2 em {
    font-style: italic;
    color: var(--accent);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s;
}

.equipment-item:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.3);
}

.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.equipment-item h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 500;
}

.equipment-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ====== ABOUT SECTION (HOME) ====== */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-visual {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '+';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40vw;
    color: rgba(255, 255, 255, 0.02);
    right: -10%;
    bottom: -20%;
    line-height: 1;
}

.about-nums {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.about-num-item {
    text-align: center;
}

.about-num-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
}

.about-num-item .desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.about-content {
    background: var(--cream);
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 em {
    font-style: italic;
    color: var(--teal);
}

.about-content p {
    color: var(--gray-mid);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.about-list li {
    font-size: 0.88rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list li::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

/* ====== QUICK SERVICES (HOME) ====== */
.quick-services {
    padding: 80px 5%;
    background: var(--white);
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.qs-item {
    text-align: center;
    padding: 36px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s;
}

.qs-item:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.2);
}

.qs-item:hover .qs-icon {
    background: rgba(255, 255, 255, 0.1);
}

.qs-item:hover .qs-name {
    color: var(--white);
}

.qs-item:hover .qs-count {
    color: rgba(255, 255, 255, 0.5);
}

.qs-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    transition: background 0.3s;
}

.qs-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.qs-count {
    font-size: 0.75rem;
    color: var(--gray-mid);
    margin-top: 4px;
    transition: color 0.3s;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    background: var(--navy);
    padding: 80px 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: background 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-name {
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 500;
}

.author-dept {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ====== CONTACT STRIP ====== */
.contact-strip {
    background: linear-gradient(135deg, var(--accent) 0%, #b8973e 100%);
    padding: 64px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--navy);
}

.contact-strip p {
    color: rgba(10, 22, 40, 0.65);
    margin-top: 6px;
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-dark:hover {
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* ====== FOOTER ====== */
footer {
    background: #060e1c;
    padding: 64px 5% 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.accreditations {
    display: flex;
    gap: 12px;
    align-items: center;
}

.accred-badge {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

/* ====== APPOINTMENT MODAL ====== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    width: min(540px, 90vw);
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.modal p {
    color: var(--gray-mid);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--gray-light);
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .about-strip {
        grid-template-columns: 1fr;
    }

    .facilities-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        bottom: 32px;
        gap: 28px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .infra-timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        gap: 24px;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .contact-strip {
        text-align: center;
        justify-content: center;
    }

    .about-content {
        padding: 40px 24px;
    }

    .about-visual {
        padding: 40px 24px;
    }
}