/* ===== Reset & Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
/* ===== Google Fonts – Applied ===== */

/* 
 * Font Stack:
 * - Valley Sans: Primary display/hero font
 * - Montserrat: Headlines and subheadings
 * - Google Sans: Clean, modern alternative
 * - Open Sans: Body text (highly readable)
 * - Roboto: UI elements and captions
 * - Poppins: Accent text
 * - System fonts: Ultimate fallback
 */

/* Base Body */
body {
    font-family: 'Open Sans', 'Roboto', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #1e1b18;
    background: #ffffff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Google Sans', 'Valley Sans', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Hero / Display Text */
.hero-title, .hero-content h1, .page-title, .section-header h2 {
    font-family: 'Valley Sans', 'Montserrat', 'Google Sans', sans-serif;
    font-weight: 800;
}

/* Subheadings & Section Tags */
.section-tag, .hero-badge, .news-category, .event-month {
    font-family: 'Montserrat', 'Google Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation */
#primary-nav a, .btn-join, .btn-join-mobile, .nav-menu a {
    font-family: 'Montserrat', 'Google Sans', sans-serif;
    font-weight: 400;
}

/* Body & Content */
p, li, .news-excerpt, .event-excerpt, .hero-description, .about-text, .card p {
    font-family: 'Open Sans', 'Roboto', 'Poppins', sans-serif;
    font-weight: 400;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-hero, .btn-large {
    font-family: 'Montserrat', 'Google Sans', sans-serif;
    font-weight: 400;
}

/* Meta & Small Text */
.news-meta, .event-meta, .post-meta, .download-meta, .stat-label, .card-badge, .highlight-source {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Sidebar Widgets */
.sidebar-widget h4, .widget-title {
    font-family: 'Montserrat', 'Google Sans', sans-serif;
    font-weight: 500;
}

/* Forms */
input, select, textarea, button {
    font-family: 'Open Sans', 'Roboto', sans-serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION – COMPLETE
   ======================================== */

#site-header {
    background: #ffffff;
    border-bottom: 2px solid #e5dfd8;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== LOGO ===== */
.logo {
    flex-shrink: 0;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #1e1b18;
}
.logo .logo-image {
    max-height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo a:hover .logo-image {
    transform: scale(1.03);
}
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo .logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #b78850;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}
.logo .logo-text span {
    color: #f43e33;
    font-weight: 800;
}
.logo .logo-tagline {
    font-size: 0.6rem;
    font-weight: 400;
    color: #1e1b18;
    letter-spacing: 0.5px;
    margin-top: 1px;
    text-transform: uppercase;
}
.logo .logo-tagline::before {
    content: '✦ ';
    font-size: 0.5rem;
}

/* ===== DESKTOP JOIN BUTTON ===== */
.btn-join {
    display: inline-block;
    background: #f43e33;
    color: #ffffff !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}
.btn-join:hover {
    background: #d62c22;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 62, 51, 0.35);
    color: #ffffff !important;
}

/* ===== MOBILE JOIN BUTTON (inside menu) ===== */
.btn-join-mobile {
    display: none;
    background: #f43e33;
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
}
.btn-join-mobile:hover {
    background: #d62c22;
    color: #ffffff !important;
}

/* ===== NAVIGATION ===== */
#primary-nav {
    display: flex;
    align-items: center;
}
#primary-nav .nav-menu,
#primary-nav ul {
    display: flex;
    align-items: center;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2px;
}
#primary-nav .nav-menu li,
#primary-nav ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}
#primary-nav .nav-menu li a,
#primary-nav ul li a {
    display: block;
    padding: 8px 18px;
    color: #1e1b18;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
#primary-nav .nav-menu li a::after,
#primary-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f43e33;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}
#primary-nav .nav-menu li a:hover::after,
#primary-nav ul li a:hover::after {
    width: 60%;
}
#primary-nav .nav-menu li a:hover,
#primary-nav ul li a:hover {
    background: #f8f5f0;
    color: #f43e33;
}
#primary-nav .nav-menu li.current-menu-item a,
#primary-nav ul li.current-menu-item a {
    background: #f43e33;
    color: #ffffff;
}
#primary-nav .nav-menu li.current-menu-item a::after,
#primary-nav ul li.current-menu-item a::after {
    background: #ffffff;
    width: 60%;
}
#primary-nav .nav-menu li.current-menu-item a:hover,
#primary-nav ul li.current-menu-item a:hover {
    background: #d62c22;
}

/* ===== DROPDOWNS (Desktop) ===== */
#primary-nav .nav-menu li ul,
#primary-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0 !important;
    flex-direction: column;
    gap: 0 !important;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
#primary-nav .nav-menu li:hover > ul,
#primary-nav ul li:hover > ul {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#primary-nav .nav-menu li ul li,
#primary-nav ul li ul li {
    list-style: none !important;
}
#primary-nav .nav-menu li ul li a,
#primary-nav ul li ul li a {
    padding: 10px 22px;
    border-radius: 0;
    font-size: 0.9rem;
}
#primary-nav .nav-menu li ul li a::after,
#primary-nav ul li ul li a::after {
    display: none;
}
#primary-nav .nav-menu li ul li a:hover,
#primary-nav ul li ul li a:hover {
    background: #f8f5f0;
}

/* ===== MOBILE MENU TOGGLE (HAMBURGER – SPACED) ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 8px;      /* Increased padding for bigger touch area */
    flex-direction: column;
    gap: 7px;              /* Increased gap between bars */
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.3s ease;
    border-radius: 8px;
}
.menu-toggle:hover {
    background: rgba(0,0,0,0.05);
    transform: scale(1.05);
}
.menu-toggle .bar {
    display: block;
    width: 30px;           /* Slightly wider bars */
    height: 3.5px;         /* Slightly thicker bars */
    background: #1e1b18;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 8px);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* ========================================
   RESPONSIVE – TABLETS & MOBILE
   ======================================== */

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    .btn-join {
        display: none !important;
    }
    .btn-join-mobile {
        display: block;
    }

    #primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background: #ffffff;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
        border-left: 2px solid #e5dfd8;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        flex-direction: column;
        align-items: stretch;
    }
    #primary-nav.open {
        transform: translateX(0);
        pointer-events: auto;
        opacity: 1;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
        animation: fadeInOverlay 0.3s ease forwards;
    }
    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    #primary-nav .nav-menu,
    #primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 6px !important;
    }
    #primary-nav .nav-menu li,
    #primary-nav ul li {
        width: 100%;
        opacity: 0;
        animation: fadeInNav 0.3s ease forwards;
    }
    #primary-nav.open .nav-menu li,
    #primary-nav.open ul li {
        opacity: 1;
    }
    #primary-nav .nav-menu li:nth-child(1),
    #primary-nav ul li:nth-child(1) { animation-delay: 0.05s; }
    #primary-nav .nav-menu li:nth-child(2),
    #primary-nav ul li:nth-child(2) { animation-delay: 0.10s; }
    #primary-nav .nav-menu li:nth-child(3),
    #primary-nav ul li:nth-child(3) { animation-delay: 0.15s; }
    #primary-nav .nav-menu li:nth-child(4),
    #primary-nav ul li:nth-child(4) { animation-delay: 0.20s; }
    #primary-nav .nav-menu li:nth-child(5),
    #primary-nav ul li:nth-child(5) { animation-delay: 0.25s; }
    #primary-nav .nav-menu li:nth-child(6),
    #primary-nav ul li:nth-child(6) { animation-delay: 0.30s; }

    @keyframes fadeInNav {
        from { opacity: 0; transform: translateX(-10px); }
        to { opacity: 1; transform: translateX(0); }
    }

    #primary-nav .nav-menu li a,
    #primary-nav ul li a {
        padding: 12px 16px;
        border-radius: 6px;
        font-size: 1rem;
        width: 100%;
        display: block;
    }
    #primary-nav .nav-menu li a::after,
    #primary-nav ul li a::after {
        display: none;
    }

    #primary-nav .nav-menu li ul,
    #primary-nav ul li ul {
        position: static;
        box-shadow: none;
        padding: 0 0 0 16px !important;
        border-radius: 0;
        background: transparent;
        min-width: auto;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    #primary-nav .nav-menu li:hover > ul,
    #primary-nav ul li:hover > ul {
        display: none;
    }
    #primary-nav .nav-menu li ul.open,
    #primary-nav ul li ul.open {
        display: flex;
    }
    #primary-nav .nav-menu li ul li a,
    #primary-nav ul li ul li a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .menu-toggle.open {
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 576px) {
    #primary-nav {
        width: 100%;
        max-width: 100%;
        padding: 70px 20px 20px;
    }
    .logo .logo-image {
        max-height: 38px;
    }
    .logo .logo-text {
        font-size: 0.9rem;
    }
    .logo .logo-tagline {
        font-size: 0.45rem;
    }
    .logo a {
        gap: 10px;
    }
    .menu-toggle {
        padding: 10px 6px;
        gap: 6px;
    }
    .menu-toggle .bar {
        width: 26px;
        height: 3px;
    }
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 7px);
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* ===== EXTRA SMALL PHONES ===== */
@media (max-width: 400px) {
    .logo .logo-image {
        max-height: 32px;
    }
    .logo .logo-text {
        font-size: 0.6rem;
    }
    .logo .logo-tagline {
        font-size: 0.4rem;
    }
    .logo a {
        gap: 8px;
    }
    #primary-nav {
        padding: 60px 16px 16px;
    }
    .menu-toggle {
        padding: 8px 4px;
        gap: 5px;
    }
    .menu-toggle .bar {
        width: 22px;
        height: 2.5px;
    }
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* ===== Colors ===== */
:root {
    --brown: #b78850;
    --brown-dark: #9a6f3a;
    --red: #f43e33;
    --red-dark: #d62c22;
    --white: #ffffff;
    --gray-100: #f8f5f0;
    --gray-200: #e5dfd8;
    --gray-600: #6b6359;
    --gray-900: #1e1b18;
}

/* ===== Buttons ===== */
.btn-primary, .btn-join {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover, .btn-join:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--brown);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}



/* ========================================
   LANDING PAGE – RESTYLED
   ======================================== */

/* ===== HERO ===== */
.home-hero {
    position: relative;
    padding: 90px 0 70px;
    background: linear-gradient(165deg, #f8f5f0 0%, #ffffff 60%, #f0ebe4 100%);
    overflow: hidden;
}
.home-hero .hero-bg-shape {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(183,136,80,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.home-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content .hero-badge {
    display: inline-block;
    background: rgba(244,62,51,0.08);
    color: #f43e33;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(244,62,51,0.15);
    margin-bottom: 14px;
}
.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.08;
    color: #1e1b18;
    margin: 0 0 18px;
}
.hero-content h1 span {
    color: #f43e33;
    position: relative;
}
.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(244,62,51,0.15);
    border-radius: 4px;
    z-index: -1;
}
.hero-content p {
    font-size: 1.15rem;
    color: #6b6359;
    max-width: 520px;
    line-height: 1.8;
    margin: 0 0 28px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.btn-hero {
    padding: 14px 36px;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(244,62,51,0.25);
    transition: all 0.3s ease;
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(244,62,51,0.35);
}
.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #b78850;
    border-radius: 50px;
    font-weight: 600;
    color: #b78850;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: #b78850;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(183,136,80,0.25);
}
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 2px solid #e5dfd8;
}
.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f43e33;
}
.stat-label {
    font-size: 0.85rem;
    color: #6b6359;
}

.hero-symbol {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-symbol .mirror-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.hero-symbol .codk-mirror-svg {
    display: block;
    width: 100%;
    max-width: 800px;        /* was 460px */
    max-height: 860px;       /* was 520px */
    filter: drop-shadow(0 20px 40px rgba(120, 80, 30, 0.28));
    animation: codkMirrorFloat 6s ease-in-out infinite;
}

@keyframes codkMirrorFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Hide the old CSS-built mirror if any styles linger */
.mirror-frame,
.mirror-inner {
    display: none !important;
}

/* Keep the floating emoji icons positioned around the SVG */
.hero-symbol .floating-docs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-symbol .floating-docs .float-icon {
    position: absolute;
}
.hero-symbol .floating-docs .float-icon:nth-child(1) { top: 8%;   left: 6%;  }
.hero-symbol .floating-docs .float-icon:nth-child(2) { top: 45%;  right: 4%; }
.hero-symbol .floating-docs .float-icon:nth-child(3) { bottom: 8%; left: 12%; }
.floating-docs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.floating-docs .float-icon {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.25;
    animation: floatIcon 6s ease-in-out infinite;
}
.floating-docs .float-icon:nth-child(1) { top: 5%; right: -10%; animation-delay: 0s; }
.floating-docs .float-icon:nth-child(2) { bottom: 10%; left: -12%; animation-delay: 2s; }
.floating-docs .float-icon:nth-child(3) { top: 40%; right: -15%; animation-delay: 4s; }
@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}
.codk-mirror-text text {
    font-family: "Poppins", "Montserrat", system-ui, sans-serif;
    dominant-baseline: middle;
    paint-order: stroke;
    stroke: rgba(255, 240, 210, 0.35);
    stroke-width: 1.5;
}


/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .section-tag {
    display: inline-block;
    background: rgba(244,62,51,0.08);
    color: #f43e33;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(244,62,51,0.12);
    margin-bottom: 8px;
}
.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e1b18;
    margin: 0 0 8px;
}
.section-header h2 span {
    color: #f43e33;
}
.section-header p {
    color: #6b6359;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Objectives Grid ===== */
.home-objectives {
    padding: 70px 0;
    background: #ffffff;
}
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.objective-card {
    background: #f8f5f0;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.objective-card:hover {
    background: #ffffff;
    border-color: #b78850;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.objective-card .obj-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 10px;
}
.objective-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 4px;
}
.objective-card p {
    font-size: 0.85rem;
    color: #6b6359;
    margin: 0;
    line-height: 1.5;
}

/* ===== Why COD-K ===== */
.home-why {
    padding: 70px 0;
    background: #f8f5f0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5dfd8;
    transition: all 0.3s ease;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: #b78850;
}
.why-card .why-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 12px;
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 6px;
}
.why-card p {
    font-size: 0.9rem;
    color: #6b6359;
    margin: 0;
    line-height: 1.6;
}

/* ===== News ===== */
.home-news {
    padding: 70px 0;
    background: #ffffff;
}
.home-news .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.home-news .news-card {
    background: #f8f5f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #e5dfd8;
}
.home-news .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border-color: #b78850;
    background: #ffffff;
}
.home-news .news-image {
    display: block;
    height: 190px;
    overflow: hidden;
}
.home-news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.home-news .news-card:hover .news-image img {
    transform: scale(1.04);
}
.home-news .news-image-placeholder {
    height: 190px;
    background: linear-gradient(135deg, #e5dfd8, #d5cfc5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #b78850;
}
.home-news .news-body {
    padding: 20px 22px 24px;
}
.home-news .news-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #6b6359;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.home-news .news-date::before {
    content: "📅 ";
}
.home-news .news-category {
    background: #ffffff;
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 600;
    color: #b78850;
    font-size: 0.7rem;
}
.home-news .news-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}
.home-news .news-body h3 a {
    color: #1e1b18;
    text-decoration: none;
    transition: color 0.3s;
}
.home-news .news-body h3 a:hover {
    color: #f43e33;
}
.home-news .news-excerpt {
    font-size: 0.9rem;
    color: #6b6359;
    line-height: 1.6;
    margin: 0 0 14px;
}
.home-news .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #f43e33;
    text-decoration: none;
    transition: gap 0.3s;
}
.home-news .read-more span {
    transition: transform 0.3s;
}
.home-news .read-more:hover span {
    transform: translateX(4px);
}

/* ===== Events ===== */
.home-events {
    padding: 70px 0;
    background: #f8f5f0;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.event-card {
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid #e5dfd8;
    transition: all 0.3s ease;
    align-items: flex-start;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: #b78850;
}
.event-date-box {
    flex-shrink: 0;
    background: #f43e33;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.event-day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.event-details {
    flex: 1;
}
.event-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
}
.event-details h3 a {
    color: #1e1b18;
    text-decoration: none;
    transition: color 0.3s;
}
.event-details h3 a:hover {
    color: #f43e33;
}
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #6b6359;
    margin-bottom: 8px;
}
.event-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.event-excerpt {
    font-size: 0.9rem;
    color: #6b6359;
    line-height: 1.6;
    margin: 0 0 10px;
}
.event-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: #f43e33;
    text-decoration: none;
    transition: color 0.3s;
}
.event-link:hover {
    color: #d62c22;
}

/* ===== Section CTAs ===== */
.section-cta {
    text-align: center;
    margin-top: 35px;
}
.section-cta .btn-secondary {
    padding: 12px 32px;
    border-radius: 50px;
    background: #b78850;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.section-cta .btn-secondary:hover {
    background: #9a6f3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(183,136,80,0.25);
}
.no-content {
    text-align: center;
    color: #6b6359;
    font-size: 1.05rem;
    padding: 30px 0;
}

/* ===== CTA ===== */
.home-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #b78850, #9a6f3a);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.home-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.home-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.home-cta .btn-large {
    padding: 18px 50px;
    font-size: 1.15rem;
    background: #ffffff;
    color: #9a6f3a;
    border: 2px solid transparent;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.home-cta .btn-large:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .home-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 28px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-news .news-grid,
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .home-cta h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 60px 0 40px;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .objectives-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-news .news-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    .event-card {
        flex-direction: column;
        align-items: stretch;
    }
    .event-date-box {
        flex-direction: row;
        gap: 8px;
        padding: 8px 16px;
        min-width: auto;
        justify-content: center;
    }
    .event-day {
        font-size: 1.2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .home-cta h2 {
        font-size: 2rem;
    }
    .home-cta .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn-hero, .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 1.7rem;
    }
    .home-news .news-image {
        height: 160px;
    }
    .home-news .news-body {
        padding: 16px;
    }
    .event-card {
        padding: 16px;
    }
    .home-cta h2 {
        font-size: 1.7rem;
    }
    .mirror-symbol {
        width: 160px;
        height: 200px;
    }
    .mirror-inner {
        font-size: 1.1rem;
    }
}

/* ===== News Grid ===== */
.news-grid, .membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}
.news-card, .card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover, .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.news-card h3, .card h3 {
    margin: 10px 0;
}
.read-more {
    color: var(--red);
    font-weight: 600;
}

/* ========================================
   JOIN / REGISTRATION PAGE
   ======================================== */

.page-join {
    padding: 50px 0 70px;
    background: #f8f5f0;
}

/* Header */
.join-header {
    text-align: center;
    margin-bottom: 45px;
}
.join-badge {
    display: inline-block;
    background: rgba(244, 62, 51, 0.08);
    color: #f43e33;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(244, 62, 51, 0.12);
    margin-bottom: 10px;
}
.join-header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e1b18;
    margin: 0 0 8px;
}
.join-header h1 span {
    color: #f43e33;
}
.join-header p {
    font-size: 1.1rem;
    color: #6b6359;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Container */
.join-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 45px 45px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5dfd8;
}

/* Form Sections */
.form-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0ebe4;
}
.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e1b18;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f8f5f0;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f43e33;
    border-radius: 2px;
}
.section-hint {
    font-size: 0.9rem;
    color: #6b6359;
    margin: -6px 0 16px;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e1b18;
    margin-bottom: 5px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e5dfd8;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #ffffff;
    color: #1e1b18;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #b78850;
    box-shadow: 0 0 0 4px rgba(183, 136, 80, 0.1);
}
.form-group input::placeholder {
    color: #b5aea6;
}
.form-group .hint {
    display: block;
    font-size: 0.75rem;
    color: #6b6359;
    margin-top: 4px;
}

/* Conditional field */
.form-group.conditional {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e5dfd8;
}
.form-group.conditional.visible {
    display: block;
}

/* ===== Checkbox Group ===== */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1e1b18;
    padding: 6px 0;
    transition: color 0.2s;
}
.checkbox-option:hover {
    color: #f43e33;
}
.checkbox-option input[type="checkbox"] {
    display: none;
}
.checkbox-option .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #c9c0b7;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}
.checkbox-option input[type="checkbox"]:checked + .checkmark {
    background: #f43e33;
    border-color: #f43e33;
}
.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-option .label-text {
    user-select: none;
}
.checkbox-option.select-all {
    font-weight: 600;
    color: #b78850;
    grid-column: 1 / -1;
    padding: 8px 0 12px;
    border-bottom: 1px solid #f0ebe4;
    margin-bottom: 4px;
}
.checkbox-option.select-all .checkmark {
    border-color: #b78850;
}
.checkbox-option.select-all input[type="checkbox"]:checked + .checkmark {
    background: #b78850;
    border-color: #b78850;
}

/* ===== Submit Button ===== */
.form-actions {
    margin-top: 30px;
    text-align: center;
}
.btn-submit {
    padding: 16px 50px;
    font-size: 1.05rem;
    background: #f43e33;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(244, 62, 51, 0.25);
}
.checkbox-option.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    position: relative;
}
.checkbox-option.disabled .label-text {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(0,0,0,0.4);
}
.checkbox-option.disabled input[type="checkbox"] {
    cursor: not-allowed;
}
/* Small hint shown on hover (uses the `title` attribute we set in JS) */
.checkbox-option.disabled::after {
    content: "ℹ";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    opacity: 0.7;
}
.btn-submit:hover {
    background: #d62c22;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 62, 51, 0.35);
}
.btn-submit:active {
    transform: translateY(-1px);
}

#form-message {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}
#form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
#form-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-footer-note {
    font-size: 0.85rem;
    color: #6b6359;
    margin-top: 18px;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .page-join {
        padding: 30px 0 50px;
    }
    .join-header h1 {
        font-size: 2.2rem;
    }
    .join-form {
        padding: 25px 20px 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .checkbox-option.select-all {
        grid-column: auto;
    }
    .btn-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .join-header h1 {
        font-size: 1.8rem;
    }
    .join-form {
        padding: 20px 16px 25px;
    }
    .section-title {
        font-size: 1rem;
    }
    .checkbox-option {
        font-size: 0.9rem;
    }
}

/* ===== Agreements Section ===== */
.agreements-section {
    margin-top: 10px;
}
.agreements-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.agreement-check {
    padding: 10px 14px;
    background: #faf8f6;
    border-radius: 8px;
    border: 1px solid #f0ebe4;
    transition: background 0.2s, border-color 0.2s;
}
.agreement-check:hover {
    background: #f5f2ee;
    border-color: #d5cfc5;
}
.agreement-check .label-text a {
    color: #f43e33;
    text-decoration: underline;
    font-weight: 500;
}
.agreement-check .label-text a:hover {
    color: #d62c22;
}
.agreement-check .label-text strong {
    color: #1e1b18;
}

/* ===== Validation Error States ===== */
.form-group.has-error input,
.form-group.has-error select {
    border-color: #f43e33 !important;
    box-shadow: 0 0 0 4px rgba(244, 62, 51, 0.1) !important;
}

.field-error {
    display: block;
    color: #f43e33;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Agreement checkboxes error */
.agreement-check.has-error {
    border-color: #f43e33 !important;
    background: #fff5f5 !important;
}
.agreement-error {
    display: block;
    color: #f43e33;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Checkbox group error */
.checkbox-group.has-error {
    border: 2px solid #f43e33;
    border-radius: 8px;
    padding: 12px 16px;
    background: #fff5f5;
}
.checkbox-group .group-error {
    display: block;
    color: #f43e33;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Success/Error messages */
#form-message {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}
#form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
#form-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ========================================
   FOOTER – COMPLETE
   ======================================== */

#site-footer {
    background: #1e1b18;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 0;
    margin-top: 0;
    border-top: 4px solid #f43e33;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Brand Column ===== */
.footer-brand h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 2px;
    letter-spacing: -0.3px;
}
.footer-brand h3 span {
    color: #f43e33;
}
.footer-brand .footer-slogan {
    color: #b78850;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 12px;
}
.footer-brand .footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 0 18px;
}
.footer-brand .footer-logo {
    margin-bottom: 12px;
}
.footer-brand .footer-logo img {
    max-height: 55px;
    width: auto;
}

/* ===== Social Icons ===== */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    background: #f43e33;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 62, 51, 0.25);
}
.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===== Footer Columns ===== */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f43e33;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}
.footer-col ul li a::before {
    content: '› ';
    color: #b78850;
    font-weight: 700;
}

/* ===== Contact List ===== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}
.footer-contact li .contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact li a:hover {
    color: #ffffff;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
    padding: 20px 0 25px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}
.footer-bottom p strong {
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-slogan {
    color: #b78850 !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-brand .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #site-footer {
        padding: 35px 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer-brand h3 {
        font-size: 1.1rem;
    }
    .footer-col h4::after {
        width: 25px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-contact li {
        font-size: 0.9rem;
    }
    .social-link {
        width: 36px;
        height: 36px;
    }
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== About Page Styles ===== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.section-header h2 span {
    color: var(--red);
}
.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.about-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(165deg, var(--gray-100) 0%, var(--white) 100%);
    overflow: hidden;
}
.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183,136,80,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content .hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0 20px;
}
.hero-content h1 span {
    color: var(--red);
}
.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 500px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
}
.hero-stats .stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===== Vision & Mission ===== */
.about-vision-mission {
    padding: 80px 0;
    background: var(--white);
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.vm-card {
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.vm-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}
.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
}
.vm-card blockquote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
    font-style: italic;
}
.vision-card {
    border-left: 5px solid var(--red);
}
.mission-card {
    border-left: 5px solid var(--brown);
}

/* ===== Constitutional Highlights ===== */
.about-highlights {
    padding: 80px 0;
    background: var(--gray-100);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.highlight-card {
    background: var(--white);
    padding: 30px 28px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.highlight-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    pointer-events: none;
}
.highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}
.highlight-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}
.highlight-source {
    font-size: 0.8rem;
    color: var(--brown);
    font-weight: 600;
}

/* ===== Timeline ===== */
.about-timeline {
    padding: 80px 0;
    background: var(--white);
}
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(244,62,51,0.2);
}
.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Values ===== */
.about-values {
    padding: 80px 0;
    background: var(--gray-100);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--brown);
}
.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
}
.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* ===== Objectives ===== */
.about-objectives {
    padding: 80px 0;
    background: var(--white);
}
.objectives-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.objectives-list li {
    padding: 12px 18px;
    background: var(--gray-100);
    border-left: 4px solid var(--red);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* ===== CTA ===== */
.about-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--brown), var(--brown-dark));
    color: var(--white);
    text-align: center;
}
.about-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.about-cta .btn-primary {
    background: var(--white);
    color: var(--brown-dark);
    font-weight: 700;
}
.about-cta .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

/* ===== Scroll Animations (reveal) ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .vm-grid {
        grid-template-columns: 1fr;
    }
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .objectives-list {
        grid-template-columns: 1fr;
    }
    .about-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

/* ===== Hero ===== */
.contact-hero {
    padding: 60px 0 50px;
    background: linear-gradient(165deg, #f8f5f0 0%, #ffffff 100%);
    border-bottom: 1px solid #e5dfd8;
}
.contact-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.contact-hero-content .hero-subtitle {
    display: inline-block;
    background: #f43e33;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}
.contact-hero-content h1 span {
    color: #f43e33;
}
.contact-hero-content .hero-description {
    font-size: 1.1rem;
    color: #6b6359;
    max-width: 500px;
    line-height: 1.8;
}
.contact-hero-symbol {
    display: flex;
    justify-content: center;
}

/* ===== Contact Details Cards ===== */
.contact-details {
    padding: 60px 0;
    background: #ffffff;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.detail-card {
    background: #f8f5f0;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #b78850;
}
.detail-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.detail-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 8px;
}
.detail-card p {
    color: #6b6359;
    font-size: 0.95rem;
    margin: 2px 0;
}
.detail-card a {
    color: #6b6359;
    text-decoration: none;
    transition: color 0.3s;
}
.detail-card a:hover {
    color: #f43e33;
}

/* ===== Form & Map Section ===== */
.contact-form-section {
    padding: 70px 0;
    background: #f8f5f0;
}
.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}
.form-header .form-tag {
    display: inline-block;
    background: #f43e33;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.form-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e1b18;
}
.form-header h2 span {
    color: #f43e33;
}
.form-header p {
    color: #6b6359;
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form .form-group {
    margin-bottom: 18px;
}
.contact-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e1b18;
    margin-bottom: 5px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5dfd8;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #ffffff;
    font-family: inherit;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #b78850;
    box-shadow: 0 0 0 4px rgba(183, 136, 80, 0.12);
}
.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #f43e33;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.contact-form .btn-primary:hover {
    background: #d62c22;
    transform: translateY(-2px);
}
.contact-form .btn-primary svg {
    transition: transform 0.3s;
}
.contact-form .btn-primary:hover svg {
    transform: translateX(4px) rotate(-8deg);
}
.contact-response {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    display: none;
}
.contact-response.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.contact-response.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Map */
.map-wrapper {
    background: #ffffff;
    padding: 30px 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}
.map-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 15px;
}
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background: #e5dfd8;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.map-address {
    margin-top: 12px;
    color: #6b6359;
    font-size: 0.9rem;
}
.map-address strong {
    color: #1e1b18;
}

/* ===== Social Media ===== */
.contact-social {
    padding: 70px 0;
    background: #ffffff;
}
.social-header {
    text-align: center;
    margin-bottom: 45px;
}
.social-tag {
    display: inline-block;
    background: #b78850;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.social-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e1b18;
}
.social-header h2 span {
    color: #f43e33;
}
.social-header p {
    color: #6b6359;
    font-size: 1.05rem;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.social-card {
    background: #f8f5f0;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: 1px solid transparent;
}
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #b78850;
    background: #ffffff;
}
.social-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 8px;
}
.social-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 2px;
}
.social-card p {
    font-size: 0.8rem;
    color: #6b6359;
    margin: 0;
}

/* ===== Hours Section ===== */
.contact-hours {
    padding: 60px 0;
    background: #f8f5f0;
}
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.hours-info,
.emergency-info {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}
.hours-info h3,
.emergency-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5dfd8;
}
.hours-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-info ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #6b6359;
    border-bottom: 1px solid #f8f5f0;
}
.hours-info ul li:last-child {
    border-bottom: none;
}
.hours-info ul li span:first-child {
    font-weight: 500;
    color: #1e1b18;
}
.emergency-info p {
    color: #6b6359;
    margin: 5px 0;
}
.emergency-phone {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 10px 0 5px;
}
.emergency-phone a {
    color: #f43e33;
    text-decoration: none;
}
.emergency-phone a:hover {
    color: #d62c22;
}
.emergency-note {
    font-size: 0.85rem;
    color: #6b6359;
    font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .contact-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-hero-content .hero-description {
        margin: 0 auto;
    }
    .form-map-grid {
        grid-template-columns: 1fr;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 220px;
    }
    .emergency-phone {
        font-size: 1.4rem;
    }
    .contact-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   STYLISH DOWNLOADS HERO
   ======================================== */

.downloads-hero {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(165deg, #f8f5f0 0%, #ffffff 50%, #f0ebe4 100%);
    overflow: hidden;
    border-bottom: 1px solid #e5dfd8;
}

/* --- Background Shapes --- */
.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: #f43e33;
    top: -200px;
    right: -150px;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: #b78850;
    bottom: -150px;
    left: -100px;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background: #f43e33;
    top: 20%;
    left: 40%;
    opacity: 0.04;
}
.shape-4 {
    width: 300px;
    height: 300px;
    background: #b78850;
    bottom: 10%;
    right: 20%;
    opacity: 0.04;
}

/* --- Hero Layout --- */
.downloads-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- Hero Content --- */
.hero-content {
    animation: heroFadeIn 1s ease forwards;
}
.hero-badge {
    display: inline-block;
    background: rgba(244, 62, 51, 0.1);
    color: #f43e33;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(244, 62, 51, 0.15);
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    color: #1e1b18;
    margin: 0 0 16px;
}
.hero-title span {
    color: #f43e33;
    position: relative;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(244, 62, 51, 0.15);
    border-radius: 4px;
    z-index: -1;
}
.hero-description {
    font-size: 1.15rem;
    color: #6b6359;
    max-width: 520px;
    line-height: 1.8;
    margin: 0 0 30px;
}

/* --- Hero Actions --- */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: #f43e33;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(244, 62, 51, 0.3);
}
.btn-hero:hover {
    background: #d62c22;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 62, 51, 0.4);
    gap: 16px;
}
.btn-hero svg {
    transition: transform 0.3s ease;
}
.btn-hero:hover svg {
    transform: translateY(3px);
}
.hero-stats-text {
    font-size: 0.95rem;
    color: #6b6359;
}
.hero-stats-text strong {
    color: #1e1b18;
    font-size: 1.2rem;
}

/* --- Mirror Symbol (Glass Effect) --- */
.hero-symbol {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFadeIn 1.2s ease forwards;
}
.mirror-symbol.glass {
    width: 280px;
    height: 360px;
    position: relative;
}
.mirror-symbol.glass .mirror-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(183, 136, 80, 0.9), rgba(154, 111, 58, 0.95));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    padding: 20px;
    box-shadow: 
        0 30px 80px rgba(183, 136, 80, 0.3),
        inset 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}
.mirror-symbol.glass .mirror-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.mirror-symbol.glass .mirror-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    pointer-events: none;
}
.mirror-symbol.glass .mirror-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #9a6f3a;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.mirror-symbol.glass .mirror-text small {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f43e33;
    letter-spacing: 1px;
    margin-top: 6px;
}
.mirror-symbol.glass .mirror-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(135deg, rgba(183, 136, 80, 0.2), rgba(244, 62, 51, 0.2));
    filter: blur(20px);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* --- Floating Document Icons --- */
.hero-floating-docs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.float-doc {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: floatDoc 6s ease-in-out infinite;
}
.float-doc.doc-1 {
    top: -10%;
    right: -15%;
    animation-delay: 0s;
    font-size: 2.5rem;
    opacity: 0.3;
}
.float-doc.doc-2 {
    bottom: -5%;
    left: -10%;
    animation-delay: 1.5s;
    font-size: 2.2rem;
    opacity: 0.25;
}
.float-doc.doc-3 {
    top: 30%;
    right: -20%;
    animation-delay: 3s;
    font-size: 1.8rem;
    opacity: 0.2;
}
.float-doc.doc-4 {
    bottom: 30%;
    left: -15%;
    animation-delay: 4.5s;
    font-size: 2rem;
    opacity: 0.2;
}
@keyframes floatDoc {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* --- Animations --- */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .downloads-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-description {
        margin: 0 auto 30px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .mirror-symbol.glass {
        width: 220px;
        height: 280px;
    }
    .shape-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
    .shape-2 { width: 250px; height: 250px; bottom: -80px; left: -80px; }
    .float-doc { display: none; }
}

@media (max-width: 768px) {
    .downloads-hero {
        padding: 50px 0 40px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-title span::after {
        height: 6px;
        bottom: 2px;
    }
    .hero-description {
        font-size: 1rem;
    }
    .btn-hero {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .mirror-symbol.glass {
        width: 180px;
        height: 230px;
    }
    .mirror-symbol.glass .mirror-text {
        font-size: 1.2rem;
    }
    .mirror-symbol.glass .mirror-text small {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    .mirror-symbol.glass {
        width: 150px;
        height: 190px;
    }
    .mirror-symbol.glass .mirror-text {
        font-size: 1rem;
    }
    .mirror-symbol.glass .mirror-text small {
        font-size: 0.6rem;
    }
}

/* ========================================
   DOWNLOADS PAGE – TABS
   ======================================== */

.downloads-main {
    padding: 40px 0 70px;
    background: #f8f5f0;
}

/* Tabs Navigation */
.downloads-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding: 5px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e5dfd8;
}

.tab-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6b6359;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.tab-btn:hover {
    background: #f8f5f0;
    color: #1e1b18;
}
.tab-btn.active {
    background: #f43e33;
    color: #ffffff;
}
.tab-btn .tab-count {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.7;
}
.tab-btn.active .tab-count {
    opacity: 0.9;
}

/* Search */
.downloads-search {
    position: relative;
    margin-bottom: 30px;
    max-width: 400px;
}
.downloads-search input {
    width: 100%;
    padding: 12px 18px 12px 46px;
    border: 2px solid #e5dfd8;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: #ffffff;
}
.downloads-search input:focus {
    outline: none;
    border-color: #b78850;
}
.downloads-search .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #6b6359;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Download Card */
.download-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid #e5dfd8;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: start;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #b78850;
}
.download-card.hidden {
    display: none;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px dashed #e5dfd8;
}
.no-results p {
    color: #6b6359;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .downloads-tabs {
        gap: 6px;
        padding: 4px;
    }
    .tab-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    .download-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
    .download-icon {
        text-align: center;
    }
    .download-meta {
        justify-content: center;
    }
    .download-action {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .downloads-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .tab-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .download-card {
        padding: 18px 16px;
    }
}

/* ========================================
   NEWS PAGE – MODERN & STYLISH
   ======================================== */

/* ===== Hero ===== */
.news-hero {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(165deg, #f8f5f0 0%, #ffffff 50%, #f0ebe4 100%);
    border-bottom: 1px solid #e5dfd8;
    overflow: hidden;
}
.news-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 62, 51, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.news-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.news-hero .hero-subtitle {
    display: inline-block;
    background: rgba(244, 62, 51, 0.1);
    color: #f43e33;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(244, 62, 51, 0.15);
}
.news-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    color: #1e1b18;
    margin: 0 0 16px;
}
.news-hero h1 span {
    color: #f43e33;
    position: relative;
}
.news-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(244, 62, 51, 0.15);
    border-radius: 4px;
    z-index: -1;
}
.news-hero .hero-description {
    font-size: 1.15rem;
    color: #6b6359;
    max-width: 500px;
    line-height: 1.8;
    margin: 0 0 24px;
}
.news-hero .hero-symbol {
    display: flex;
    justify-content: center;
}
.news-hero .mirror-symbol {
    width: 220px;
    height: 280px;
}
.news-hero .mirror-symbol .mirror-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #b78850, #9a6f3a);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(183, 136, 80, 0.25);
}
.news-hero .mirror-symbol .mirror-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 800;
    font-size: 1.4rem;
    color: #9a6f3a;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.news-hero .mirror-symbol .mirror-inner small {
    font-size: 0.8rem;
    color: #f43e33;
    margin-top: 8px;
}

/* ===== Hero Stats ===== */
.hero-stats-bar {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}
.hero-stats-bar .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b6359;
}
.hero-stats-bar .stat-item strong {
    color: #1e1b18;
    font-size: 1.1rem;
}
.hero-stats-bar .stat-item .stat-icon {
    font-size: 1.2rem;
}

/* ===== Main Content ===== */
.news-main {
    padding: 50px 0 80px;
    background: #f8f5f0;
}
.news-grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
}

/* ===== News Grid ===== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ===== News Card ===== */
.news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e5dfd8;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.news-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: border-color 0.35s ease;
    pointer-events: none;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.news-card:hover::after {
    border-color: #b78850;
}

.news-image {
    display: block;
    height: 210px;
    overflow: hidden;
    position: relative;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover .news-image img {
    transform: scale(1.06);
}
.news-image-placeholder {
    height: 210px;
    background: linear-gradient(135deg, #e5dfd8, #d5cfc5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #b78850;
}

/* News Category Badge */
.news-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(244, 62, 51, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
}

.news-body {
    padding: 22px 24px 26px;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #6b6359;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.news-date {
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-date::before {
    content: "📅";
    font-size: 0.7rem;
}
.news-category {
    background: #f8f5f0;
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 600;
    color: #b78850;
    font-size: 0.7rem;
}

.news-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.news-body h3 a {
    color: #1e1b18;
    text-decoration: none;
    transition: color 0.3s;
}
.news-body h3 a:hover {
    color: #f43e33;
}

.news-excerpt {
    font-size: 0.95rem;
    color: #6b6359;
    line-height: 1.7;
    margin: 0 0 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #f43e33;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.read-more span {
    transition: transform 0.3s ease;
}
.read-more:hover span {
    transform: translateX(4px);
}
.read-more:hover {
    gap: 14px;
}

/* ===== Pagination ===== */
.news-pagination {
    margin-top: 45px;
    text-align: center;
}
.news-pagination .page-numbers {
    display: inline-block;
    padding: 9px 18px;
    margin: 0 4px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5dfd8;
    color: #1e1b18;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}
.news-pagination .page-numbers:hover {
    background: #f8f5f0;
    border-color: #b78850;
    transform: translateY(-2px);
}
.news-pagination .page-numbers.current {
    background: #f43e33;
    border-color: #f43e33;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(244, 62, 51, 0.25);
}
.news-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: #6b6359;
}
.news-pagination .page-numbers.dots:hover {
    transform: none;
    background: transparent;
}

/* ===== Sidebar ===== */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-widget {
    background: #ffffff;
    padding: 26px 24px 30px;
    border-radius: 14px;
    border: 1px solid #e5dfd8;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}
.sidebar-widget:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1b18;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f5f0;
    position: relative;
}
.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f43e33;
    border-radius: 2px;
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f5f0;
    transition: padding-left 0.3s ease;
}
.sidebar-widget ul li:last-child {
    border-bottom: none;
}
.sidebar-widget ul li:hover {
    padding-left: 6px;
}
.sidebar-widget ul li a {
    color: #1e1b18;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
.sidebar-widget ul li a:hover {
    color: #f43e33;
}
.sidebar-widget ul li .post-date {
    display: block;
    font-size: 0.75rem;
    color: #6b6359;
    font-weight: 400;
}
.sidebar-widget ul li .cat-count {
    font-size: 0.75rem;
    color: #6b6359;
    font-weight: 400;
}

/* Search Widget */
.widget_search form {
    display: flex;
    gap: 8px;
}
.widget_search input[type="search"] {
    flex: 1;
    padding: 11px 16px;
    border: 2px solid #e5dfd8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}
.widget_search input[type="search"]:focus {
    outline: none;
    border-color: #b78850;
    box-shadow: 0 0 0 4px rgba(183, 136, 80, 0.1);
}
.widget_search button {
    padding: 10px 18px;
    background: #b78850;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.widget_search button:hover {
    background: #9a6f3a;
    transform: scale(1.03);
}

/* Newsletter Widget */
.widget_newsletter p {
    font-size: 0.9rem;
    color: #6b6359;
    margin: 0 0 16px;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    gap: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 11px 16px;
    border: 2px solid #e5dfd8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}
.newsletter-form input:focus {
    outline: none;
    border-color: #b78850;
    box-shadow: 0 0 0 4px rgba(183, 136, 80, 0.1);
}
.newsletter-form button {
    padding: 11px 22px;
    background: #f43e33;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.newsletter-form button:hover {
    background: #d62c22;
    transform: scale(1.03);
}

/* ===== No News ===== */
.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px dashed #e5dfd8;
}
.no-news .empty-icon {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 15px;
}
.no-news h3 {
    font-size: 1.6rem;
    color: #1e1b18;
    margin-bottom: 8px;
}
.no-news p {
    color: #6b6359;
    font-size: 1.05rem;
}

/* ===== CTA ===== */
.news-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #f43e33, #d62c22);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.news-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.news-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}
.news-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
}
.news-cta .btn-primary {
    background: #ffffff;
    color: #d62c22;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    position: relative;
}
.news-cta .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .news-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .news-hero .hero-description {
        margin: 0 auto;
    }
    .hero-stats-bar {
        justify-content: center;
    }
    .news-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 50px 0 40px;
    }
    .news-hero h1 {
        font-size: 2.3rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-image {
        height: 180px;
    }
    .news-image-placeholder {
        height: 180px;
    }
    .sidebar-widget {
        padding: 20px 18px;
    }
    .news-cta h2 {
        font-size: 2.1rem;
    }
    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-hero h1 {
        font-size: 1.9rem;
    }
    .news-body {
        padding: 16px 16px 20px;
    }
    .news-body h3 {
        font-size: 1.05rem;
    }
    .news-meta {
        font-size: 0.7rem;
    }
    .widget_search form,
    .newsletter-form {
        flex-direction: column;
    }
    .widget_search button,
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    .news-cta h2 {
        font-size: 1.7rem;
    }
    .news-cta .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
    }
    .news-pagination .page-numbers {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 0 2px;
    }
    .news-hero .mirror-symbol {
        width: 160px;
        height: 200px;
    }
    .news-hero .mirror-symbol .mirror-inner {
        font-size: 1.1rem;
    }
    .news-hero .mirror-symbol .mirror-inner small {
        font-size: 0.7rem;
    }
}

/* ===== Single News ===== */
.single-news {
    padding: 40px 0 60px;
    max-width: 800px;
    margin: 0 auto;
}
.single-news-header {
    text-align: center;
    margin-bottom: 30px;
}
.single-news-image {
    margin-bottom: 20px;
}
.single-news-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.single-news h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.single-news-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #6b6359;
    flex-wrap: wrap;
}
.single-news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1e1b18;
}
.single-news-content p {
    margin-bottom: 1.5em;
}
.single-news-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5dfd8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.share-links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.share-links a {
    text-decoration: none;
    font-size: 1.3rem;
    transition: transform 0.2s;
}
.share-links a:hover {
    transform: scale(1.15);
}
.single-news-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5dfd8;
}
.single-news-nav a {
    color: #1e1b18;
    text-decoration: none;
    font-weight: 500;
}
.single-news-nav a:hover {
    color: #f43e33;
}
@media (max-width: 768px) {
    .single-news h1 {
        font-size: 2rem;
    }
    .single-news-meta {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }
}

/* ========================================
   MEMBERSHIP PAGE
   ======================================== */

/* ===== Hero ===== */
.membership-hero {
    padding: 60px 0 50px;
    background: linear-gradient(165deg, #f8f5f0 0%, #ffffff 100%);
    border-bottom: 1px solid #e5dfd8;
}
.membership-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.membership-hero .hero-subtitle {
    display: inline-block;
    background: #b78850;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.membership-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}
.membership-hero h1 span {
    color: #f43e33;
}
.membership-hero .hero-description {
    font-size: 1.1rem;
    color: #6b6359;
    max-width: 500px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5dfd8;
}
.hero-stats .stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f43e33;
}
.stat-label {
    font-size: 0.85rem;
    color: #6b6359;
}
.membership-hero .hero-symbol {
    display: flex;
    justify-content: center;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    background: #f43e33;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b18;
    margin-bottom: 8px;
}
.section-header h2 span {
    color: #f43e33;
}
.section-header p {
    color: #6b6359;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Membership Cards ===== */
.membership-cards-section {
    padding: 70px 0;
    background: #f8f5f0;
}
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.membership-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px 35px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid #e5dfd8;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #b78850;
}
.membership-card.featured {
    border-color: #b78850;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(183,136,80,0.15);
}
.membership-card .card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #b78850;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.membership-card.featured .card-badge {
    background: #f43e33;
}
.membership-card .card-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
}
.membership-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 6px;
}
.membership-card .card-price {
    margin: 12px 0 16px;
    background: #f8f5f0;
    padding: 12px 10px;
    border-radius: 8px;
}
.membership-card .card-price .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #b78850;
}
.membership-card .card-price .period {
    display: block;
    font-size: 0.8rem;
    color: #6b6359;
}
.membership-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: left;
    flex: 1;
}
.membership-card .card-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #1e1b18;
    border-bottom: 1px solid #f8f5f0;
}
.membership-card .card-features li:last-child {
    border-bottom: none;
}
.membership-card .card-description {
    font-size: 0.9rem;
    color: #6b6359;
    line-height: 1.5;
    margin: 10px 0 20px;
}
.btn-card {
    display: inline-block;
    padding: 10px 28px;
    background: #b78850;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    border: 2px solid transparent;
}
.btn-card:hover {
    background: #9a6f3a;
    transform: translateY(-2px);
}
.membership-card.featured .btn-card {
    background: #f43e33;
}
.membership-card.featured .btn-card:hover {
    background: #d62c22;
}

/* ===== Benefits ===== */
.membership-benefits {
    padding: 60px 0;
    background: #ffffff;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.benefit-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5dfd8;
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}
.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 6px;
}
.benefit-item p {
    font-size: 0.9rem;
    color: #6b6359;
    margin: 0;
}

/* ===== Rights & Obligations ===== */
.membership-rights {
    padding: 70px 0;
    background: #f8f5f0;
}
.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.rights-list, .obligations-list {
    background: #ffffff;
    padding: 30px 32px;
    border-radius: 12px;
    border: 1px solid #e5dfd8;
}
.rights-list h4, .obligations-list h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f5f0;
}
.rights-list ul, .obligations-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rights-list ul li, .obligations-list ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #1e1b18;
    border-bottom: 1px solid #f8f5f0;
}
.rights-list ul li:last-child, .obligations-list ul li:last-child {
    border-bottom: none;
}

/* ===== CTA ===== */
.membership-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #b78850, #9a6f3a);
    color: #ffffff;
    text-align: center;
}
.membership-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.membership-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn-large {
    padding: 16px 45px;
    font-size: 1.2rem;
    background: #ffffff;
    color: #9a6f3a;
    border: 2px solid transparent;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-large:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .membership-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .membership-hero .hero-description {
        margin: 0 auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .membership-hero h1 {
        font-size: 2.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .membership-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .membership-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .membership-grid {
        grid-template-columns: 1fr;
    }
    .membership-hero h1 {
        font-size: 2rem;
    }
    .membership-card {
        padding: 20px 18px 25px;
    }
    .membership-cta h2 {
        font-size: 1.8rem;
    }
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.btn-primary {
    display: inline-block;
    padding: 16px 42px;
    background: #f43e33;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 0 20px rgba(244, 62, 51, 0.3);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 40px rgba(244, 62, 51, 0.5), 0 10px 30px rgba(244, 62, 51, 0.3);
}
.btn-secondary {
    display: inline-block;
    padding: 16px 42px;
    background: #b78850;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 0 20px rgba(183, 136, 80, 0.3);
}
.btn-secondary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 40px rgba(183, 136, 80, 0.5), 0 10px 30px rgba(183, 136, 80, 0.3);
}