/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --primary-red: #b10202;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --light-gray: #E5E5E5;
    --medium-gray: #999999;
    --dark-gray: #333333;
    --text-gray: #666666;
    
    /* Menu Colors */
    --menu-bg: #000000;
    --menu-hover: #C41E3A;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--primary-white);
    color: var(--dark-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   HAMBURGER MENU BUTTON
   ============================================ */
.menu-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-white);
    transition: all 0.3s ease;
    display: block;
}

.menu-btn:hover span {
    background: var(--primary-red);
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Scroll state - change hamburger to black */
body.scrolled .menu-btn span {
    background: var(--primary-black);
}

body.scrolled .menu-btn:hover span {
    background: var(--primary-red);
}

/* ============================================
   SIDE MENU
   ============================================ */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--menu-bg);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 30px 40px;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
}

.close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin-bottom: 25px;
}

.menu-items li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.menu-items li a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.menu-items li a.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* ============================================
   NEWS BUTTON
   ============================================ */
.news-btn {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    padding: 30px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 900;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: var(--primary-red);
    padding-left: 50px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.logo-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: 10;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 10;
    font-size: 10px;
    color: var(--primary-white);
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
    margin-top: 10px;
}

.logo-link:hover {
    transform: translate(-50%, -80%) scale(1.05);
}

.hero-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    margin-bottom: 10px;
}

/* .logo-text {
    font-size: 10px;
    color: var(--primary-white);
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
} */

.hero-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--primary-white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-container {
    background: var(--primary-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--medium-gray);
}

.breadcrumb .current {
    color: var(--primary-red);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--primary-white);
    padding: 80px 0 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.header-underline {
    width: 60px;
    height: 2px;
    background: var(--primary-red);
}

/* ============================================
   FAQ ITEMS
   ============================================ */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 50px;
}

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

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.faq-answer {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.faq-link {
    color: #00A8E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* Warning Box */
.warning-box {
    margin-top: 20px;
    padding: 20px;
    background: #FFF8E1;
    border-left: 4px solid #FFC107;
    border-radius: 4px;
}

.warning-box p {
    font-size: 13px;
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.warning-box strong {
    font-weight: 700;
}

/* ============================================
   FOOTER CTA SECTION
   ============================================ */
.footer-cta-section {
    background: var(--dark-gray);
    padding: 0;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.cta-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.8);
    transition: all 0.5s ease;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.cta-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
    color: var(--primary-white);
    text-align: center;
}

.cta-content h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-style: italic;
}

.cta-card:hover .cta-image {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.1) brightness(1);
}

.cta-card:hover .cta-overlay {
    background: rgba(196, 30, 58, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 50px 40px 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-content .copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 6px;
        bottom: 60px;
    }
    
    .hero-logo {
        width: 180px;
    }
    
    .faq-container {
        padding: 0 30px;
    }
    
    .footer-cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .cta-content h3 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-btn {
        top: 20px;
        right: 20px;
    }
    
    .news-btn {
        padding: 20px 25px;
        font-size: 12px;
    }
    
    .side-menu {
        width: 250px;
        right: -250px;
        padding: 60px 20px 30px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 4px;
        bottom: 40px;
    }
    
    .breadcrumb {
        padding: 0 20px;
        font-size: 12px;
    }
    
    .faq-section {
        padding: 60px 0 40px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .faq-content {
        gap: 40px;
    }
    
    .faq-item {
        padding-bottom: 40px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .footer-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-logo {
        width: 130px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .faq-question {
        font-size: 14px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Initial animations */
.faq-section {
    animation: fadeIn 0.8s ease-in;
}

.faq-item {
    animation: slideUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1s; }
