/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 300;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    padding-left: 120px;
    padding-right: 120px;
}

/* Hamburger icon color to match about page */
.hamburger span {
    background-color: #C979FF;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #C979FF;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00FEA2E8;
    font-weight: 600;
    letter-spacing: 0.96px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2ch;
    height: 2px;
    background: #00FEA2E8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover::after {
    opacity: 1;
}

.close-icon {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* Hero Section — services page only (index uses style.css + Vimeo background; do not override .hero globally) */
body.page-services .hero {
    height: 100vh;
    background: url('assets/images/services_home.png') lightgray 50% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.page-services .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

body.page-services .hero .hero-content {
    text-align: center;
    /*max-width: 1000px;*/
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

body.page-services .hero .hero-title {
    font-family: Oswald;
    font-size: 68px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 39.22px;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    padding: 0 60px;
}

.highlight {
    position: relative;
    display: inline-block;
    padding: 0 0;
    margin: 0 0;
}

.highlightW {
    letter-spacing: 0px;
    padding-right: 10px;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: skewX(-20deg) rotate(-5deg);
    z-index: -1;
}

.highlightW::before {
    bottom: 7.2%;
    padding-right: 10px;
}

/* Service Sections */
.service-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Reduce the gap between hero and first content section on desktop */
@media (min-width: 769px) {
    .creative-section {
        padding-top: 40px; /* was 80px; tighter spacing below hero */
        padding-bottom: 20px; /* reduced from 40px to 20px */
    }
}

.creative-section {
    background: #000;
    position: relative;
}

.creative-section .container {
    position: relative;
}

/* What We Offer — layout per comp (purple hero left, “WHAT WE OFFER” + accordion right) */
.wwo-offer-section .service-left {
    gap: 48px;
}

.wwo-offer-section .wwo-hero-title {
    font-family: Oswald, sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: clamp(36px, 3.6vw, 52px);
    line-height: 1.22;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c979ff;
    margin: 0;
    text-align: left;
}

.wwo-offer-section .wwo-hero-cinematic {
    font-weight: 300;
    color: #c979ff;
}

.wwo-offer-section .wwo-hero-visual {
    display: inline-block;
    font-weight: 300;
    font-size: 0.58em;
    letter-spacing: 0.16em;
    color: #ffffff;
}

.wwo-offer-section .wwo-hero-production {
    display: inline-block;
    font-weight: 300;
    font-size: 0.86em; /* stepped up ~5% from 0.82em */
    letter-spacing: 0.14em;
    color: #ffffff;
}

.wwo-offer-section .wwo-column-title {
    font-family: Oswald, sans-serif;
    font-weight: 300;
    font-size: clamp(22px, 2.1vw, 30px);
    letter-spacing: 0.34em;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin: 64px 0 14px;
    width: 100%;
}

.wwo-offer-section .service-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.motion-section {
    background: #000;
    position: relative;
    margin-top: -60px; /* Further reduced gap from Creative section */
}

.motion-section .container {
    position: relative;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.service-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-title {
    font-family: Oswald;
    font-style: normal;
    font-size: 75px;
    font-weight: 200;
    line-height: 135%;
    letter-spacing: 24.75px;
    text-transform: uppercase;
    text-align: left;
    color: #C979FF;
}

.service-title-design {
    color: #fff;
    padding-right: 100px; /* match highlight-purple padding */
}

.highlight-purple {
    position: relative;
    display: inline-block;
	padding-right: 100px;
    z-index: 0; /* create local stacking context for ::before */
}

.highlight-purple::before {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 15%;
    height: 20%;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: skewX(-12deg) rotate(-2deg);
    z-index: -1; /* behind the text within the local context */
    pointer-events: none;
}

/* Desktop default: show bar behind DESIGN in Creative title */
.creative-section .service-title .highlight-purple::before { display: block; }

/* Place bar behind & VISUALIZATION (subtitle) */
.creative-section .service-subtitle {
	position: relative;
	display: inline-block;
	z-index: 0;
}

.creative-section .service-subtitle::before {
	content: '';
	position: absolute;
	left: -4px;
	right: -4px;
	bottom: -2px;
	height: 22%;
	background: linear-gradient(to bottom, #8b5cf6, #a855f7);
	transform: skewX(-10deg) rotate(-3deg);
	z-index: -1;
	pointer-events: none;
    display: none; /* hidden on desktop; enabled on mobile below */
}

.service-subtitle {
    font-family: Oswald;
    font-style: normal;
    font-size: 35px;
    font-weight: 200;
    line-height: 65%; 
    letter-spacing: 11.55px;
    margin-top: -20px;
    text-transform: uppercase;
    color: #fff;
}

.get-quote-btn {
    display: inline-block;
    color: #4ade80;
    text-decoration: none;
    text-align: center;
    font-family: Ruda;
    font-style: normal;
    line-height: 42px;
    font-size: 36px;
    font-weight: 500;
    border-left: 17px solid #4ade80;
    padding: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.get-quote-btn:hover {
    color: #22c55e;
    border-left-color: #22c55e;
}

.motion-quote {
    border-left: none;
    border-right: 17px solid #4ade80;
    text-align: right;
    margin-left: 0;
    align-self: flex-end;
    margin-right: 20px;
    padding-right: 12px;
    padding-left: 0;
}

.motion-quote:hover {
    border-right-color: #22c55e;
    color: #22c55e;
}

.service-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.service-item:hover {
    border-bottom-color: #8b5cf6;
}

/* Creative Design Section - Purple styling */
.creative-section .service-item {
    border-bottom: 1px solid #a855f7;
}

.creative-section .service-item:hover {
    border-bottom-color: #000;
    background: #C979FF;
    padding: 0 20px;
}

.creative-section .service-item:hover .service-header {
    padding: 10px 0 5px 0;
}

.creative-section .service-item:hover .service-name {
    color: #000;
}

.creative-section .dropdown-icon {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.creative-section .service-item:hover .dropdown-icon {
    color: #000;
}

.creative-section .service-item.active {
    border-bottom-color: #000;
    background: #C979FF;
    padding: 0 20px;
}

.creative-section .service-item.active .service-header {
    padding: 10px 0 5px 0;
}

.creative-section .service-item.active .service-name {
    color: #000;
}

.creative-section .service-item.active .dropdown-icon {
    color: #000;
    transform: rotate(180deg);
}

.service-content-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
    font-family: 'Ruda', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.service-item.active .service-content-text {
    max-height: 1200px;
    padding: 0px 0 0 0;
}

.service-name {
    font-family: 'Ruda', Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.dropdown-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.service-item:hover .dropdown-icon {
    color: #8b5cf6;
}

/* Motion Section Specific */
.motion-title {
    text-align: right;
}

.motion-left {
    order: 1;
}

.motion-right {
    order: 2;
    align-items: flex-end;
}

/* Motion title: right-aligned bar tilts right→left */
.motion-title .highlight-purple::before {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 15%;
    height: 20%;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
    transform: skewX(12deg) rotate(2deg);
    z-index: -1; /* behind the text within the local context */
    pointer-events: none;
}

/* Ensure the “& EFFECT” text hugs the right edge (no extra padding) */
.motion-title .highlight-purple {
    padding-right: 2px;
    padding-left: 100px;
    color: #fff;
    overflow: hidden; /* prevent rotated bar from exceeding word width */
    white-space: nowrap; /* keep & EFFECT on one line */
}

/* Motion subtitle “PRODUCTION” matches MOTION color and sits a bit lower */
.motion-right .service-subtitle {
    color: #C979FF;
    margin-top: 10px;
    padding-right: 10px;
    text-align: right;
}

/* Motion & Effects Section - Accordion styling */
.motion-section .service-item {
    border-bottom: 1px solid #a855f7;
}

.motion-section .service-item:hover {
    border-bottom-color: #000;
    background: #C979FF;
    padding: 0 20px;
}

.motion-section .service-item:hover .service-header {
    padding: 10px 0 5px 0;
}

.motion-section .service-item:hover .service-name {
    color: #000;
}

.motion-section .dropdown-icon {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.motion-section .service-item:hover .dropdown-icon {
    color: #000;
}

.motion-section .service-item.active {
    border-bottom-color: #000;
    background: #C979FF;
    padding: 0 20px;
}

.motion-section .service-item.active .service-header {
    padding: 10px 0 5px 0;
}

.motion-section .service-item.active .service-name {
    color: #000;
}

.motion-section .service-item.active .dropdown-icon {
    color: #000;
    transform: rotate(180deg);
}

/* Get In Touch Section — scoped to services page only (index also loads this file for creative-section) */
body.page-services .get-in-touch {
    background: linear-gradient(89deg, #C979FF -7.22%, #00FEA2 111.78%);
    padding: 30px 0; /* reduced vertical space */
}

body.page-services .get-in-touch .contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px; /* tighter spacing */
    align-items: center;
}

body.page-services .get-in-touch .contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.page-services .get-in-touch .section-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 95px;
    font-weight: 200;
    line-height: 135%;
    letter-spacing: 31.35px;
    color: #000;
    text-transform: uppercase;
}

body.page-services .get-in-touch .contact-description {
    font-family: Ruda;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    color: #000;
    line-height: 36px;
}

body.page-services .get-in-touch .final-quote {
    border-left: 17px solid #C979FF;
    color: #000;
    padding-left: 8px; /* keep text close to border */
}

body.page-services .get-in-touch .final-quote:hover {
    border-left-color: #a855f7;
    color: rgba(0, 0, 0, 0.8);
}

/* Default: mobile-only Get Quote hidden on desktop */
.get-quote-mobile { display: none; }
.get-quote-mobile-motion { display: none; }

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-text-logo {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #cccccc;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8b5cf6;
    color: #ffffff;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    text-align: right;
    font-size: 12px;
    color: #666666;
}

.footer-right p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        background: none;
        backdrop-filter: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: transparent;
        backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 30px;
        padding-right: 24px;
        padding-top: 112px;
        transition: right 0.3s ease;
        z-index: 999;
        font-family: Ruda;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;
        font-size: 24px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .close-icon {
        display: flex;
        position: absolute;
        top: 20px;
        right: 24px;
        width: 32px;
        height: 32px;
        cursor: pointer;
    }
    
    .close-icon img {
        width: 32px;
        height: 32px;
        filter: brightness(0) saturate(100%) invert(76%) sepia(100%) saturate(5076%) hue-rotate(271deg) brightness(103%) contrast(101%);
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(203deg, #000 33.16%, rgba(0, 0, 0, 0.00) 79.71%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-active > *:not(.navbar) {
        filter: blur(2px);
        transition: filter 0.3s ease;
    }
    
    .navbar,
    .nav-links,
    .close-icon,
    .mobile-overlay,
    .logo,
    .logo-image {
        filter: none !important;
        -webkit-filter: none !important;
    }
    
    .logo {
        position: relative;
        z-index: 1001;
    }
    
    .nav-links a {
        padding: 30px 0 0 0;
        display: block;
        color: #FFF;
        text-align: right;
        font-family: Ruda;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;
    }
    
    .nav-links a::after {
        bottom: 2px;
    }
    
    .container {
        padding: 0 20px;
    }

    /* Get In Touch: Let's Chat title size on mobile (services page only) */
    body.page-services .get-in-touch .section-title {
        color: #000;
        text-align: center;
        font-family: Oswald;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%; /* 40.5px */
        letter-spacing: 9.9px;
        text-transform: uppercase; /* 180% */
        padding: 0 0;
    }

    /* Get In Touch: body copy on mobile */
    body.page-services .get-in-touch .contact-description {
        color: #000;
        text-align: center;
        font-family: Ruda;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px; /* 180% */
        padding: 0 0;
    }

    /* Get In Touch: Get Quote button typography on mobile */
    body.page-services .get-in-touch .final-quote {
        color: #000;
        text-align: center;
        font-family: Ruda;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 42px; /* 175% */
        padding: 0 10px;
    }

    /* Add a small gap under the hero before Creative section (services page only) */
    body.page-services .hero { margin-bottom: 24px !important; }
    .creative-section { margin-top: 24px; }

    .culture-image {
        width: 100vw;
        height: 300px;
        background: url('assets/images/culture.png') center/cover no-repeat;
        margin: 0 calc(-50vw + 50%);
    }
    
    body.page-services .hero .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        letter-spacing: 0.3em;
        line-height: 1.1;
        font-weight: 200;
        padding: 0 20px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        font-weight: 200;
        letter-spacing: 0.25em;
        text-align: center;
    }
    
    .motion-title {
        text-align: center;
    }
    
    .service-left {
        text-align: center;
        align-items: center;
    }
    
    /* Motion (mobile): make layout like Creative – title/subtitle above, accordions below, button at bottom */
    .motion-section .service-left  { grid-row: 2; }
    .motion-section .service-right { grid-row: 1; text-align: center; align-items: center; }
    .motion-section .motion-title  { text-align: center; font-size: 36px !important; }
    .motion-section .service-subtitle {
        text-align: center;
        font-size: 22px !important;
        color: #fff !important; /* white for mobile */
        position: relative;
        display: inline-block;
        z-index: 0; /* local stacking context for ::before */
    }
    /* Nudge “& EFFECT” left on mobile */
    .motion-section .motion-title .highlight-purple {
        position: relative;
        left: -10px;
        padding-left: 0;
        padding-right: 0;
    }
    /* Move bar from title to subtitle on mobile to match Creative */
    .motion-section .motion-title .highlight-purple::before { display: none !important; }
    .motion-section .service-subtitle::before {
        content: '';
        position: absolute;
        left: -4px; right: -4px;
        bottom: -5px;
        height: 50%;
        background: linear-gradient(to bottom, #8b5cf6, #a855f7);
        transform: skewX(-6deg) rotate(-1deg);
        z-index: -1;
        pointer-events: none;
        display: block !important;
    }
    .get-quote-mobile-motion { 
        display: block !important; 
        margin: 16px !important;
        align-self: flex-start !important;
        margin-left: 25 !important;
        border-left-width: 16px !important;
        padding: 6px 0 6px 6px !important;
        color: #00FEA2 !important;
        text-align: center !important;
        font-family: Ruda !important;
        font-size: 30px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 42px !important;
        border-left: 15px solid #00FEA2 !important;
        text-decoration: none !important;
    }
    .motion-section .motion-quote { display: none; }
    
    body.page-services .get-in-touch .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    body.page-services .get-in-touch .contact-left {
        align-items: center;
    }

    /* Add horizontal padding to accordions on mobile */
    .service-items {
        padding: 0 24px;
        gap: 12px;
    }
    
    /* Mobile footer layout: Logo left, Links right (2x2 grid) */
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    /* Hide desktop links on mobile, show mobile links */
    .desktop-links {
        display: none;
    }
    
    .mobile-links {
        display: none !important;
    }
    
    /* First row: Logo left, Links right (same line) */
    .footer-top-row {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
        flex: 1;
    }
    
    .footer-right {
        display: none; /* Hide desktop footer-right on mobile */
    }
    
    /* Second row: Social icons centered and bigger */
    .social-links {
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    /* Third row: Copyright centered */
    .mobile-copyright {
        display: block !important;
        text-align: center;
        width: 100%;
        font-size: 12px;
        color: #666666;
    }
    
    .mobile-copyright p {
        margin: 5px 0;
    }
    
    /* Hide desktop copyright on mobile */
    .footer-right .footer-copyright {
        display: none;
    }

        /* Creative Design (mobile): title/subtitle above accordions, button below */
        .creative-section .service-left  { grid-row: 1; align-items: center; text-align: center; }
        .creative-section .service-right { grid-row: 2; }

		/* enforce sizes to match comp */
		.creative-section .service-title { font-size: 36px !important; text-align: center; }
		.creative-section .service-subtitle { font-size: 22px !important; text-align: center; }

        /* Mobile: move the purple bar from DESIGN to the subtitle */
        .creative-section .service-title .highlight-purple::before { display: none !important; }
        .creative-section .service-subtitle::before {
            display: block !important;
            height: 50% !important; /* thicker bar on mobile */
            bottom: -5px !important; /* start a bit higher */
            transform: skewX(-6deg) rotate(-1deg) !important; /* slightly less angle */
        }

        /* Nudge DESIGN to the right on mobile */
        .creative-section .service-title .service-title-design {
            position: relative;
            left: 50px;
        }

		/* button below accordions, left aligned like reference */
		.creative-section .get-quote-btn {
			align-self: flex-start;
			margin-left: 15px;
			border-left-width: 15px;       /* thinner bar */
			padding: 6px 0 6px 6px;       /* nearly sticking to left border */
            color: #00FEA2;
            text-align: center;
            font-family: Ruda;
            font-size: 30px;
            font-style: normal;
            font-weight: 500;
            line-height: 42px;
		}

        /* ensure dedicated mobile button shows and desktop one is hidden */
        .get-quote-mobile { display: block; margin: 16px; }
		.creative-section .service-left > .get-quote-btn { display: none; }

        /* What We Offer: stack — list + title first, hero + CTA below */
        .wwo-offer-section .service-content {
            display: flex;
            flex-direction: column;
            gap: 48px;
            min-height: 0;
        }
        .wwo-offer-section .service-right {
            order: -1;
            width: 100%;
        }
        .wwo-offer-section .service-left {
            align-items: center;
            text-align: center;
        }
        .wwo-offer-section .wwo-hero-title {
            font-size: clamp(26px, 6vw, 34px) !important;
            text-align: center;
            letter-spacing: 0.12em;
        }
        .wwo-offer-section .wwo-hero-visual {
            font-size: 0.56em;
        }
        .wwo-offer-section .wwo-column-title {
            margin: 44px 0 14px;
        }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-title {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }
    
    .service-items {
        gap: 10px;
    }
    
    .service-item {
        padding: 0 0;
    }
    
    .service-name {
        font-size: 18px;
    }
    
    .get-quote-btn {
        font-size: 36px;
        padding: 10px;
        border-left-width: 10px;
    }
    
    .motion-quote {
        border-right-width: 10px;
    }
}

/* Desktop footer layout (default) */
.mobile-links {
    display: none; /* Hide mobile links on desktop */
}

.mobile-copyright {
    display: none; /* Hide mobile copyright on desktop */
}

.footer-top-row {
    display: contents; /* Don't create a flex container on desktop */
}

.desktop-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.footer-logo-image {
    width: 35px;
    height: 35px;
}

.footer-text-logo {
    height: 20px;
    width: auto;
}
