/* 
Color Palette: charcoal-coral
--color-primary: #1D2A3C;
--color-secondary: #FF6F61;
--color-accent: #F2D4C9;
--bg-tint: #F8F8F8;
Design Style: dynamic-tech
Border Style: sharp (border-radius: 0)
Shadow Style: dramatic
Color Mode: mixed
*/

:root {
    --color-primary: #1D2A3C;
    --color-secondary: #FF6F61;
    --color-accent: #F2D4C9;
    --bg-tint: #F8F8F8;
    --color-white: #FFFFFF;
    --color-dark-gray: #111822;
    --color-light-gray: #E5E7EB;
    --color-text-dark: #2D3748;
    --color-text-light: #F7FAFC;
    --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    
    /* Dramatic shadow definitions */
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.22);
    --shadow-dramatic-hover: 0 32px 80px rgba(0, 0, 0, 0.30);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important; /* Sharp border style enforced */
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base layouts and containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 24px;
    }
}

h1, h2, h3, h4 {
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
}

h3 {
    font-size: clamp(18px, 3vw, 24px);
}

p {
    margin-bottom: 16px;
    font-size: clamp(14px, 2.5vw, 16px);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    border-bottom: 3px solid var(--color-secondary);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - selalu di kiri */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 100;
}

/* Hamburger - SELALU DI KANAN */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Tampil hanya di seluler */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--color-white);
}

.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 {
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-secondary);
}

/* 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(--color-primary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--color-white);
    font-size: 16px;
    text-transform: uppercase;
    display: block;
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Menampilkan hamburger di seluler */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Animasi hamburger */
    #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: FLOATING CARD LAYOUT */
.hero-section {
    position: relative;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 48px 16px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 42, 60, 0.75); /* Mixed Dark tint overlay */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-floating-card {
    background-color: var(--color-primary);
    border: 4px solid var(--color-secondary);
    padding: 30px;
    max-width: 800px;
    box-shadow: var(--shadow-dramatic);
    backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
    .hero-floating-card {
        padding: 50px;
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-floating-card h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-floating-card p {
    color: var(--color-accent);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Section Centered Headers */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.section-subtitle {
    color: var(--color-secondary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-lead {
    font-size: 18px;
    color: var(--color-text-dark);
}

/* SECTION 1: BENEFITS TIMELINE (LIGHT) */
.benefits-timeline-section {
    background-color: var(--bg-tint);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-dramatic);
    z-index: 2;
}

.timeline-content {
    background-color: var(--color-white);
    padding: 24px;
    border: 1px solid var(--color-light-gray);
    box-shadow: var(--shadow-dramatic);
}

.timeline-content h3 {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .timeline-container::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 50%;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 40px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 40px;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon {
        left: auto;
        right: -22px;
    }
    
    .timeline-item:nth-child(even) .timeline-icon {
        left: -22px;
    }
}

/* SECTION 2: CTA BANNER (DARK/MIXED) */
.cta-banner-section {
    background-color: var(--color-primary);
    padding: 60px 16px;
    position: relative;
    overflow: hidden;
}

/* Tech geometric background accents */
.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 600px;
    background: rgba(255, 111, 97, 0.1);
    transform: rotate(45deg);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-inner-block {
    background-color: rgba(255, 255, 255, 0.03);
    border: 3px solid var(--color-secondary);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
}

.cta-inner-block h2 {
    color: var(--color-white);
}

.cta-inner-block p {
    color: var(--color-accent);
    margin-bottom: 24px;
}

/* SECTION 3: NUMBERED STEPS (LIGHT) */
.steps-section {
    background-color: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--bg-tint);
    border: 1px solid var(--color-light-gray);
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic-hover);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px;
}

.step-card h3 {
    margin-bottom: 12px;
}

/* SECTION 4: GALLERY GRID (MIXED) */
.gallery-section {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

.gallery-section h2, .gallery-section .section-lead {
    color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .large-gallery {
        grid-column: span 2;
    }
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border: 2px solid var(--color-secondary);
}

.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-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(17, 24, 34, 0.95), rgba(17, 24, 34, 0));
}

.gallery-overlay-text h4 {
    color: var(--color-white);
    margin-bottom: 4px;
}

.gallery-overlay-text p {
    color: var(--color-accent);
    margin: 0;
    font-size: 14px;
}

.placeholder-gallery {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-placeholder-content {
    text-align: center;
}

.gallery-placeholder-content h3 {
    color: var(--color-secondary);
}

.gallery-placeholder-content p {
    color: var(--color-accent);
    font-size: 14px;
    margin: 0;
}

/* SECTION 5: ICON FEATURES (LIGHT) */
.features-section {
    background-color: var(--bg-tint);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    padding: 30px;
    box-shadow: var(--shadow-dramatic);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-dramatic-hover);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-tint);
    border-left: 6px solid var(--color-secondary);
    padding: 30px;
    box-shadow: var(--shadow-dramatic);
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--color-secondary);
}

/* PAGE HEADER INTERNAL SECTION */
.page-header-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 16px;
    text-align: center;
    border-bottom: 4px solid var(--color-secondary);
}

.page-header-section h1 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-header-section p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-accent);
    font-size: 18px;
}

/* PROGRAM PAGE - HORIZONTAL TABS LAYOUT */
.program-tabs-section {
    background-color: var(--color-white);
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 8px;
}

.tabs-nav label {
    padding: 12px 24px;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid var(--color-light-gray);
    flex: 1 1 auto;
    text-align: center;
}

.tabs-nav label:hover {
    background-color: var(--color-accent);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .tab-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tab-text p {
    color: var(--color-text-dark);
}

.tab-embedded-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    box-shadow: var(--shadow-dramatic);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQ GRID SECTION */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background-color: var(--color-white);
    padding: 24px;
    border-top: 4px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.faq-item h4 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* MISSION PAGE - FOUNDER STORY & TIMELINE */
.founder-story-section {
    background-color: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.story-embedded-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 4px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.story-badge {
    display: inline-block;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.timeline-dates-section {
    background-color: var(--bg-tint);
}

.dates-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.dates-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-secondary);
}

.date-node {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.date-node:last-child {
    margin-bottom: 0;
}

.date-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 6px 0;
    text-align: center;
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.date-desc {
    background-color: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-dramatic);
}

.values-manifesto-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 16px;
    text-align: center;
}

.manifesto-card {
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid var(--color-accent);
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.02);
}

.manifesto-card h2 {
    color: var(--color-white);
}

.manifesto-card p {
    color: var(--color-accent);
    font-size: 18px;
    line-height: 1.8;
}

/* CONTACT PAGE */
.contact-content-section {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info-block {
    background-color: var(--bg-tint);
    padding: 40px;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-dramatic);
}

.contact-details {
    margin-top: 30px;
}

.detail-item {
    margin-bottom: 24px;
}

.detail-item strong {
    display: block;
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.contact-link {
    font-weight: bold;
    color: var(--color-secondary);
}

.contact-form-block {
    background-color: var(--color-white);
    padding: 40px;
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--color-light-gray);
    background-color: var(--bg-tint);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-dark);
    transition: border-color 0.3s ease;
}

.custom-form input:focus, .custom-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
}

/* LEGAL CONTENT PAGES */
.legal-content-section {
    background-color: var(--bg-tint);
    padding: 60px 16px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    box-shadow: var(--shadow-dramatic);
    border: 1px solid var(--color-light-gray);
}

.last-updated {
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block h2 {
    font-size: 20px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-block li {
    margin-bottom: 8px;
}

.disclaimer-box {
    background-color: #FFF5F5;
    border: 2px solid var(--color-secondary);
    padding: 24px;
}

/* THANK YOU PAGE */
.thank-you-section {
    background-color: var(--bg-tint);
    padding: 80px 16px;
}

.thank-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    border: 3px solid var(--color-primary);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
}

.thank-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.thank-next-steps {
    margin-top: 30px;
    text-align: left;
    border-top: 1px solid var(--color-light-gray);
    padding-top: 24px;
}

.thank-next-steps h3 {
    font-size: 16px;
    color: var(--color-primary);
}

.next-steps-list {
    list-style: none;
    padding: 0;
}

.next-steps-list li {
    margin-bottom: 12px;
}

.next-steps-list a {
    font-weight: bold;
}

/* FOOTER */
.site-footer {
    background-color: var(--color-primary) !important;
    color: var(--color-text-light) !important;
    padding: 60px 16px 20px;
    border-top: 4px solid var(--color-secondary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--color-accent) !important;
}

.footer-col h4 {
    color: var(--color-secondary) !important;
    font-size: 16px;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-secondary);
    padding-left: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-accent) !important;
}

.footer-links a:hover {
    color: var(--color-white) !important;
    padding-left: 4px;
}

.footer-phone {
    color: var(--color-secondary) !important;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--color-accent) !important;
}

/* 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-primary);
    border-top: 3px solid var(--color-secondary);
    box-shadow: var(--shadow-dramatic);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    color: var(--color-white);
    font-size: 14px;
}

#cookie-banner a {
    color: var(--color-secondary);
    font-weight: bold;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.cookie-btn-accept:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

@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;
    }
}