/* CSS Variables */
:root {
    --primary: #5e1768;
    /* Morado oscuro */
    --primary-light: #7a2b85;
    --accent-1: #da64dd;
    /* Lila brillante */
    --accent-2: #a01c52;
    /* Magenta/Vino */
    --text: #2b2b2b;
    /* Gris oscuro */
    --text-light: #666;
    --bg-light: #f4f6fa;
    /* Light blue-ish grey for modern look */
    --white: #ffffff;
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(94, 23, 104, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-lg: 30px;
    --radius-btn: 50px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utility Classes */
.script-font {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

.highlight {
    color: var(--accent-1);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(218, 100, 221, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-transform: capitalize;
    /* Cleaner look */
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(94, 23, 104, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(94, 23, 104, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #eee;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1002;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    transition: color 0.2s;
}

.top-contact a:hover {
    color: var(--white);
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    color: #ccc;
    font-size: 0.9rem;
}

.top-socials a:hover {
    color: var(--accent-1);
}

/* Header & Navbar */
/* Header & Navbar */
.navbar {
    position: sticky;
    /* Back to sticky to avoid top bar overlap issues */
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, top 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
    position: fixed;
    /* Switch to fixed when hiding/showing to float over content */
}

/* When scrolling up and showing */
.navbar.visible {
    position: fixed;
    transform: translateY(0);
}

/* Helper for hiding navbar */
.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    /* Space for fixed nav */
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
    overflow: hidden;
    position: relative;
}

/* Floating Balloons Video - Hidden on Desktop */
.floating-balloons-video {
    display: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease;
}

.hero-btns {
    display: flex;
    gap: 20px;
    /* Add space between buttons */
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

/* CSS Collage for Hero Visual */
.collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-item {
    position: absolute;
    border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
    /* Unique shape */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main image */
.collage-main {
    width: 70%;
    height: 80%;
    top: 10%;
    right: 0;
    z-index: 2;
    border-top-right-radius: 100px;
    /* Extra round */
    border-bottom-left-radius: 0;
}

/* Decor shapes */
.collage-decor-1 {
    width: 40%;
    height: 50%;
    bottom: 0;
    left: 10%;
    background-color: var(--accent-1);
    z-index: 3;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
}


.collage-decor-2 {
    width: 20%;
    height: 20%;
    top: 0;
    right: 60%;
    /* background-color: var(--primary); Removed for video */
    z-index: 1;
    border-radius: 20px;
    /* Rounded borders for aesthetic */
    overflow: hidden;
    opacity: 1;
}

/* Clients Marquee - Main Styles */
.clients-section {
    padding: 10px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

/* NOTE: Main marquee styles are defined below in "Client Logos Marquee" section */

/* Generic Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Feature Rows (Single Column Layout) */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bg-purple {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.bg-pink {
    background: linear-gradient(135deg, var(--accent-1), #ffb7f4);
}

.bg-dark {
    background: linear-gradient(135deg, #2b2b2b, #4a4a4a);
}

.feature-content {
    flex: 1;
}

.feature-label {
    display: inline-block;
    background-color: rgba(94, 23, 104, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-1);
}

.btn-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    border-bottom: 2px solid transparent;
}

.btn-link:hover {
    border-bottom-color: var(--primary);
    gap: 12px;
}

/* Background Variations */
.bg-soft {
    background-color: var(--bg-light);
}

/* Client Logos Marquee - Infinite Seamless Loop */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 5px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 10px;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.client-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.client-item img {
    max-height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.3s ease;
}

.client-item.logo-fix img {
    transform: scale(1.8);
    margin: 0 15px;
}

.client-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.client-item.logo-fix img:hover {
    transform: scale(1.9);
    /* Slightly larger on hover relative to base scale */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Portfolio Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(94, 23, 104, 0.9));
    padding: 30px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Packages Section */
.packages-bg {
    background-color: var(--bg-light);
}

/* Packages Grid (4 Columns for Home) */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.pkg-wide-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pkg-wide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pkg-visual {
    width: 100%;
    position: relative;
    height: 200px;
    /* Compact height */
    min-height: auto;
}

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4af37;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 10;
    text-transform: uppercase;
}

.badge-soft {
    background: var(--accent-1);
}

.pkg-details {
    padding: 20px;
    /* Compact padding */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pkg-details h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    /* Compact title */
    line-height: 1.2;
}

.price {
    font-size: 1.2rem;
    /* Compact price */
    font-weight: 700;
    color: var(--accent-2);
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.pkg-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pkg-includes span {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-includes i {
    color: var(--primary);
    font-size: 0.8rem;
}



/* Rich Footer */
footer {
    background-color: #111;
    color: #999;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--accent-1);
    margin-top: 5px;
    text-transform: uppercase;
}

.footer-about {
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 20px;
}

.footer-brand img {
    margin: 0 auto;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-left: 0;
    /* Removed pink stripe decoration */
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-contact-list i {
    color: var(--accent-1);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.sticky-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Feature Visual Collage */
.feature-visual-collage {
    flex: 1;
    position: relative;
    height: 450px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
    width: 100%;
}

.c-item {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    background-size: cover;
    background-position: center;
}

.c-1 {
    grid-row: 1 / 3;
}

.c-2 {}

.c-3 {}

.collage-single-large {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 20px 20px;
    /* Arch shape */
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid var(--bg-light);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-1);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.check-item i {
    color: var(--primary);
}

/* Background Decorations (Floating) */
.floating-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

.deco-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 20%;
    left: -150px;
}




.deco-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-2);
    bottom: 5%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon {
    position: absolute;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.icon-right {
    bottom: 20px;
    right: -20px;
    rotate: 15deg;
}

.icon-left {
    top: 40px;
    right: -30px;
    rotate: -15deg;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* Responsive Fixes - Mobile */
/* Responsive Fixes - Mobile */
@media (max-width: 900px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feature-image,
    .feature-visual-collage {
        width: 100%;
        height: 450px;
        /* Increased height for better visibility */
        order: -1;
    }

    .collage-single-large {
        border-radius: 20px;
        height: 100%;
        /* Ensure full height */
    }

    .collage-single-large .img-placeholder {
        width: 100%;
        height: 100%;
        /* Ensure image fills container */
    }

    .exp-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .check-grid {
        grid-template-columns: 1fr;
        text-align: left;
        display: inline-grid;
        margin: 0 auto 25px auto;
        /* Center grid */
    }

    .feature-content {
        padding: 0 15px;
    }

    .pkg-wide-card {
        flex-direction: column;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .pkg-visual {
        width: 100%;
        height: 250px;
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col h4 {
        padding-left: 0;
        text-align: center;
    }

    .footer-brand,
    .footer-col,
    .footer-contact-list li {
        align-items: center;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    /* Mobile Hero Fixes */
    .hero {
        padding-top: 80px;
        /* More space for top bar + nav */
        min-height: auto;
        padding-bottom: 5px;
        background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 90%, #e1bee7 100%);
        /* Stronger gradient for mobile */
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 0;
        gap: 10px;
    }

    .hero-visual {
        width: 100%;
        height: 150px;
        /* Ultra compact visual */
        margin-top: 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    h1.hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    /* Make decorations more visible on mobile */
    .floating-decoration {
        opacity: 0.3;
    }

    .marquee-track {
        animation: marquee-scroll 20s linear infinite;
        gap: 10px;
    }

    .client-item img {
        height: 100px;
        max-height: 100px;
    }

    /* Reduce section padding on mobile */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin: 0 auto 30px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .top-contact {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .top-bar {
        display: none;
        /* Hide completely on mobile to prevent interference */
    }

    .container {
        width: 90%;
    }

    /* Ensure no horizontal scrolling */
    body,
    html {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }

    /* Mobile Menu Styles */
    .mobile-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1003;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 40px;
        z-index: 1002;
    }

    .nav-links.active {
        display: flex;
        animation: slideInRight 0.3s ease forwards;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* Mobile Hero Refinement */
    .hero {
        padding-top: 70px;
        padding-bottom: 5px;
        overflow-x: hidden;
    }

    .hero-wrapper {
        gap: 8px;
    }

    .hero-visual {
        display: none;
        /* Hidden on mobile as per request */
    }

    .collage-main {
        width: 90%;
        /* Increased width */
        right: 0;
        height: 90%;
        top: 5%;
        animation: fadeInRight 1s ease;
    }

    /* Mobile Collage Fixes - Keep Desktop Layout */
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 columns like desktop */
        grid-template-rows: repeat(2, 1fr);
        height: 350px;
        /* Adjust height for mobile */
        gap: 10px;
    }

    .c-item {
        height: auto;
        /* Let grid control height */
        width: 100%;
    }

    .c-1 {
        grid-row: 1 / 3;
        /* Keep spanning 2 rows */
    }

    .feature-visual-collage {
        height: auto;
        margin-top: 30px;
    }

    .collage-decor-2 {
        width: 40%;
        height: 40%;
        right: 60%;
    }

    .hero-btns {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    /* Collage grid spacing */
    .collage-grid {
        gap: 10px;
    }

    /* Force Experience section to be visible on mobile */
    .bg-soft {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 400px !important;
        overflow: visible !important;
        padding: 60px 0 !important;
    }

    .bg-soft .feature-visual-collage {
        display: block !important;
        height: 450px !important;
        min-height: 450px !important;
        width: 100% !important;
    }

    .bg-soft .collage-single-large {
        display: block !important;
        height: 100% !important;
        width: 100% !important;
    }

    .bg-soft .img-placeholder {
        display: block !important;
        height: 100% !important;
        width: 100% !important;
        min-height: 400px !important;
    }

    /* Floating Balloons Video - Mobile Only - Full Background */
    .floating-balloons-video {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        pointer-events: none;
        opacity: 0.6;
        /* Semi-transparent so content is readable */
        transition: opacity 1s ease-out;
    }

    .floating-balloons-video.fade-out {
        opacity: 0;
    }

    /* Ensure hero content is above the video */
    .hero-wrapper {
        position: relative;
        z-index: 2;
    }
}

/* Printing Services Section */
.print-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Force 5 columns */
    gap: 15px;
    /* Tighter gap to fit 5 cards */
    max-width: 1400px;
    /* Wider container for 5 items */
    margin: 0 auto;
}

/* Responsive adjustment for tablets */
@media (max-width: 1100px) {
    .print-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .print-grid {
        grid-template-columns: 1fr;
        /* Single column for small screens */
    }
}

.print-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.print-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(94, 23, 104, 0.1);
    background: white;
}

.print-card.popular {
    border: 2px solid var(--accent-1);
    background: white;
    transform: scale(1.02);
}

.print-visual {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.delivery-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
}

.delivery-badge.fast {
    background: var(--primary);
}

.best-value {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-1);
    color: white;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}

.print-content {
    padding: 20px;
    text-align: center;
}

.print-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.print-qty,
.print-details {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.print-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.btn-text {
    font-weight: 700;
    color: var(--accent-2);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.btn-text:hover {
    gap: 8px;
    color: var(--primary);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s;
    user-select: none;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
/ *   G l o s   A g e n c y   C r e d i t s   * / 
}


/* Glos Agency Credits */
.glos-credits {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.glos-credits a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.glos-credits a:hover {
    color: rgba(255, 255, 255, 1);
}

.glos-credits img {
    height: 11px; /* Tiny 20% size */
    width: auto;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.glos-credits a:hover img {
    opacity: 1;
}
