:root {
    --primary-red: #e32322;
    --bg-dark: #121212;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --border-dark: #333333;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 100;
}

.logo {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.logo-red {
    color: var(--primary-red);
    font-weight: 700;
}

.logo-white {
    color: var(--text-white);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding-bottom: 2px;
}

.nav a.active {
    border-bottom: 1px solid var(--text-white);
}

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

/* Hamburger Menu (hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.hamburger.is-active span:first-child {
    transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Typography Utilities */
.text-red {
    color: var(--primary-red);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section {
    min-height: 100vh;
    position: relative;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
}

/* About Section */
.about-section {
    justify-content: flex-end;
    padding-bottom: 4rem;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url('assets/about_bg.png');
    background-size: cover;
    background-position: center 20%;
    z-index: -1;
}

.about-bg-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
}

.about-content {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    margin-left: 0.5rem;
}

.about-desc {
    max-width: 900px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

/* Mission Section */
.mission-section {
    justify-content: center;
}

.mission-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/mission_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 4rem;
}

.mission-col {
    flex: 1;
    max-width: 45%;
}

.vision-col {
    margin-top: 15rem;
    /* Staggered layout as in image */
}

.mission-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-white);
}

/* Choose Section */
.choose-section {
    background: radial-gradient(circle at 50% 30%, #2a2a2a 0%, #121212 70%);
    align-items: center;
    padding-top: 10rem;
}

.choose-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.choose-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.choose-desc {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--text-white);
}

/* Form Styles */
.contact-form {
    margin-top: 4rem;
    text-align: left;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.half-width {
    flex: 0 0 calc(50% - 1rem);
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.form-group label .req {
    color: var(--primary-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 0.5rem 0 1rem 0;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: 'v';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(1.5, 0.8);
    color: var(--primary-red);
    pointer-events: none;
    font-family: monospace;
}

.form-group textarea {
    resize: none;
    min-height: 50px;
}

/* Up Arrow Button */
.up-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.up-arrow:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 900px) {
    .header {
        padding: 1.5rem 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(18, 18, 18, 0.95);
        /* Better visibility on scroll */
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        border-top: 1px solid var(--border-dark);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 99;
    }

    .nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .section {
        padding: 6rem 2rem 2rem 2rem;
    }

    .mission-content {
        flex-direction: column;
        gap: 4rem;
    }

    .mission-col {
        max-width: 100%;
    }

    .vision-col {
        margin-top: 0;
    }

    .about-title {
        font-size: 5rem;
        margin-top: 5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 2rem;
    }

    .form-group.half-width {
        flex: 1 1 100%;
    }

    /* Contact Page Responsive */
    .contact-hero-title { font-size: 4rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-title { font-size: 3rem; }
    .marquee-container { margin-left: -2rem; }
}

/* Contact Hero Section */
.contact-hero-section {
    justify-content: flex-end;
    padding-bottom: 4rem;
}
.contact-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/contact_hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.contact-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
}
.contact-hero-content {
    margin-top: auto;
    position: relative;
    z-index: 1;
    text-align: right;
    width: 100%;
}
.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: 2px;
}

/* White Cards Section */
.contact-info-cards {
    padding-top: 4rem;
    padding-bottom: 8rem;
    align-items: center;
}
.contact-smoke-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/contact_smoke_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}
.contact-card {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2rem;
}
.card-icon {
    width: 40px; height: 40px;
}
.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.card-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}
.card-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Dark Columns Section */
.contact-info-dark {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.contact-studio-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/contact_studio_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.info-title-red {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.info-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-white);
}
.info-contact {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Email Form Section */
.email-form-section {
    padding-top: 0;
    align-items: center;
}
.marquee-container {
    width: 100vw;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 6rem;
    margin-left: -4rem; /* offset section padding */
}
.marquee {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}
.marquee span {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--text-white);
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.form-container {
    width: 100%;
    max-width: 800px;
    text-align: left;
}
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.estimate-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.circle-icon {
    width: 12px; height: 12px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
}
.step-number {
    color: var(--primary-red);
}
.form-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

/* Contact Text Section */
.contact-text-section {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 8rem;
}
.text-group-top {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 12rem;
}
.text-group-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.contact-us-subtitle {
    color: var(--primary-red);
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 500;
}
.contact-us-title {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .text-group-top { margin-bottom: 6rem; }
    .contact-us-title { font-size: 1.8rem; }
}

/* Services Hero Section */
.services-hero {
    justify-content: flex-end;
    padding-bottom: 6rem;
}
.services-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/services_hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.services-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 80%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
}
.services-hero-content {
    margin-top: auto;
    position: relative;
    z-index: 1;
    width: 100%;
}
.services-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.services-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-white);
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Photo & Video Split Section */
.services-split {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.services-split-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/services_photo_video_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}
.services-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.service-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.col-photo {
    padding-right: 2rem;
}
.col-video {
    margin-top: 15rem; /* Staggered effect */
    padding-left: 2rem;
}
.service-heading {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 3rem;
    letter-spacing: 2px;
}
.service-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-white);
}

/* Creative Direction Section */
.services-creative {
    padding-top: 4rem;
    padding-bottom: 12rem;
}
.services-creative-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/services_creative_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}
.services-creative-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}
.creative-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.creative-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
}
.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}
.grid-item {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .services-title { font-size: 4rem; }
    .services-split-grid { grid-template-columns: 1fr; gap: 4rem; }
    .col-video { margin-top: 0; padding-left: 0; }
    .col-photo { padding-right: 0; }
    .services-creative-content { flex-direction: column; gap: 4rem; }
    .creative-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Centered Creative Direction Section */
.services-creative-centered {
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.creative-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 5rem;
    position: relative;
    z-index: 1;
}
.creative-centered-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.creative-centered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
    width: 100%;
}
.text-center {
    text-align: center;
}

@media (max-width: 900px) {
    .creative-centered-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Home Hero Section */
.home-hero {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.home-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/home_hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.hero-logo-box {
    margin-bottom: 4rem;
}
.logo-large-red {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 8rem;
    line-height: 1;
    letter-spacing: 2px;
}
.logo-small-white {
    font-family: var(--font-body);
    color: var(--text-white);
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: 300;
}
.hero-tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    letter-spacing: 1px;
}

/* Home Intro Section */
.home-intro {
    padding-top: 6rem;
    padding-bottom: 8rem;
}
.home-intro-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/home_intro_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
}
.home-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.intro-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.intro-desc {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 6rem;
}
.intro-desc p {
    margin-bottom: 1.5rem;
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}
.intro-col h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.intro-col p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Home FAQs Section */
.home-faqs {
    padding-top: 6rem;
    padding-bottom: 8rem;
}
.home-faqs-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/hl.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}
.faqs-top {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem auto;
}
.faqs-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: var(--text-white);
}
.faqs-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.faqs-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 3rem;
}
.faqs-bottom {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.faqs-header {
    margin-bottom: 3rem;
}
.faqs-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.faqs-header p {
    font-size: 1.1rem;
    font-weight: 300;
}
.faqs-sub-divider {
    border: none;
    border-top: 1px solid var(--text-white);
    margin-top: 1rem;
}
.faqs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
}
.faq-item {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .logo-large-red { font-size: 4rem; }
    .logo-small-white { font-size: 1.5rem; }
    .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .faqs-grid { grid-template-columns: 1fr; gap: 0; }
}

/* Portfolio Page */
.portfolio-main {
    padding-top: 12rem;
    padding-bottom: 8rem;
    background-color: #000000;
    min-height: 100vh;
}
body.bg-black {
    background-color: #000000;
}
.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
}
.portfolio-title {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.portfolio-dot {
    font-size: 3rem;
    line-height: 0.8;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.portfolio-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.portfolio-caption {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-white);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .portfolio-grid { grid-template-columns: 1fr; gap: 4rem; }
    .portfolio-title { font-size: 3rem; margin-bottom: 4rem; }
}

.portfolio-item-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}
.portfolio-item-link:hover {
    transform: translateY(-5px);
}
.portfolio-item-link .portfolio-caption {
    transition: color 0.3s ease;
}
.portfolio-item-link:hover .portfolio-caption {
    color: var(--primary-red);
}

/* Jakamen Portfolio Detail Page */
.jakamen-main {
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 100vh;
}
.portfolio-tags {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.tag {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    border-radius: 50px;
    padding: 0.6rem 2.5rem;
    letter-spacing: 1px;
}
.jakamen-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-white);
    max-width: 900px;
    margin-bottom: 6rem;
}
.jakamen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.jakamen-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .jakamen-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tag { font-size: 1rem; padding: 0.5rem 1.5rem; }
}

/* Global Footer */
.global-footer {
    background-color: var(--bg-black);
    padding: 6rem 5% 2rem 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand .logo-red {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-red);
}
.footer-brand .logo-white {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 2px;
}
.footer-tagline {
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    font-size: 1.1rem;
}
.footer-links, .footer-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a, .footer-socials a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-links a:hover, .footer-socials a:hover {
    color: var(--primary-red);
}
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { margin-bottom: 2rem; }
}

/* FAQ Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}
.accordion-question:hover {
    color: var(--primary-red);
}
.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}
.accordion-item.active .accordion-answer {
    max-height: 500px;
    margin-top: 1rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-red);
}



.home-clients {
    padding-top: 1rem;
    padding-bottom: 2rem;
    background-color: var(--bg-dark);
    overflow: hidden;
    min-height: auto;
}
.clients-container {
    width: 100%;
    text-align: center;
}
.clients-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.clients-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}
.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}
.clients-slider {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-clients 50s linear infinite;
}
.client-slide {
    width: 200px;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-logo-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.client-logo-img:hover {
    opacity: 1;
}

@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .clients-title { font-size: 2rem; }
    .client-slide { width: 150px; padding: 0 1.5rem; }
}

