/* ocean-rose: #0A3245, #174E66, #B83050, #F0F7FB */
:root {
    --color-primary: #0A3245;
    --color-secondary: #174E66;
    --color-accent: #B83050;
    --bg-tint: #F0F7FB;
    
    /* Dark Theme Specific Colors */
    --bg-dark: #081216;
    --bg-card: #0f1f26;
    --text-light: #f0f7fb;
    --text-muted: #9ab2bc;
    --border-color: rgba(240, 247, 251, 0.1);
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-size: clamp(15px, 2vw, 18px);
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px; }
h2 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 12px; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #9d2541;
    color: var(--text-light);
}

.btn-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--text-light);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background-color: rgba(240, 247, 251, 0.1);
    border-color: var(--color-accent);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--text-light);
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    font-weight: 500;
    font-size: 16px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Mobile Adaptability */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* HERO SECTION: asymmetric */
.hero-asymmetric {
    position: relative;
    overflow: hidden;
    padding: 48px 16px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.hero-text-block {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-size: 14px;
}

.hero-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-image-block {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .hero-asymmetric {
        padding: 80px 24px;
    }
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
    .hero-img {
        height: 450px;
    }
}

/* SECTION HEADERS */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-badge {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

/* BENEFITS GRID: benefits-5asymm */
.benefits-grid-5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--color-accent);
}

.card-num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(184, 48, 80, 0.2);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .benefits-grid-5 {
        grid-template-columns: repeat(6, 1fr);
    }
    .card-large {
        grid-column: span 3;
    }
    .card-small {
        grid-column: span 2;
    }
}

/* EXPERT BLOCK: expert-block */
.expert-section {
    background-color: var(--color-secondary);
    padding: 64px 16px;
}

.expert-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.expert-quote-icon {
    font-size: 80px;
    line-height: 1;
    color: var(--color-accent);
    height: 40px;
}

.expert-quote p {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    margin-bottom: 24px;
}

.expert-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.expert-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 1px solid var(--border-color);
}

.expert-info {
    text-align: left;
}

.expert-name {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.expert-role {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
}

/* TWO COLUMNS: two-col-image */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.custom-list {
    list-style: none;
    margin: 24px 0;
}

.custom-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

@media (min-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* GALLERY GRID: gallery-grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    border: 1px solid var(--border-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--text-light);
}

.gallery-placeholder {
    height: 100%;
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .item-wide {
        grid-column: span 2;
    }
}

/* STATS BAR: stats-bar */
.stats-section {
    background-color: var(--color-primary);
    padding: 40px 16px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-accent);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* PROGRAM PAGE TIMELINE */
.page-hero {
    text-align: center;
    background-color: var(--color-secondary);
    padding: 80px 16px;
}

.page-hero p {
    max-width: 700px;
    margin: 16px auto 0 auto;
    color: var(--text-muted);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
    border-left: 2px solid var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-badge {
    position: absolute;
    left: -48px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-accent);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
}

/* INLINE IMAGE SECTION */
.inline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.rounded-img {
    border-radius: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .inline-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* FAQ GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.faq-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
}

.faq-card h4 {
    margin-bottom: 12px;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MISSION PAGE: split-layout */
.split-mission-section {
    padding: 48px 16px;
}

.split-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mission-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.values-block {
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.value-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

@media (min-width: 768px) {
    .split-mission-container {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* MANIFESTO CARD */
.manifesto-section {
    background-color: var(--bg-card);
}

.manifesto-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 24px;
}

.manifesto-lead {
    font-size: 22px;
    font-style: italic;
    color: var(--color-accent);
    margin: 24px 0;
}

/* CONTACT PAGE LAYOUT */
.contact-section {
    padding: 48px 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.custom-form {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.info-card {
    background-color: var(--color-secondary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-list {
    margin-top: 24px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: var(--color-accent);
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* LEGAL PAGES */
.legal-section {
    padding: 80px 16px;
}

.legal-date {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-content h3 {
    margin-top: 32px;
    color: var(--color-accent);
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

/* THANK YOU PAGE */
.thank-section {
    padding: 80px 16px;
    text-align: center;
}

.thank-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 48px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.thank-icon {
    font-size: 64px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 24px;
}

.next-steps {
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.next-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--color-secondary);
    border-top: 1px solid var(--border-color);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { text-decoration: underline; color: var(--color-accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-light);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* FOOTER SECTION */
.site-footer {
    background-color: var(--color-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 64px 16px 24px 16px !important;
    color: var(--text-light) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted) !important;
    font-size: 14px;
    max-width: 320px;
}

.site-footer h4 {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text-light) !important;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    color: var(--text-muted) !important;
    font-size: 14px;
}

.site-footer a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted) !important;
    margin-bottom: 8px;
}

.footer-tel {
    color: var(--text-muted) !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted) !important;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}