:root {
    --primary: #00aeef;
    --black: #000000;
    --dark-grey: #121212;
    --grey: #888888;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Modern way to handle fixed headers globally */
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.mobile-toggle {
    display: none;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

/* Dropdown Styles */
.has-dropdown {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.has-dropdown>a i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
    color: var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    min-width: 200px;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    color: var(--grey);
    white-space: nowrap;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: rgba(0, 174, 239, 0.1);
    color: var(--primary);
    padding-left: 2.5rem;
}

/* Submenu level 2 */
.has-submenu {
    position: relative;
}

.has-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-submenu>a i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.submenu {
    position: absolute;
    top: -1px;
    left: 100%;
    transform: translateX(20px);
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(15px);
    min-width: 200px;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 101;
}

/* Maintain connection area between level 1 and level 2 */
.has-submenu::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    display: block;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(10px);
}

.has-submenu:hover>a i {
    transform: translateX(5px);
}

.submenu li a {
    padding: 0.8rem 2rem;
}

.btn-shop {
    background: var(--primary);
    color: var(--black);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.btn-shop:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exp-label {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
    transition: var(--transition);
}

.exp-label img {
    height: 48px;
    width: auto;
    display: block;
}

.exp-label:hover {
    transform: translateY(-2px);
}

.social-icons a {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.7;
}

.social-icons a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-left: 10%;
    width: 60%;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateX(10px);
}

.btn-secondary {
    border: 1px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Animated Banner */
.hero-banner {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    background-image: url('images/flowers2.png');
    background-size: cover;
    background-position: center;
    animation: kenBurns 12s infinite alternate;
}

.banner-overlay {
    display: none;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.4) translate(-2%, -2%);
    }
}

/* Gallery */
.work-gallery {
    padding: 10rem 0;
    background: var(--dark-grey);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-title span {
    color: var(--primary);
}


.section-subtitle {
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
    font-weight: 300;
}

.branding-gallery .section-title {
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.sablage-page .section-title,
.branding-page .section-title,
.impression-page .section-title,
.enseigne-page .section-title {
    color: var(--primary);
}

.sablage-page .section-title span,
.branding-page .section-title span,
.impression-page .section-title span,
.enseigne-page .section-title span {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 174, 239, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.item-overlay span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-item:hover .item-overlay span {
    transform: translateY(0);
}

/* Specific styles for Premium Gallery pages */
.sablage-page .branding-gallery .gallery-item img,
.branding-page .branding-gallery .gallery-item img,
.impression-page .branding-gallery .gallery-item img,
.enseigne-page .branding-gallery .gallery-item img {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sablage-page .branding-gallery .gallery-item:hover img,
.branding-page .branding-gallery .gallery-item:hover img,
.impression-page .branding-gallery .gallery-item:hover img,
.enseigne-page .branding-gallery .gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Triangle marker */
.sablage-page .branding-gallery .gallery-item::after,
.branding-page .branding-gallery .gallery-item::after,
.impression-page .branding-gallery .gallery-item::after,
.enseigne-page .branding-gallery .gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 80px solid var(--primary);
    border-left: 80px solid transparent;
    opacity: 0;
    transform: translate(20px, -20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 5;
}

.sablage-page .branding-gallery .gallery-item:hover::after,
.branding-page .branding-gallery .gallery-item:hover::after,
.impression-page .branding-gallery .gallery-item:hover::after,
.enseigne-page .branding-gallery .gallery-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

/* Ensure lightbox images are always in color */
#lightbox-img {
    filter: grayscale(0%) !important;
}



/* Contact */
.contact {
    padding: 10rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-text h2 span {
    color: var(--primary);
}

.contact-text p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info .phone-highlight {
    font-size: 1.6rem;
    font-weight: 600;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    width: 20px;
}

.contact-info p span {
    color: var(--primary);
    font-weight: 400;
    text-transform: uppercase;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary);
}

.contact-info .fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}

.identity-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.identity-text h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--grey);
}

.identity-text h4 i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.identity-text h4 span {
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
}

.vat,
.contact-info .vat {
    font-size: 7px;
    color: var(--grey);
    letter-spacing: 1px;
    opacity: 0.5;
    margin-top: 2rem;
}

.contact-form {
    background: var(--dark-grey);
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
}



/* Footer */
footer {
    padding: 2rem 0 4rem;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.footer-socials i {
    font-size: 1.5rem;
    color: var(--grey);
}

.footer-socials i:hover {
    color: var(--primary);
}

.footer-layout p {
    color: var(--grey);
    font-size: 0.9rem;
}

.contact-form button,
.contact .btn-primary[form] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Info Ribbon */
.info-ribbon {
    background: var(--dark-grey);
    padding: 3.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.info-ribbon.ribbon-compact {
    padding: 2rem 0;
}

.info-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.info-ribbon p {
    font-size: 1.45rem;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 1.5px;
    text-transform: none;
}

.reveal-text {
    animation: revealUp 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text-delayed {
    animation: revealUp 1s 0.2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.reveal-btns {
    animation: revealUp 1s 0.4s cubic-bezier(0.77, 0, 0.175, 1) both;
}

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subpage Styles */
.subpage-hero {
    padding: 12rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--dark-grey), var(--black));
}

.subpage-hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.subpage-hero h1 span {
    display: block;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-top: 0;
}

.subpage-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--grey);
}

.branding-gallery {
    padding: 3rem 0 4rem;
}

.branding-gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Slightly smaller gap for 4 columns */
}

.branding-gallery .gallery-item {
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.branding-gallery .item-overlay {
    display: none;
    /* Remove blue hover effect */
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

#lightbox-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: var(--black);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

@media (max-width: 968px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 1rem;
        font-size: 1rem;
    }
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Scroll Animations */
.section-title,
.gallery-item,
.contact-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-title.in-view,
.contact-wrapper.in-view {
    opacity: 1;
    transform: translateY(0);
}

.gallery-grid .gallery-item:nth-child(2) {
    transition-delay: 0.1s;
}

.gallery-grid .gallery-item:nth-child(3) {
    transition-delay: 0.2s;
}

.gallery-grid .gallery-item:nth-child(4) {
    transition-delay: 0.3s;
}

.gallery-grid .gallery-item:nth-child(5) {
    transition-delay: 0.4s;
}

.gallery-grid .gallery-item:nth-child(6) {
    transition-delay: 0.5s;
}

/* Logo Carousel */
.logo-carousel-section {
    padding: 4rem 0;
    background: #000;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 40s linear infinite;
}

.logo-slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
    }
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0 2rem;
    background: #000;
}

.testimonials-subtitle {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.testimonial-logo {
    display: flex;
    justify-content: center;
}

.testimonial-logo img {
    max-width: 180px;
    max-height: 100px;
}

.testimonial-text p {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--white);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-controls button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-controls button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.test-dots {
    display: flex;
    gap: 1rem;
}

.test-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-dots .dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

/* Add in-view animations for new sections */
.logo-carousel-section,
.testimonials-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.logo-carousel-section.in-view,
.testimonials-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Form Status Notification */
.form-status {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: #1a1a1a;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-status.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.form-status.success {
    border-left: 4px solid #28a745;
}

.form-status.error {
    border-left: 4px solid #dc3545;
}

.form-status .status-close {
    background: transparent;
    border: none;
    color: var(--grey);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 10px;
    margin-left: auto;
}

.form-status .status-close:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        padding: 0 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    .exp-label {
        margin: 0 0.5rem;
    }

    .exp-label img {
        height: 35px;
    }

    .social-icons {
        display: none;
        /* Hide social icons in mobile header to save space */
    }

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-grey);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .has-dropdown {
        text-align: center;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
        min-width: 0;
        padding: 0;
    }

    .has-dropdown.mobile-open .dropdown {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
    }

    .has-submenu.mobile-open .submenu {
        display: block;
    }

    .has-submenu>a i {
        transform: rotate(90deg);
    }

    .has-submenu.mobile-open>a i {
        transform: rotate(270deg);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-banner {
        position: relative;
        width: 100%;
        height: 60vh;
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .branding-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .branding-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero h1 {
        font-size: 3rem;
    }
}

/* Testimonials Responsive Overrides */
@media (max-width: 968px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .testimonials-subtitle {
        font-size: 1.8rem;
    }

    .testimonial-text p {
        font-size: 1.5rem;
    }

    .testimonial-track {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .testimonial-track {
        height: 450px;
    }

    .testimonial-text p {
        font-size: 1.2rem;
    }

    .testimonials-subtitle {
        font-size: 1.5rem;
    }

    .testimonial-controls {
        gap: 1.5rem;
    }
}

/* Shop Page Styles */
.shop-grid-section {
    padding: 6rem 0;
    background: var(--black);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--dark-grey);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-cat {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.product-info p {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
}

.price-val {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-buy {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-buy:hover {
    background: var(--primary);
    color: var(--black);
}

/* Responsive adjustments for shop */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

/* Publicite Hero Split */
.hero-split {
    display: flex;
    min-height: 70vh;
    background: var(--black);
    margin-top: 80px;
}

.hero-split-image {
    flex: 1;
    overflow: hidden;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: linear-gradient(to right, var(--dark-grey), var(--black));
}

.hero-split-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-split-content h1 span {
    display: block;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hero-split-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 500px;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--primary);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-split-image {
        height: 40vh;
    }

    .hero-split-content {
        padding: 4rem 2rem;
    }

    .hero-split-content h1 {
        font-size: 3.5rem;
    }
}