:root {
    --primary-color: #0d1f2d;
    /* Dark Blue from logo */
    --secondary-color: #c9a962;
    /* Gold from logo */
    --accent-color: #1a3a4f;
    /* Lighter blue for depth */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-gold:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Header */
.site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Dynamic Scrolled Header State */
.site-header.scrolled .top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.site-header.scrolled .main-header .container {
    padding: 10px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .logo img {
    height: 60px;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.top-bar a {
    color: var(--white);
}

.top-bar i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img,
.logo .logo-image {
    height: 80px;
    /* Adjust based on actual logo ratio */
    transition: all 0.3s ease;
}

/* Text-based Mobile Logo - Hidden on Desktop */
.logo-text {
    display: none;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 31, 45, 0.8), rgba(13, 31, 45, 0.8)), url('../images/hero-bg.jpg');
    /* Need a hero bg image or fallback */
    background-color: var(--primary-color);
    /* Fallback */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-right: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.feature-card:hover h3 {
    color: var(--white);
}

/* About Preview */
.about-preview .row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-preview .col-text {
    flex: 1;
}

.about-preview .col-image {
    flex: 1;
}

.col-image .image-box {
    background-color: #eee;
    padding-top: 75%;
    /* Aspect Grid */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.col-image .image-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-item a {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}

/* Collaborator */
.collaborator-section {
    background: var(--white);
}

.collaborator-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.collaborator-video {
    justify-self: center;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    border: 1px solid #dbe3ea;
    border-radius: 8px;
    background: #08141d;
    box-shadow: 0 18px 45px rgba(13, 31, 45, 0.16);
}

.collaborator-video video {
    display: block;
    width: 100%;
    aspect-ratio: 464 / 832;
    object-fit: cover;
}

.collaborator-content {
    max-width: 680px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collaborator-content .lead {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.collaborator-content p {
    margin-bottom: 18px;
}

.collaborator-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

/* Mission Statement Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.mission-section .section-title::after {
    background-color: var(--secondary-color);
}

.mission-quote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
}

.mission-quote p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-style: italic;
    letter-spacing: 0.3px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--secondary-color);
    line-height: 1;
    opacity: 0.6;
    display: block;
}

.quote-open {
    text-align: left;
    margin-bottom: -20px;
}

.quote-close {
    text-align: right;
    margin-top: -10px;
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-quote p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .quote-mark {
        font-size: 3.5rem;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

/* Location */
.location-section .row {
    display: flex;
    gap: 40px;
}

.col-info {
    flex: 1;
}

.col-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
}

/* Footer */
.site-footer {
    background-color: #08141d;
    /* Darker than primary */
    color: #aaa;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    font-size: 0.9rem;
}

.text-link {
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* News */
.news-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.news-preview-header .section-title,
.news-preview-header .section-subtitle {
    text-align: left;
}

.news-preview-header .section-subtitle {
    margin-bottom: 0;
}

.news-preview-header .section-title::after {
    left: 0;
    transform: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.news-card {
    background: var(--white);
    border: 1px solid #e6ebf0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(13, 31, 45, 0.08);
}

.news-card-image-link {
    display: block;
}

.news-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.news-card-content {
    padding: 28px;
}

.news-card-meta {
    color: #6b7a8d;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.news-card h2,
.news-card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.news-card h3 {
    font-size: 1.45rem;
}

.news-card p:last-child {
    margin-bottom: 0;
}

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

.news-pagination {
    margin-top: 40px;
}

.news-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.news-pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5dce3;
    border-radius: 4px;
    background: var(--white);
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.news-empty-state {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

.article-hero {
    background: linear-gradient(135deg, #0d1f2d 0%, #163247 100%);
    padding: 80px 0 56px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 98, 0.24), transparent 38%);
}

.article-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 840px;
}

.article-tag {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 20px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
}

.article-hero h1,
.article-hero .lead,
.article-meta {
    color: var(--white);
}

.article-hero h1 {
    margin-bottom: 16px;
}

.article-hero .lead {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.15rem;
    opacity: 0.88;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.hero-image-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-image-wrap img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

.hero-caption {
    padding: 12px 18px;
    background: #122436;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.news-single {
    background: var(--white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}

.article-body h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 28px;
}

.pullquote {
    margin: 36px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-bg);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.55;
    color: var(--primary-color);
}

.pullquote cite {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.inline-photo,
.press-block {
    margin: 36px 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #dbe3ea;
}

.inline-photo img,
.press-block img {
    width: 100%;
    display: block;
}

.inline-photo figcaption,
.press-block-footer {
    padding: 12px 16px;
    background: var(--light-bg);
    color: #6b7a8d;
    font-size: 0.92rem;
}

.press-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.press-block-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary-color);
}

.article-video-block {
    max-width: 460px;
    margin: 36px auto;
    overflow: hidden;
    border: 1px solid #dbe3ea;
    border-radius: 6px;
    background: #08141d;
}

.article-video-block video {
    display: block;
    width: 100%;
    aspect-ratio: 464 / 832;
    object-fit: cover;
}

.article-video-block figcaption {
    padding: 12px 16px;
    background: var(--light-bg);
    color: #6b7a8d;
    font-size: 0.92rem;
}

.article-highlight {
    margin: 36px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-bg);
}

.article-highlight h3 {
    margin-bottom: 12px;
}

.article-highlight ul {
    list-style: disc;
    padding-left: 22px;
}

.article-highlight li {
    margin-bottom: 10px;
}

.article-highlight .btn {
    margin-right: 16px;
    margin-bottom: 12px;
}

.article-audio-block {
    margin: 36px 0;
    overflow: hidden;
    border: 1px solid #dbe3ea;
    border-radius: 6px;
    background: var(--light-bg);
}

.article-audio-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.article-audio-header span {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-audio-header strong {
    color: var(--white);
    text-align: right;
}

.article-audio-block audio {
    display: block;
    width: calc(100% - 36px);
    margin: 18px;
}

.article-audio-block figcaption {
    padding: 12px 16px;
    background: var(--white);
    color: #6b7a8d;
    font-size: 0.92rem;
}

.article-gallery {
    margin: 36px 0;
    overflow: hidden;
    border: 1px solid #dbe3ea;
    border-radius: 6px;
    background: var(--light-bg);
}

.article-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    align-items: start;
    background: #dbe3ea;
}

.article-gallery-column {
    display: grid;
    gap: 2px;
    align-content: start;
}

.article-gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--white);
}

.article-gallery figcaption {
    padding: 12px 16px;
    background: var(--light-bg);
    color: #6b7a8d;
    font-size: 0.92rem;
}

.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    padding: 28px;
    margin-bottom: 24px;
    background: var(--light-bg);
    border-top: 3px solid var(--secondary-color);
    border-radius: 6px;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.sidebar-card p {
    margin-bottom: 16px;
    color: #5c6b78;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
}

.sidebar-info-list li {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #d9e1e8;
}

.sidebar-info-list li:last-child {
    border-bottom: 0;
}

.sidebar-info-list .ico {
    color: var(--secondary-color);
}

.news-article-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .top-bar .contact-info {
        justify-content: center;
    }

    /* Hide image logo on mobile, show text logo */
    .logo .logo-image {
        display: none;
    }

    .logo-text {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        font-size: 2rem;
        animation: moonPulse 3s ease-in-out infinite;
    }

    @keyframes moonPulse {

        0%,
        100% {
            transform: scale(1) rotate(0deg);
            filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.6));
        }

        50% {
            transform: scale(1.1) rotate(-10deg);
            filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.9));
        }
    }

    .logo-words {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    .logo-name {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: 0.5px;
    }

    .logo-tagline {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--secondary-color);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Modern Animated Hamburger Menu */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        width: 44px;
        height: 44px;
        padding: 10px;
        position: relative;
        z-index: 100;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: absolute;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 14px;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 21px;
    }

    .mobile-menu-toggle span:nth-child(3) {
        top: 28px;
    }

    /* Hamburger to X animation */
    .mobile-menu-toggle.open span:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
        background: var(--secondary-color);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
        background: var(--secondary-color);
    }

    .site-header .logo img {
        height: 60px;
        /* Smaller logo on mobile by default */
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    /* Modern Mobile Menu */
    .main-nav ul {
        display: none;
        /* JS will toggle this */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-top: 3px solid var(--secondary-color);
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .main-nav ul.active {
        display: flex;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: block;
        padding: 18px 25px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .main-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--secondary-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background: rgba(201, 169, 98, 0.1);
        color: var(--secondary-color);
        padding-left: 35px;
    }

    .main-nav ul li a:hover::before,
    .main-nav ul li a.active::before {
        transform: translateX(0);
    }

    /* Call button in mobile menu */
    .main-nav ul li:last-child a {
        background: var(--secondary-color);
        color: white;
        margin: 15px;
        border-radius: 8px;
        text-align: center;
        font-weight: 700;
    }

    .main-nav ul li:last-child a:hover {
        background: var(--primary-color);
        padding-left: 25px;
    }

    .main-nav ul li:last-child a::before {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .about-preview .row,
    .location-section .row {
        flex-direction: column;
    }

    .collaborator-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .collaborator-content {
        max-width: none;
    }

    .collaborator-actions .btn,
    .collaborator-actions .text-link {
        width: 100%;
        text-align: center;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    .news-preview-header,
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .news-preview-header {
        align-items: flex-start;
    }

    .news-card-content {
        padding: 22px;
    }

    .article-hero {
        padding: 56px 0 40px;
    }

    .pullquote {
        padding: 22px 20px;
        font-size: 1.2rem;
    }

    .sidebar {
        position: static;
    }

    .news-article-actions .btn,
    .news-article-actions .text-link {
        width: 100%;
        text-align: center;
    }

    .article-highlight {
        padding: 24px 20px;
    }

    .article-highlight .btn,
    .article-highlight .text-link {
        width: 100%;
        text-align: center;
    }

    .article-audio-header {
        flex-direction: column;
        gap: 6px;
    }

    .article-audio-header strong {
        text-align: left;
    }

    .article-gallery-grid {
        grid-template-columns: 1fr;
    }

    .article-gallery-grid img {
        height: auto;
    }
}

/* Video Promo Section */
.video-promo-section {
    background-color: var(--light-bg);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.video-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 10px;
        right: 10px;
    }
}

/* ==========================================
   About Page Styles
   ========================================== */

/* About Page Rows */
.about-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-col-image,
.about-col-text,
.about-col-card {
    flex: 1;
    min-width: 0;
}

.about-col-card {
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Quote */
.mission-quote {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 20px;
    padding: 15px 20px;
    border-left: 4px solid var(--secondary-color);
    background: rgba(201, 169, 98, 0.1);
    border-radius: 0 8px 8px 0;
}

.highlight-text {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Doctor Card */
.doctor-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 40px 30px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 15px 40px rgba(13, 31, 45, 0.3);
}

.doctor-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.doctor-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.doctor-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.doctor-credentials {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.doctor-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Section Dividers */
.section-divider {
    padding-top: 60px;
    border-top: 1px solid #eee;
}

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

.text-left::after {
    left: 0;
    transform: none;
}

/* Certificate Section */
.certificate-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.certificate-wrapper {
    margin-top: 30px;
    display: inline-block;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.certificate-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    border-radius: 8px;
}

.certificate-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* ==========================================
   Mobile Responsive - About Page
   ========================================== */
@media (max-width: 992px) {
    .about-row {
        gap: 30px;
    }

    .doctor-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .about-col-image,
    .about-col-text,
    .about-col-card {
        width: 100%;
    }

    .about-col-image {
        order: -1;
        text-align: center;
    }

    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .section-divider {
        padding-top: 40px;
    }

    .mission-quote {
        font-size: 1.1rem;
        padding: 12px 15px;
    }

    .doctor-card {
        padding: 30px 20px;
    }

    .doctor-icon {
        font-size: 3rem;
    }

    .doctor-card h3 {
        font-size: 1.3rem;
    }

    .doctor-bio {
        font-size: 1rem;
    }

    .text-left {
        text-align: center;
    }

    .text-left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .certificate-wrapper {
        padding: 10px;
    }

    .certificate-image {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .about-row {
        gap: 25px;
        margin-bottom: 30px;
    }

    .about-image {
        max-width: 200px;
    }

    .feature-list li {
        padding: 10px 0 10px 25px;
        font-size: 0.95rem;
    }

    .mission-quote {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .doctor-card {
        padding: 25px 15px;
    }

    .doctor-icon {
        font-size: 2.5rem;
    }

    .doctor-title {
        font-size: 1rem;
    }

    .doctor-credentials {
        font-size: 0.85rem;
    }

    .section-divider {
        padding-top: 30px;
    }

    .certificate-image {
        max-height: 300px;
    }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

/* Contact page row layout */
.contact-content .row {
    display: flex;
    gap: 40px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

/* Contact page mobile responsive */
@media (max-width: 768px) {
    .contact-content .row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-content .col-info,
    .contact-content .col-form {
        padding-right: 0 !important;
    }
}

/* ==========================================
   Privacy Policy Page Styles
   ========================================== */

.privacy-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-updated {
    display: inline-block;
    background: var(--light-bg);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.privacy-document h2 {
    font-size: 1.6rem;
    margin-top: 45px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
    color: var(--primary-color);
}

.privacy-document h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.privacy-document h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.privacy-document p {
    margin-bottom: 15px;
    color: #444;
}

.privacy-document ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.privacy-document ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.privacy-document ul li:last-child {
    border-bottom: none;
}

.privacy-document ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-document a {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.privacy-document a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Info Boxes (Controller, DPC, Contact) */
.privacy-info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0 25px;
}

.privacy-info-box p {
    margin-bottom: 8px;
    color: #444;
}

.privacy-info-box p:last-child {
    margin-bottom: 0;
}

/* Data Table */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.privacy-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.privacy-table th {
    padding: 14px 18px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.privacy-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    color: #444;
    vertical-align: top;
}

.privacy-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

.privacy-table tbody tr:hover {
    background: rgba(201, 169, 98, 0.08);
}

/* Rights Grid */
.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 25px 0 30px;
}

.privacy-right-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 22px 20px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.privacy-right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.privacy-right-card h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-size: 1rem;
}

.privacy-right-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Privacy Page Mobile Responsive */
@media (max-width: 768px) {
    .privacy-document {
        line-height: 1.7;
    }

    .privacy-document h2 {
        font-size: 1.35rem;
        margin-top: 35px;
    }

    .privacy-document h3 {
        font-size: 1.1rem;
    }

    .privacy-info-box {
        padding: 15px 18px;
    }

    .privacy-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 10px 12px;
        min-width: 120px;
    }

    .privacy-rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .privacy-right-card {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .privacy-document h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .privacy-updated {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}
