:root {
    --primary-red: #e32322;
    --bg-dark: #121212;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --border-dark: #333333;
    --font-heading: 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

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.webp');
    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.webp');
    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.webp');
    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.webp');
    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.webp');
    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.webp');
    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: 5rem;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.services-intro {
    font-size: 1.1rem;
    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.webp');
    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.webp');
    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.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.home-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}
.hero-logo-box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.logo-large-red {
    font-family: 'hiragino', var(--font-heading);
    color: var(--primary-red);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    -webkit-text-stroke: 3px var(--primary-red);
    line-height: 0.85;
    letter-spacing: 2px;
}
.logo-small-white {
    font-family: 'compacta', var(--font-heading);
    color: var(--text-white);
    font-size: clamp(0.8rem, 2.5vw, 1.8rem);
    letter-spacing: 5px;
    font-weight: 500;
    margin-top: 0.5rem;
}
.hero-tagline {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-white);
    letter-spacing: 2px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* 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.webp');
    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.webp');
    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; }
}


/* 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; }
}


/* Global Contact Form Section adjustments */
.global-contact-form-section {
    background-color: #000; /* pure black */
    padding: 6rem 4rem;
    display: flex;
    justify-content: center;
}

.global-contact-form-section .form-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.global-contact-form-section .form-container {
    max-width: 1000px;
    width: 100%;
}

.global-contact-form-section .form-header {
    border-bottom: 1px solid #222;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

.global-contact-form-section .circle-icon {
    border-color: #e50914;
    background-color: #e50914;
}

.global-contact-form-section .step-number {
    color: #666; /* Image shows it grayish */
}

.global-contact-form-section .contact-form .form-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.global-contact-form-section .contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.global-contact-form-section .contact-form label {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #fff;
}

.global-contact-form-section .contact-form .req {
    color: #e50914;
}

.global-contact-form-section .contact-form input,
.global-contact-form-section .contact-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
}

.global-contact-form-section .contact-form input::placeholder {
    color: #666;
}

.global-contact-form-section .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill=%27%23ffffff%27 height=%2724%27 viewBox=%270 0 24 24%27 width=%2724%27 xmlns=%27http://www.w3.org/2000/svg%27><path d=%27M7 10l5 5 5-5z%27/><path d=%27M0 0h24v24H0z%27 fill=%27none%27/></svg>") no-repeat right center;
    cursor: pointer;
}
.global-contact-form-section .contact-form select option {
    background-color: #111;
    color: #fff;
}

.global-contact-form-section .contact-form .btn-submit {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 1.5rem;
    text-align: center;
    transition: background 0.3s;
}

.global-contact-form-section .contact-form .btn-submit:hover {
    background-color: #b8060f;
}

@media (max-width: 768px) {
    .global-contact-form-section .contact-form .form-row {
        flex-direction: column;
        gap: 2rem;
    }
}



/* New Footer Layout */
.global-footer {
    background-color: var(--bg-dark);
    padding: 6rem 5% 2rem 5%;
}

.global-footer .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 4rem;
    flex-wrap: wrap;
}

.global-footer .footer-col {
    display: flex;
    flex-direction: column;
}

.global-footer .brand-col {
    max-width: 350px;
}

.global-footer .footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.global-footer .footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.global-footer .footer-social-icons {
    display: flex;
    gap: 1.5rem;
}

.global-footer .footer-social-icons a {
    color: var(--text-white);
    transition: color 0.3s;
}

.global-footer .footer-social-icons a:hover {
    color: var(--primary-red);
}

.global-footer .footer-social-icons svg {
    width: 20px;
    height: 20px;
}

.global-footer .footer-heading {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.global-footer .links-col a {
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: capitalize;
}

.global-footer .links-col a:hover {
    color: var(--primary-red);
}

.global-footer .contact-col .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.global-footer .contact-col .footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.global-footer .footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .global-footer .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
}

}

@font-face {
    font-family: 'compacta';
    src: url('AC-Compacta.ttf') format('truetype');
}

@font-face {
    font-family: 'hiragino';
    src: url('hiragino-sans-gb.otf') format('opentype');
}

/* Project Tabs UI */
.project-tabs-container {
    margin-top: 4rem;
    width: 100%;
}
.project-tabs-nav {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: none;
}
.tab-btn {
    background-color: transparent;
    color: #ffffff;
    font-family: "compacta", Sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 3rem;
    padding: 10px 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    letter-spacing: 1px;
}
.tab-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}
.tab-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}
.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.tab-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
