/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #FF4500;
    --dark-bg: #ffffff;
    --light-bg: #1a1a1a;
    --text-dark: #ffffff;
    --text-light: #000000;
    --text-gray: #666666;
    --accent-gradient: linear-gradient(135deg, #FF4500 0%, #FF6B35 100%);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--dark-bg);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background-color: #ffffff !important;
    /* Solid white */
    backdrop-filter: none !important;
    border-bottom: none;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: #ffffff !important;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: var(--transition);
}

.nav-link:hover {
    color: #000000;
    opacity: 0.6;
}

.nav-link:hover::after {
    width: 100%;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--accent-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.btn-primary.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary.btn-large svg {
    width: 20px;
    height: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 10;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #000000;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    overflow: hidden;
    background: #000000;
    /* Black to prevent white/grey flash */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
    /* Ensure video container is black */
}

.hero-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 30px 0;
    letter-spacing: -0.02em;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: capitalize;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.8) 100%);
    margin: 0 auto 30px auto;
    animation: expandWidth 1s ease-out 0.3s both;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #666666;
    margin: 0;
    animation: fadeIn 1s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-title-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
}

.word {
    display: inline-block;
    margin: 0 15px;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.word:nth-child(1) {
    animation-delay: 0.1s;
}

.word:nth-child(2) {
    animation-delay: 0.2s;
}

.word:nth-child(3) {
    animation-delay: 0.3s;
}

.highlight-line .word {
    animation-delay: 0.5s;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description Split Text - OLD (Hidden) */
.hero-description {
    display: none;
}

@keyframes fadeIn {
    to {
        opacity: 0.95;
    }
}

/* Advanced CTA Button - OLD (Hidden) */
.cta-button {
    display: none;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.cta-button:hover .button-bg {
    left: 0;
}

.cta-button:hover {
    color: var(--text-light);
    border-color: var(--text-dark);
    transform: translateY(0);
}

.cta-button:hover .button-text {
    color: var(--text-light);
}

/* Scroll Indicator Enhanced - OLD (Hidden) */
.scroll-indicator {
    display: none;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--text-light);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 10px;
    }

    50% {
        opacity: 0;
        top: 25px;
    }
}

/* Decorative Shapes - OLD (Hidden) */
.hero-shapes {
    display: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.02;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    left: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

/* Section Labels and Titles */
.section-label {
    display: inline-block;
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: var(--text-light);
}

.large-title .line {
    display: block;
    overflow: hidden;
}

.large-title .line span {
    display: inline-block;
}

/* Reveal Text Animation */
.reveal-text .line {
    position: relative;
}

.reveal-text.active .line::after {
    animation: revealText 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealText {
    0% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

/* About Section Redesigned - Horizontal */
/* ============================================ */
/* SERVICES SECTION - Creative & Artistic */
/* ============================================ */

.services {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

/* Section Header - Centered */
.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-clean {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    color: #ffffff;
    /* White for video overlay */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, #666666 100%);
    margin: 0 auto 25px auto;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #666666 0%, #000000 100%);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {

    0%,
    100% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 100%;
        opacity: 0.3;
    }
}

.section-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid - More organic layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Service Card - Artistic with hand-drawn feel */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: none;
    border-radius: 30px;
    padding: 60px 35px 50px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}


.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 60px;
    font-weight: 200;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
    transition: all 0.5s ease;
}

.service-card:hover .service-number {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.15) rotate(-5deg);
}

.service-icon {
    margin-bottom: 35px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover .service-icon {
    transform: translateY(-8px) rotate(5deg);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.service-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #000000;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* OLD About Styles - Hidden */
.about {
    display: none;
}

.about-content-horizontal {
    max-width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.text-reveal {
    overflow: hidden;
    margin-bottom: 25px;
}

.text-reveal p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-reveal.active p {
    opacity: 1;
    transform: translateY(0);
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

/* Stats Grid with Counter Animation */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stats-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 0;
    border: 1px solid #e8e8e8;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 56px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Image Wrapper */
.about-image-wrapper {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    margin-bottom: 30px;
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* Feature Cards Modern Design */
.feature-cards {
    display: grid;
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 0;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: width 0.4s ease;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--text-dark);
}

.feature-icon-modern {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-modern {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Floating Background Shapes - Minimal */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    display: none;
    /* Cleaner minimal look without shapes */
}

.float-shape {
    position: absolute;
    background: var(--text-dark);
    opacity: 0.02;
    border-radius: 50%;
    animation: floatAround 25s infinite ease-in-out;
}

.float-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
}

.float-2 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: -50px;
    animation-delay: 8s;
}

.float-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* Portfolio Section */
.portfolio {
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.portfolio-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more:hover {
    gap: 15px;
    opacity: 0.8;
}

.view-more svg {
    width: 20px;
    height: 20px;
}

.filter-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #666666;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.filter-btn span {
    position: relative;
    z-index: 2;
}

.filter-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: all 0.3s ease;
    z-index: 1;
}

.filter-btn:hover .filter-bg,
.filter-btn.active .filter-bg {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    border-color: #000000;
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover span,
.filter-btn.active span {
    color: #ffffff;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.portfolio-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:nth-child(1) {
    transition-delay: 0.1s;
}

.portfolio-item:nth-child(2) {
    transition-delay: 0.2s;
}

.portfolio-item:nth-child(3) {
    transition-delay: 0.3s;
}

.portfolio-item:nth-child(4) {
    transition-delay: 0.4s;
}

.portfolio-item:nth-child(5) {
    transition-delay: 0.5s;
}

.portfolio-item:nth-child(6) {
    transition-delay: 0.6s;
}

.portfolio-item:nth-child(7) {
    transition-delay: 0.7s;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Portfolio Number */
.portfolio-number {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card:hover .portfolio-number {
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.15) rotate(-3deg);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Video Containers */
.portfolio-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    height: 450px;
}

.portfolio-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.2);
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.portfolio-video.horizontal {
    height: 450px;
}

.portfolio-video.vertical {
    height: 450px;
}

/* Last video adjustment - move video down */
.portfolio-video.last-video iframe {
    top: 85%;
    transform: translate(-50%, -50%) scale(2.2);
}

/* Hide old elements */
.video-thumbnail,
.play-button,
.video-overlay-hover {
    display: none;
}

.portfolio-card:hover .play-button svg circle {
    fill: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.portfolio-card:hover .video-overlay-hover {
    opacity: 1;
}

/* Instagram Style for Vertical Videos */
.instagram-style .portfolio-video {
    border-radius: 0;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card.instagram-style:hover .instagram-overlay {
    opacity: 1;
}

.instagram-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* Video Modal / Lightbox */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    z-index: 10001;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
    z-index: 10002;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 0;
    overflow: hidden;
}

.modal-video-container.horizontal {
    padding-bottom: 56.25%;
}

.modal-video-container.vertical {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 177.78%;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Portfolio Info */
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px 40px 40px;
    z-index: 2;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.portfolio-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.category-tag {
    display: none;
}

.portfolio-info p {
    display: none;
}

/* Contact Form Section Enhanced */
.contact-form-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.contact-form {
    background: white;
    padding: 60px;
    border-radius: 0;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: width 0.6s ease;
}

.contact-form:hover::before {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Conflicting form styles removed */

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--text-dark);
    color: var(--text-light);
    border: 1px solid var(--text-dark);
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
}

.submit-button:hover {
    background: transparent;
    color: var(--text-dark);
    transform: translateY(0);
}

.button-arrow {
    transition: var(--transition);
    font-size: 22px;
}

.submit-button:hover .button-arrow {
    transform: translateX(8px);
}

.form-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    display: none;
    opacity: 0;
}

.form-success.active {
    display: block;
    animation: successPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes successPop {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 25px;
    animation: checkmark 0.8s ease-out 0.3s;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

/* Brands Section - Double Slider */
.brands-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
}

.brands-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
}


/* ============================================ */
/* CONTACT SECTION */
/* ============================================ */

.contact-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    padding-top: 20px;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 25px 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 30px 0 0 0;
    max-width: 480px;
}

/* Clean Contact Form */
.contact-form-clean {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group-clean {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-clean label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #999999;
    text-transform: uppercase;
}

.form-group-clean input,
.form-group-clean textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    position: relative;
}

.form-group-clean input:hover,
.form-group-clean textarea:hover {
    border-bottom-color: #cccccc;
}

.form-group-clean input:focus,
.form-group-clean textarea:focus {
    border-bottom-color: #000000;
    border-bottom-width: 2px;
    padding-bottom: 14px;
}

.form-group-clean textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn-clean {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.submit-btn-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transition: left 0.4s ease;
}

.submit-btn-clean:hover::before {
    left: 0;
}

.submit-btn-clean:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn-clean svg {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.submit-btn-clean:hover svg {
    transform: translateX(5px);
}

.submit-btn-clean span,
.submit-btn-clean svg {
    position: relative;
    z-index: 1;
}

.form-success-clean {
    display: none;
    padding: 20px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
}

.form-success-clean.active {
    display: block;
}

/* ============================================ */
/* TESTIMONIALS SECTION */
/* ============================================ */

.testimonials-section {
    background: #ffffff;
    padding: 120px 0;
    color: #000000;
}

/* Ensure Portfolio Section is White */
#portfolio,
.portfolio {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.portfolio-title {
    color: #000000 !important;
}

.view-more {
    color: #000000 !important;
    border-color: #000000 !important;
}

.view-more:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}

.testimonials-left {
    position: relative;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 12px;
    text-transform: lowercase;
    margin-bottom: 30px;
    position: relative;
}

.testimonials-badge::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonials-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.testimonials-right {
    position: relative;
}

.testimonial-item {
    position: relative;
}

.testimonial-text {
    font-size: 28px;
    line-height: 1.5;
    margin: 0 0 60px 0;
    font-weight: 400;
}

.testimonial-author h4 {
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 40px 0;
    letter-spacing: 2px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #fff;
    border-color: #fff;
}

.testimonial-avatars {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -15px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-left: -15px;
    border: 2px solid #000;
}

.avatar-label {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.avatar-label strong {
    font-weight: 700;
}

/* ============================================ */
/* SERVICES VIDEO SECTION */
/* ============================================ */

.services-video-section {
    display: grid;
    grid-template-columns: 0.9fr 2fr;
    min-height: 100vh;
    background: #000;
}

.services-video-left {
    background: #000;
    color: #fff;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-video-header {
    max-width: 100%;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 12px;
    text-transform: lowercase;
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
}

.services-video-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px 0;
}

.services-video-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 40px 0;
    max-width: 380px;
}

.services-arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services-arrow-btn:hover {
    transform: scale(1.1);
    background: #ff6b35;
    color: #fff;
}

.services-video-right {
    position: relative;
    overflow: hidden;
}

.services-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 100%;
}

.service-video-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    min-height: 33.33vh;
}

.service-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.service-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.3s ease;
}

.service-video-card:hover .service-video-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.service-video-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    display: flex;
    align-items: flex-end;
    height: 100%;
    color: #fff;
}

.service-video-content h3 {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.service-video-card:hover .service-video-content h3 {
    color: #fff;
    transform: translateX(8px);
}

/* ============================================ */
/* FOOTER - Clean Minimal */
/* ============================================ */

.footer-clean {
    background: #ffffff;
    padding: 100px 0 60px;
    border-top: 1px solid #e8e8e8;
}

.footer-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-item-clean {
    text-align: center;
}

.footer-icon {
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

.footer-item-clean:hover .footer-icon {
    transform: translateY(-5px) scale(1.1);
    color: #333333;
}

.footer-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
}

.footer-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #999999;
    margin-bottom: 12px;
}

.footer-link {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #666666;
}

.footer-bottom-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.footer-bottom-clean p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.footer-links-small {
    display: flex;
    gap: 30px;
}

.footer-links-small a {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-small a:hover {
    color: #000000;
}

/* OLD Footer Styles - Hidden */
.footer {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 25px;
    font-size: 20px;
    letter-spacing: 2px;
}

.footer-column p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    padding-left: 0;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-video {
        height: 350px;
    }

    .portfolio-video.horizontal {
        height: 350px;
    }

    .portfolio-video iframe {
        transform: translate(-50%, -50%) scale(2.0);
    }

    .portfolio-info h3 {
        font-size: 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid,
    .stats-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 15px 25px;
        gap: 20px;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .btn-primary {
        order: 3;
        padding: 8px 14px !important;
        font-size: 12px !important;
        letter-spacing: 0.3px !important;
        gap: 6px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }

    .btn-primary svg {
        width: 12px !important;
        height: 12px !important;
    }

    /* Fix navbar overlap with hero content */
    .hero-content {
        padding-top: 100px;
    }

    /* Fix navbar overlap on all other pages */
    .portfolio-page-header,
    .contact-page-section,
    .about-page-header {
        padding-top: 140px !important;
    }

    .hamburger {
        padding: 8px;
        margin-right: -8px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding: 100px 40px;
        gap: 30px;
        justify-content: center;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 24px;
        color: #000;
    }

    .nav-link::after {
        background: #000;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-iframe {
        min-width: 300vw;
    }

    .word {
        margin: 0 8px;
    }

    .stats-grid,
    .stats-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-info h3 {
        font-size: 16px;
    }

    .portfolio-video {
        height: 200px;
    }

    .portfolio-video.horizontal {
        height: 200px;
    }

    .portfolio-video iframe {
        transform: translate(-50%, -50%) scale(2.2);
    }

    .portfolio-info {
        padding: 20px 30px 30px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .brand-text {
        font-size: 28px;
    }

    .brands-track {
        gap: 50px;
    }

    section {
        padding: 80px 0;
    }

    /* Services Grid - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact Grid - Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 48px;
    }

    /* Footer Grid - Mobile */
    .footer-grid-clean {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .footer-bottom-clean {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links-small {
        justify-content: center;
    }

    /* Services Video Section - Mobile */
    .services-video-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-video-left {
        padding: 60px 30px;
    }

    .services-video-title {
        font-size: 42px;
    }

    .services-video-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .services-video-grid {
        grid-template-rows: auto;
    }

    .service-video-card {
        min-height: 300px;
    }

    .service-video-content {
        padding: 30px;
    }

    .service-video-content h3 {
        font-size: 28px;
    }

    /* Testimonials Section - Mobile */
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonials-title {
        font-size: 42px;
    }

    .testimonial-text {
        font-size: 22px;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .portfolio-video {
        height: 180px;
    }

    .portfolio-video.horizontal {
        height: 180px;
    }

    .portfolio-video iframe {
        transform: translate(-50%, -50%) scale(2.2);
    }

    .portfolio-info h3 {
        font-size: 14px;
    }

    .portfolio-info {
        padding: 10px 15px 15px 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .submit-button {
        font-size: 16px;
        padding: 18px;
    }
}

/* ============================================ */
/* PORTFOLIO PAGE */
/* ============================================ */

.portfolio-page-header {
    padding: 150px 0 80px;
    background: #ffffff;
    color: #000000;
    text-align: center;
}

.portfolio-page-title {
    font-size: 72px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #000000;
}

.portfolio-page-subtitle {
    font-size: 20px;
    color: #666666;
    margin: 0;
}

.portfolio-page-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.portfolio-page-grid-section .container {
    max-width: 95%;
    padding: 0;
    margin: 0 auto;
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.portfolio-page-item {
    position: relative;
}

.portfolio-page-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
}

.portfolio-page-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    background: #ffffff;
}

.portfolio-page-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    border-radius: 0;
}

.portfolio-pa.bg-video-item iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.3);
    /* Scaled up to avoid cut-off */
    pointer-events: none;
    object-fit: cover;
}

/* First video zoom (not 16:9) */
.portfolio-page-video.first-video iframe {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.75);
}

.portfolio-page-info {
    padding: 30px 30px;
    background: #ffffff;
}

.portfolio-page-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-page-info p {
    font-size: 11px;
    color: #666666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive for Portfolio Page */
@media (max-width: 1024px) {
    .portfolio-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-page-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .portfolio-page-header {
        padding: 120px 0 60px;
    }

    .portfolio-page-title {
        font-size: 42px;
    }

    .portfolio-page-subtitle {
        font-size: 16px;
    }

    .portfolio-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-page-info h3 {
        font-size: 16px;
    }

    .portfolio-page-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .portfolio-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-page-title {
        font-size: 32px;
    }

    .portfolio-page-info h3 {
        font-size: 14px;
    }

    .portfolio-page-info {
        padding: 15px;
    }
}

/* Services Accordion Section */
.services-accordion-section {
    width: 100%;
    height: 85vh;
    background: #000000;
    overflow: hidden;
    padding: 0;
    display: flex;
    position: relative;
}

/* Shared Background Container */
.services-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000;
    /* Ensure black bg */
}

.bg-video-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    pointer-events: none;
    background: #000000;
}

.bg-video-item.active {
    opacity: 1;
    z-index: 2;
}

.bg-video-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.3);
}

.accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 3;
}

/* Content Container */
.services-accordion-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 10;
}

.accordion-item {
    position: relative;
    flex: 1;
    /* Always static width */
    height: 100%;
    border-right: none;
    /* Removed Border */
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
    background: transparent;
}

.accordion-item:last-child {
    border-right: none;
}

/* Remove flexible growing */
.accordion-item.active {
    flex: 1;
}

/* Remove old bg styles from item */
.accordion-bg {
    display: none;
}

/* Content */
.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.accordion-header {
    margin-bottom: 20px;
    transition: all 0.5s ease;
    transform: translateY(0);
}

/* Move header up slightly on hover/active to make room for details */
.accordion-item.active .accordion-header {
    transform: translateY(-10px);
}


/* Dot Indicator */
.accordion-dot {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #ff6b35;
    border-radius: 50%;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.accordion-item.active .accordion-dot {
    opacity: 1;
    transform: translateY(0);
}

.accordion-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.accordion-item:not(.active) .accordion-title {
    font-size: 24px;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* Details */
.accordion-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(20px);
}

.accordion-item.active .accordion-details {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.accordion-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 400px;
}

/* Circle Button */
.circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    text-decoration: none;
    color: #000;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.circle-btn:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: scale(1.1);
}

.arrow-icon {
    font-size: 24px;
    line-height: 1;
}


/* ============================================ */
/* NEW FOOTER REDESIGN */
/* ============================================ */

.new-footer {
    background: #000;
    padding: 120px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-cta h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #ff3366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-separator {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-separator .dot {
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    min-width: 300px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.info-block p,
.info-block a {
    font-size: 20px;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ff6b35;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 60px;
    }

    .footer-cta h2 {
        font-size: 50px;
    }

    .footer-separator {
        display: none;
    }

    .footer-info {
        width: 100%;
        gap: 40px;
    }
}


/* Mobile Responsiveness for Services Accordion - Horizontal Swipe with Video */
@media (max-width: 768px) {
    .services-accordion-section {
        height: 600px !important;
        min-height: 600px !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .services-backgrounds {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }

    .bg-video-item {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        transition: opacity 0.6s ease !important;
    }

    .bg-video-item.active {
        opacity: 1 !important;
        z-index: 2 !important;
    }

    .bg-video-item iframe {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: scale(1.8) !important;
        transform-origin: center center !important;
    }

    .accordion-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    }

    .services-accordion-container {
        flex-direction: row !important;
        width: 100% !important;
        height: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        padding: 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .services-accordion-container::-webkit-scrollbar {
        display: none !important;
    }

    .accordion-item {
        position: relative !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        background: transparent !important;
        overflow: hidden !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        cursor: grab !important;
    }

    .accordion-item:active {
        cursor: grabbing !important;
    }

    .accordion-item:last-child {
        margin: 0 !important;
    }

    .accordion-item.active {
        flex: 0 0 100% !important;
    }

    .accordion-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        padding: 40px 30px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        text-align: left !important;
        z-index: 100 !important;
        background: transparent !important;
        pointer-events: none !important;
        transform: none !important;
    }

    .accordion-item * {
        pointer-events: auto !important;
    }

    .accordion-header {
        transform: none !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
        position: relative !important;
        writing-mode: horizontal-tb !important;
    }

    .accordion-title {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        transform: none !important;
        font-size: 36px !important;
        margin: 0 !important;
        white-space: normal !important;
        text-align: left !important;
        letter-spacing: -0.02em !important;
        line-height: 1.2 !important;
        opacity: 1 !important;
        color: #ffffff !important;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95) !important;
        word-break: normal !important;
        display: block !important;
        font-weight: 700 !important;
    }

    .accordion-title br {
        display: block !important;
    }

    .accordion-dot {
        display: block !important;
        width: 12px !important;
        height: 12px !important;
        margin-bottom: 15px !important;
        opacity: 1 !important;
        background-color: #ff6b35 !important;
        border-radius: 50% !important;
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.8) !important;
        transform: none !important;
    }

    .accordion-details {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }

    .accordion-desc {
        display: block !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
        max-width: 100% !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
    }

    .circle-btn {
        display: none; /* Hide circle buttons on mobile */
        width: 32px;
        height: 32px;
        min-width: 32px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .arrow-icon {
        font-size: 14px;
    }
}


/* ============================================ */
/* TEXT INSERT SECTION */
/* ============================================ */

.text-insert-section {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-insert-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 60px 0;
}

.text-insert-content {
    font-family: 'Outfit', sans-serif;
    /* Assuming same font family */
    font-size: clamp(24px, 4vw, 48px);
    /* Responsive sizing */
    font-weight: 300;
    /* Light weight as per image */
    line-height: 1.3;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .text-insert-section {
        padding: 80px 20px;
    }

    .text-insert-container {
        padding: 0 20px;
    }

    .text-insert-content {
        font-size: 24px;
        line-height: 1.4;
    }
}


/* ============================================ */
/* FOOTER CARD SECTION */
/* ============================================*/
.footer-card-section {
    padding: 40px 40px;
    /* Very tight vertical padding */
    background-color: #ffffff;
    /* Ensure white background */
}

.footer-card {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Or min-height */
    min-height: 500px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    /* Fallback */
}

.footer-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder gradient/image */
    background: linear-gradient(135deg, rgba(20, 0, 50, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-email {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    /* Broad tracking */
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 8vw, 120px);
    /* Massive text */
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

/* Response */
@media (max-width: 768px) {
    .footer-card-section {
        padding: 40px 20px 40px;
    }

    .footer-card {
        border-radius: 20px;
        min-height: 400px;
    }
}


/* ============================================ */
/* BRANDS SECTION REDESIGNED */
/* ============================================ */

.brands-section-redesigned {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.brands-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    gap: 60px;
}

.brands-title-col {
    flex: 1;
}

.work-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.brands-title-col h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    color: #000;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
}

.brands-desc-col {
    flex: 1;
    padding-top: 40px;
    /* Align with text visual baseline */
}

.brands-desc-col p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

/* Ticker Animation */
.brands-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: ticker-scroll 40s linear infinite;
    flex-shrink: 0;
    will-change: transform;
}

.brand-item {
    flex-shrink: 0;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Keyframes */
@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Mobile */
@media (max-width: 992px) {
    .brands-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .brands-title-col h2 {
        font-size: 42px;
    }

    .brands-desc-col {
        padding-top: 0;
    }

    .brand-text {
        font-size: 24px;
    }

    .brands-track {
        gap: 40px;
        padding-right: 40px;
    }
}

/* ============================================ */
/* CONTACT PAGE STYLES */
/* ============================================ */

.contact-page-section {
    padding-top: 140px;
    /* Space for fixed navbar */
    padding-bottom: 80px;
    background-color: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-page-title {
    font-size: 56px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-page-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.contact-form-dark {
    width: 100%;
}

.contact-form-dark .form-group {
    margin-bottom: 30px;
    position: relative;
}

.contact-form-dark label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-form-dark input,
.contact-form-dark textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-dark input:focus,
.contact-form-dark textarea:focus {
    border-bottom-color: #000;
}

.contact-form-dark .form-row {
    display: flex;
    gap: 40px;
}

.contact-form-dark .form-row .form-group {
    flex: 1;
}

.submit-btn-dark {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 20px;
}

.submit-btn-dark:hover {
    transform: translateY(-2px);
    background: #ccc;
}

.form-success-msg {
    display: none;
    color: #4CAF50;
    margin-top: 20px;
    font-weight: 500;
}

.form-success-msg.active {
    display: block;
}

@media (max-width: 768px) {
    .contact-form-dark .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-page-title {
        font-size: 40px;
    }
}


/* ============================================ */
/* FOOTER LINK OVERLAY */
/* ============================================ */
/* Light Mode Footer Card */
/* Light Mode Footer Card */
.footer-card {
    position: relative;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    overflow: hidden;
    border-radius: 0 !important;
    padding: 40px 0 !important;
    /* Restored padding */
    min-height: auto !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px !important;
    /* Restored gap */
}

.footer-card-bg {
    /* Pure white background */
    background: #ffffff !important;
    opacity: 1;
}

.footer-email {
    color: #666;
    font-size: 14px !important;
    /* Restored size */
    margin: 0 !important;
    font-weight: 500;
}

.footer-title {
    color: #000;
    /* Black text */
}

.footer-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.footer-socials {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.social-btn {
    color: #000;
    border: 1px solid #ccc;
    background: #fff;
}

.social-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ============================================ */
/* ABOUT PAGE */
/* ============================================ */

.about-page-section {
    padding: 160px 0 100px;
    background: #ffffff;
    color: #000000;
}

.about-header {
    margin-bottom: 100px;
    max-width: 900px;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 30px 0;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    color: #000000;
}

.about-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #666666;
    max-width: 700px;
}

.about-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.about-text-column h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    display: inline-block;
    color: #000000;
}

.about-text-column p {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

.services-text-list h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #000000;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.service-list-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000000;
}

.service-list-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content-block {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 48px;
    }
}

/* ============================================ */
/* CLEAN FOOTER (Standardized) */
/* ============================================ */

.footer-clean {
    background-color: #ffffff;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0;
}

.footer-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
}

.footer-item-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
    color: #000000;
}

.footer-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-text,
.footer-link-clean {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-link-clean:hover {
    color: #666666;
}

.footer-socials-clean {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #000;
    color: #fff;
}

.footer-bottom-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #888;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #000;
}

@media (max-width: 900px) {
    .footer-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .footer-grid-clean {
        grid-template-columns: 1fr;
    }

    .footer-bottom-clean {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Fix for Video Loading Backgrounds */
.bg-video-item,
.services-backgrounds {
    background-color: #000000 !important;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: block;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.video-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-modal-close svg {
    stroke: #ffffff;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-player {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Portfolio Card Clickable */
.portfolio-page-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        padding: 80px 15px 20px;
    }

    .video-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .video-modal-player {
        max-width: 100%;
    }
}