/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #D62828;
    /* Bold Red */
    --secondary-color: #1a1a1a;
    /* Deep Black */
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --max-width: 1400px;
    /* Wider container for modern look */
    --transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
    /* Smooth varied transition */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 800;
    /* Bolder headings */
    line-height: 1.1;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   PRESERVED HEADER & FOOTER STYLES
   ========================================= */

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: transparent;
    /* Handled by scroll or inner divs */
    box-shadow: none;
    transition: var(--transition);
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-details span {
    margin-right: 20px;
    opacity: 0.8;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-mini a {
    color: var(--white);
    margin-left: 15px;
    opacity: 0.7;
    transition: var(--transition);
}

.social-mini a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: var(--transition);
}

header.scrolled .top-bar {
    display: none;
    /* Optional: Hide top bar on scroll for cleaner look, or keep it */
    /* For this design, let's keep it but maybe shrink? Let's just keep it simple. */
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Adjust nav container to match previous layout */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Slightly shorter than before */
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

/* Fix specific nav button style */
.nav-links li a.btn {
    display: inline-flex;
    /* Use flexbox for centering text */
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    margin-left: 10px;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 4px;
    line-height: 1.2;
    /* Reset line-height to avoid extra height */
    margin-top: 2px;
    /* Micro-adjustment to push it down visually if needed */
}

.nav-links li a:hover::after,
.nav-links li a.active-link::after {
    width: 100%;
}

.nav-links li a.active-link {
    color: var(--primary-color);
    font-weight: 700;
}

/* Ensure button text stays white even if active */
.nav-links li a.btn.active-link {
    color: var(--white) !important;
}

.close-menu {
    display: none;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    width: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    /* Matching btn size approx */
    background-color: transparent;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    /* Bold text */
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid #e0e0e0;
    /* Subtle border */
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 6px 0;
    transition: var(--transition);
}

footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col ul li a {
    color: #999;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.85rem;
}

/* =========================================
   NEW CREATIVE MIDDLE CONTENT STYLES
   ========================================= */

/* Hero Section - Asymmetrical Split */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--white);
    overflow: hidden;
    padding-top: 130px;
    /* Account for topbar + navbar */
    display: flex;
    align-items: center;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 30px;
    position: relative;
}

.hero-text h1 span.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary-color);
    display: block;
}

.hero-text h1 span.highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

/* Hero Text Lines */
/* Hero Text Lines */
.hero-text h1 .hero-line-2 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    /* Clean "Fake" Border using Shadows */
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.hero-line-3 {
    color: var(--primary-color);
    /* Red */
}

/* Responsive Text Size Adjustment */
/* Responsive Text Size Adjustment */
@media (max-width: 768px) {
    .hero-text h1 .hero-line-2 {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
        -webkit-text-stroke: 0 !important;
        text-shadow:
            -1px -1px 0 #ffffff,
            1px -1px 0 #ffffff,
            -1px 1px 0 #ffffff,
            1px 1px 0 #ffffff !important;
    }
}

/* Creative Image Composition */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.05);
    transition: opacity 1s ease-in-out;
    /* Enable fading */
}

.hero-img-1 {
    width: 60%;
    height: 70%;
    top: 0;
    right: 0;
    /* Removed Hardcoded BG */
    background-color: #f0f0f0;
    /* Placeholder color */
    z-index: 2;
}

.hero-img-2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    left: 10%;
    /* Removed Hardcoded BG */
    background-color: #e0e0e0;
    /* Placeholder color */
    z-index: 3;
    border: 10px solid var(--white);
}

/* Floating Shapes */
.shape {
    position: absolute;
    z-index: 1;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fce4e4, #fff);
    top: 10%;
    left: -50px;
}

/* Services - Step Layout */
.section-padding {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.showreel-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.section-header .line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.services-creative {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* Seamless */
}

.service-box {
    padding: 0;
    /* Remove default padding */
    background: var(--white);
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 40px;
    position: relative;
    flex: 1;
    /* Match height */
    z-index: 2;
    background: var(--white);
    transition: var(--transition);
}

.service-box:hover .service-content {
    background: var(--secondary-color);
}

/* Number positioning inside content */
.service-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    /* Lighter for overlap */
    position: absolute;
    top: 20px;
    right: 20px;
    transition: var(--transition);
    line-height: 1;
}

.service-box:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
    /* Slight Pop */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: none;
}

.service-box:hover .service-num {
    color: rgba(255, 255, 255, 0.1);
}

.service-box h3 {
    font-size: 1.5rem;
    margin: 10px 0 20px;
    position: relative;
    z-index: 2;
}

.service-box h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 15px;
    transition: var(--transition);
}

.service-box:hover h3::after {
    width: 100%;
}

.service-box:hover h3 {
    color: var(--white);
}

.service-box p {
    color: #444;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: var(--transition);
}

.service-box:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Showreel / Video Section */
.showreel-section {
    position: relative;
    height: 600px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.showreel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.showreel-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Portfolio Strip */
.portfolio-strip {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 20px 60px;
    scrollbar-width: none;
    /* Hide scrollbar */
}

/* Creative Portfolio Grid (Masonry/Bento) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 20px;
    grid-auto-flow: dense;
    /* Fills gaps */
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 100%;
    /* Fill grid cell */
    width: 100%;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align to bottom */
    align-items: flex-start;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
    /* Delay */
}

.overlay-content p {
    color: #ccc;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
    /* Delay */
}

.portfolio-item:hover .overlay-content h3,
.portfolio-item:hover .overlay-content p {
    transform: translateY(0);
}

/* Responsive Masonry Reset */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        grid-auto-rows: 300px;
    }

    .portfolio-item.wide,
    .portfolio-item.tall,
    .portfolio-item.large {
        grid-column: auto;
        grid-row: auto;
    }
}

.portfolio-strip-item {
    min-width: 400px;
    height: 500px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.portfolio-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-strip-item:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-strip-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {

    /* Mobile Hero: Magazine Cover Style */
    .hero-wrapper {
        height: 100vh;
        /* Full height */
        min-height: 600px;
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Dynamic Background for Mobile Only */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        text-align: center;
        position: relative;
        /* For scroll indicator */
        transition: background-image 1s ease-in-out;
        /* Smooth transition for mobile bg */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .hero-bg-text {
        display: none;
    }

    /* Hide the complex desktop abstract visuals */
    .hero-visual {
        display: none;
    }

    /* Center and Style Text for Dark Background */
    .hero-text {
        text-align: center;
        z-index: 5;
    }

    .hero-text h5 {
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 2px;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        color: var(--white);
        margin-bottom: 20px;
    }

    .hero-text h1 span.outline {
        color: var(--white);
        /* Solid white on mobile for better readability */
        -webkit-text-stroke: 0;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        /* Deep shadow */
    }

    .hero-wrapper::after {
        content: '↓';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white);
        font-size: 2rem;
        animation: bounce 2s infinite;
        opacity: 0.8;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translate(-50%, 0);
        }

        40% {
            transform: translate(-50%, -10px);
        }

        60% {
            transform: translate(-50%, -5px);
        }
    }

    .hero-text p {
        color: rgba(255, 255, 255, 0.9);
        border: none;
        padding: 0;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Adjust Buttons for Mobile */
    .hero-text div {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn-outline {
        border-color: var(--white) !important;
        color: var(--white) !important;
    }

    /* Services Adjustments */
    .services-creative {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 0;
        /* Full bleed for images */
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
        margin-bottom: 20px;
        /* Spacing between stacked cards */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        /* Soft shadow for depth */
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .hero-visual {
        height: 250px;
    }

    .hero-bg-text {
        display: none;
        /* Hide huge text on small screens */
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    /* Creative Full-Screen Menu Overlay */
    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        /* Light Theme */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 2000;
        /* Must be higher than header (1000) */
        /* Below header but above content */

        /* Animation State: Hidden */
        opacity: 0;
        visibility: hidden;
        clip-path: circle(0% at 90% 50px);
        /* Expand from hamburger position */
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        clip-path: circle(150% at 90% 50px);
    }

    /* Creative Link Styling */
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    /* Staggered Animation Delay for List Items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li a {
        font-size: 2.5rem;
        /* Huge Text */
        color: #333;
        /* High Contrast Dark Gray */
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -1px;
        border: none;
        padding: 10px;
        -webkit-text-stroke: 0;
    }

    .nav-links li a:hover {
        color: var(--primary-color);
        /* Dark on hover */
        transform: scale(1.1);
    }

    .nav-links li a::after {
        display: none;
        /* Remove underline */
    }

    /* Active State for Links */
    .nav-links li a.active-link {
        color: var(--primary-color);
        position: relative;
    }

    .nav-links li a.active-link::after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
        margin-top: 5px;
        animation: widthGrow 0.3s ease;
    }

    @keyframes widthGrow {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    /* Close Button */
    .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2rem;
        color: var(--secondary-color);
        cursor: pointer;
        transition: var(--transition);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f0f0f0;
    }

    .close-menu:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: rotate(90deg);
    }

    /* Mobile Hero Background */
    .mobile-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: -2;
        transition: opacity 1s ease-in-out;
    }

    /* Ensure hero wrapper doesn't obscure it */
    .hero-wrapper {
        background: #000;
        /* Fallback to black, not white */
        position: relative;
        z-index: 1;
    }

    /* Redesigned Mobile Button */
    .nav-links li a.btn {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        font-size: 1.5rem;
        padding: 15px 40px;
        margin-top: 20px;
        line-height: 1;
    }

    .nav-links li a.btn:hover {
        background: var(--primary-color);
        color: var(--white);
    }
}

/* Contact Page Icon Circles */
.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    /* Prevent squishing */
    font-size: 1.2rem;
    transition: var(--transition);
}

.icon-circle:hover {
    transform: scale(1.1) rotate(10deg);
}

.nav-links li a.btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .portfolio-strip-item {
        min-width: 300px;
        height: 400px;
    }
}

/* Mobile Spacing Fixes (Global) */
@media (max-width: 768px) {
    .page-header {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
        margin-top: 60px !important;
    }

    .section-padding {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered Children Animations */
.reveal .service-box,
.reveal .portfolio-strip-item,
.reveal .portfolio-item,
.reveal .hero-text>*,
.reveal .showreel-content>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active .service-box,
.reveal.active .portfolio-strip-item,
.reveal.active .portfolio-item,
.reveal.active .hero-text>*,
.reveal.active .showreel-content>* {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.reveal.active .service-box:nth-child(1),
.reveal.active .portfolio-strip-item:nth-child(1),
.reveal.active .portfolio-item:nth-child(1),
.reveal.active .hero-text>*:nth-child(1),
.reveal.active .showreel-content>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active .service-box:nth-child(2),
.reveal.active .portfolio-strip-item:nth-child(2),
.reveal.active .portfolio-item:nth-child(2),
.reveal.active .hero-text>*:nth-child(2),
.reveal.active .showreel-content>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active .service-box:nth-child(3),
.reveal.active .portfolio-strip-item:nth-child(3),
.reveal.active .portfolio-item:nth-child(3),
.reveal.active .hero-text>*:nth-child(3),
.reveal.active .showreel-content>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.active .service-box:nth-child(4),
.reveal.active .portfolio-strip-item:nth-child(4),
.reveal.active .portfolio-item:nth-child(4),
.reveal.active .hero-text>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal.active .service-box:nth-child(5),
.reveal.active .portfolio-strip-item:nth-child(5),
.reveal.active .portfolio-item:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal.active .service-box:nth-child(6),
.reveal.active .portfolio-strip-item:nth-child(6),
.reveal.active .portfolio-item:nth-child(6) {
    transition-delay: 0.6s;
}