/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: var(--z-sticky);
    transition: all var(--duration-normal) var(--ease-smooth);
    background: linear-gradient(135deg, #5E1D5E 0%, #8B2266 50%, #C12A72 100%);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(45, 16, 53, 0.85) 0%, rgba(94, 29, 94, 0.85) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    z-index: 10;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: #ffffff;
}

.nav-logo-text span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--duration-fast) var(--ease-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--gradient-gold) !important;
    color: var(--color-dark) !important;
    border-radius: var(--border-radius) !important;
    font-weight: var(--fw-semibold) !important;
    letter-spacing: var(--ls-wide) !important;
    text-transform: uppercase !important;
    font-size: var(--fs-xs) !important;
    transition: all var(--duration-normal) var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: all var(--duration-normal) var(--ease-smooth);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-dark);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(135deg, #5E1D5E 0%, #8B2266 50%, #C12A72 100%);
    z-index: var(--z-modal);
    padding: var(--space-3xl) var(--space-lg);
    transition: right var(--duration-slow) var(--ease-smooth);
    border-left: 1px solid var(--color-glass-border);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-glass-border);
    transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.mobile-menu a:hover {
    color: var(--color-gold);
    padding-left: var(--space-sm);
}

.mobile-menu .mobile-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.mobile-menu .mobile-social a {
    font-size: 1.2rem;
    padding: 0;
    border: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(45, 16, 53, 0.4) 0%, 
        rgba(45, 16, 53, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-md);
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: var(--shadow-deep);
    animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(193, 42, 114, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s 0.3s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s 0.5s ease both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.7s ease both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gold);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.2rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========================================
   CLIENT CAROUSEL (INFINITE MARQUEE)
   ======================================== */
.client-carousel-section {
    background: var(--color-dark);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-glass-border);
    overflow: hidden;
}

.carousel-track-viewport {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

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

.carousel-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    margin: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity var(--duration-normal) var(--ease-smooth), transform var(--duration-normal);
}

.carousel-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(150%);
    transition: filter var(--duration-normal);
}

.carousel-item:hover img {
    filter: grayscale(0%) brightness(100%);
}

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

@media (max-width: 768px) {
    .carousel-item {
        width: 140px;
        margin: 0 var(--space-md);
    }
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: transform var(--duration-fast) ease-out,
        box-shadow var(--duration-normal) var(--ease-smooth);
    transform-style: preserve-3d;
}

.service-card:hover {
    box-shadow: var(--shadow-glow-strong);
    z-index: 10;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.9) 100%);
    transition: background var(--duration-normal) var(--ease-smooth);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.95) 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 2;
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.service-card-header-glass {
    background: rgba(255, 255, 255, 0.08); /* More subtle */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-sm);
    display: table;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-card:hover .service-card-header-glass {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-card-content {
    transform: translateY(0);
}

.service-card-number {
    font-family: var(--font-heading);
    font-size: 2rem; /* Smaller, more elegant */
    font-weight: var(--fw-bold);
    color: var(--color-gold); /* Using the primary brand color directly */
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 2px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    color: var(--color-gold-dark);
    margin-bottom: var(--space-xs);
}

.service-card-desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal) var(--ease-smooth);
    line-height: var(--lh-normal);
}

.service-card:hover .service-card-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background: var(--color-gold);
    color: var(--color-dark);
    margin-top: var(--space-sm);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--duration-fast) ease-out, box-shadow var(--duration-normal);
    transform-style: preserve-3d;
}

.gallery-item:hover {
    box-shadow: var(--shadow-glow);
    z-index: 10;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}



.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(94, 29, 94, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

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

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--color-gold);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-dark);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    transition: color var(--duration-fast);
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
}

.testimonial-card {
    grid-area: 1 / 1;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all var(--duration-slow) var(--ease-smooth);
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: var(--lh-relaxed);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.testimonial-name {
    font-weight: var(--fw-semibold);
    color: var(--color-gold-dark);
}

.testimonial-role {
    font-size: var(--fs-small);
    color: var(--color-gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius-full);
    background: var(--color-glass);
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: background var(--duration-fast);
}

.testimonial-dot.active {
    background: var(--color-gold);
}

/* ========================================
   STATS / COUNTERS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.stat-item:hover {
    background: var(--color-glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--fw-bold);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--fs-small);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ========================================
   WHATSAPP CTA FLOATING
   ======================================== */
.whatsapp-cta {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: var(--z-sticky);
    transition: all var(--duration-normal) var(--ease-smooth);
    text-decoration: none;
}

.whatsapp-cta:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.cta-section .hero-overlay {
    background: rgba(94, 29, 94, 0.85);
}

/* ========================================
   STICKY CONTACT CTA
   ======================================== */
.sticky-cta {
    position: fixed;
    top: 65%;
    left: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    background: var(--gradient-gold);
    color: var(--color-dark);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    border: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    cursor: pointer;
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-gold);
    transition: all var(--duration-normal) var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

.sticky-cta:hover {
    padding: 16px 24px;
    box-shadow: var(--shadow-glow-strong);
    background: linear-gradient(135deg, #C12A72 0%, #D94D8F 100%);
}

.sticky-cta i {
    transform: rotate(360deg);
}

/* ========================================
   CONTACT MODAL
   ======================================== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-dark);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.contact-modal.active {
    opacity: 1;
    pointer-events: all;
}

.contact-modal-content {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform var(--duration-normal) var(--ease-bounce);
    box-shadow: var(--shadow-deep);
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--duration-fast);
}

.contact-modal-close:hover {
    color: var(--color-gold);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.contact-modal-header h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-xs);
}

.contact-modal-header p {
    color: var(--color-text-muted);
    font-size: var(--fs-small);
}

.contact-modal-form .form-group {
    margin-bottom: var(--space-md);
}

.contact-modal-form input,
.contact-modal-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(193, 42, 114, 0.2);
}

.contact-modal-form textarea {
    resize: vertical;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    line-height: var(--lh-relaxed);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #5E1D5E 0%, #8B2266 50%, #C12A72 100%);
    border-top: 1px solid var(--color-glass-border);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .footer-logo {
    display: block;
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 0;
    font-size: var(--fs-small);
    transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
}

.footer-contact-item i {
    color: var(--color-gold);
    margin-top: 3px;
}

.footer-newsletter {
    margin-top: var(--space-md);
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: #ffffff;
    font-size: var(--fs-small);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
    padding: 10px 18px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: var(--fw-semibold);
    transition: background var(--duration-fast);
}

.footer-newsletter-form button:hover {
    background: var(--color-gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--color-glass-border);
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: color var(--duration-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* Credits */
.credits {
    text-align: center;
    padding: var(--space-sm) 0;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.credit-link {
    color: var(--color-gold-light);
    transition: color var(--duration-fast) var(--ease-smooth),
                text-shadow var(--duration-fast) var(--ease-smooth);
}

.credit-link:hover {
    color: var(--color-gold);
    text-shadow: 0 0 8px rgba(193, 42, 114, 0.4);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    color: var(--color-dark);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ========================================
   UNIFIED RESPONSIVE SYSTEM
   ======================================== */

/* Laptops / Large Tablets (1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        height: 350px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl) var(--space-md);
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Tablets / Large Mobiles (768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .mobile-overlay,
    .mobile-menu {
        display: block;
    }

    .hero-glass-card {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .sticky-cta {
        top: auto;
        bottom: 30px;
        left: 30px;
        transform: none;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0;
    }

    .sticky-cta i {
        font-size: 1.5rem;
    }
}

/* Smartphones (480px) */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 320px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .cta-section {
        background-attachment: scroll;
    }

    .contact-modal-content {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .nav-logo-text {
        font-size: 1.2rem;
    }
}
