/* ===================================================
   CYPHER IPT 2026 - Custom Stylesheet
   Color Scheme: Navy Blue, White, Gold
   =================================================== */

/* --- CSS Variables --- */
:root {
    --navy: #0B1D3A;
    --navy-dark: #061325;
    --navy-light: #15305A;
    --navy-mid: #0F2847;
    --gold: #C9A84C;
    --gold-light: #D9BC6E;
    --gold-dark: #A88B3D;
    --white: #FFFFFF;
    --off-white: #F4F6F9;
    --gray-light: #E2E8F0;
    --text-dark: #1A1A2E;
    --text-muted: #64748B;
    --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
    --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.1);
    --shadow-lg: 0 10px 40px rgba(11, 29, 58, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

::selection {
    background: var(--gold);
    color: var(--navy-dark);
}

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

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

a:hover {
    color: var(--gold);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0;
}

.section-label-gold {
    color: var(--gold-light);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-padding {
    padding: 5rem 0;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

.text-gold {
    color: var(--gold) !important;
}

/* --- Navbar --- */
#mainNav {
    padding: 0.75rem 0;
    background: rgba(11, 29, 58, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
    z-index: 1050;
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    background: rgba(6, 19, 37, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

#mainNav.scrolled .nav-logo {
    height: 38px;
}

#mainNav .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: var(--gold);
}

#mainNav .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.navbar-toggler {
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.3);
}

/* --- Buttons --- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-navy:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-link-gold {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-link-gold:hover {
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.btn-link-gold i {
    transition: transform 0.3s ease;
}

.btn-link-gold:hover i {
    transform: translateX(4px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 19, 37, 0.85) 0%,
        rgba(11, 29, 58, 0.75) 50%,
        rgba(6, 19, 37, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-details i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.hero-divider {
    color: var(--gold);
    opacity: 0.5;
    margin: 0 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 0.75rem 2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
}

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

.hero-topic-badge {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-topic-badge:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.hero-topic-badge i {
    color: var(--gold-light);
    font-size: 1rem;
}

/* --- Page Header (for inner pages) --- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* --- Section Variants --- */
.bg-light {
    background-color: var(--off-white) !important;
}

.section-navy {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-mid));
    position: relative;
    overflow: hidden;
}

.section-navy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* --- Focus Area Cards --- */
.focus-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 29, 58, 0.06);
    transition: var(--transition);
    height: 100%;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.2);
}

.focus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.focus-card:hover .focus-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-color: var(--gold);
}

.focus-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.focus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Announcement Cards --- */
.announcement-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 29, 58, 0.06);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.announcement-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.announcement-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.announcement-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex: 1;
}

/* --- Schedule Cards --- */
.schedule-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.schedule-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
}

.schedule-day {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.schedule-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.schedule-card h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.schedule-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.schedule-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* --- Highlight Cards --- */
.highlight-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    background: var(--off-white);
}

.highlight-icon {
    font-size: 2.25rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.highlight-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Venue Section --- */
.venue-details {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.venue-details li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.venue-details i {
    color: var(--gold);
}

.venue-map-placeholder {
    background: var(--off-white);
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-md);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.venue-map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.venue-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.venue-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Partner Cards --- */
.partner-card {
    padding: 2rem 1rem;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-4px);
}

.partner-logo-placeholder {
    width: 140px;
    height: 140px;
    background: var(--off-white);
    border: 2px dashed var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.85rem;
    transition: var(--transition);
}

.partner-card:hover .partner-logo-placeholder {
    border-color: var(--gold);
    border-style: solid;
}

.partner-card h6 {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- CTA Section --- */
.section-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 168, 76, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* --- 2025 Conference Carousel --- */
.conference-carousel {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-mid));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.carousel-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.carousel-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.carousel-image {
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    padding: 1.25rem;
    background-size: 50%;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--gold);
}

/* --- Stats Cards --- */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 29, 58, 0.06);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Resource Cards --- */
.resource-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 29, 58, 0.06);
    transition: var(--transition);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.resource-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --- Sponsor Logos --- */
.sponsor-logo-placeholder {
    width: 160px;
    height: 100px;
    background: var(--white);
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
    transition: var(--transition);
}

.sponsor-logo-placeholder:hover {
    border-color: var(--gold);
    border-style: solid;
}

/* --- Team Cards --- */
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 29, 58, 0.06);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card-tier1 {
    border-bottom: 3px solid var(--gold);
}

.team-photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--off-white), var(--gray-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2.5rem;
    color: var(--navy);
    opacity: 0.4;
    border: 3px solid rgba(201, 168, 76, 0.2);
}

.team-photo-placeholder.small {
    width: 90px;
    height: 90px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.team-photo-placeholder.xs {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.team-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 0.25rem !important;
}

.team-org {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0 !important;
}

/* --- Organizing Body Logos --- */
.org-logo-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.org-logo-card:hover {
    transform: translateY(-3px);
}

.org-logo-placeholder {
    width: 160px;
    height: 160px;
    background: var(--off-white);
    border: 2px dashed var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    transition: var(--transition);
}

.org-logo-card:hover .org-logo-placeholder {
    border-color: var(--gold);
    border-style: solid;
}

/* --- Contact Form --- */
.form-control {
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.4rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 0.15rem;
}

.contact-info-item h6 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-info-item a:hover {
    color: var(--gold);
}

/* --- Flash Messages --- */
.flash-messages {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 1040;
}

.flash-messages .alert {
    border-radius: 0;
    border: none;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: var(--gold);
    color: var(--navy-dark);
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .page-header {
        padding: 7rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    #mainNav .navbar-collapse {
        background: var(--navy-dark);
        margin-top: 0.75rem;
        padding: 1rem;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(201, 168, 76, 0.1);
    }

    #mainNav .navbar-nav .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-details {
        font-size: 0.9rem;
    }

    .hero-divider {
        display: none;
    }

    .hero-details span {
        display: block;
        text-align: center;
    }

    .hero-topic-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .carousel-placeholder {
        height: 280px;
    }

    .carousel-image {
        height: 280px;
    }

    .contact-info-card {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .section-cta h2 {
        font-size: 1.5rem;
    }
}
