/* ========================================
   SWEET EVENT - Premium Event Designer Site
   Designed with elegance and luxury in mind
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Elegant Event Designer Palette */
    --color-blush: #F4DCDF;
    --color-blush-light: #FAEEEF;
    --color-rose: #C97B8A;
    --color-rose-deep: #A8536E;
    --color-gold: #C9A56C;
    --color-gold-light: #E8C887;
    --color-gold-dark: #A88654;
    --color-cream: #FAF5EF;
    --color-cream-dark: #F0E8DC;
    --color-charcoal: #2C2620;
    --color-charcoal-light: #524A40;
    --color-white: #FFFFFF;
    --color-text: #3A322B;
    --color-text-light: #6B6259;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #E8C887 0%, #C9A56C 50%, #A88654 100%);
    --gradient-rose: linear-gradient(135deg, #E8A4B0 0%, #C97B8A 100%);
    --gradient-cream: linear-gradient(180deg, #FAF5EF 0%, #F4DCDF 100%);

    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-serif-alt: 'Cormorant Garamond', 'Georgia', serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Heebo', 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 30px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(168, 134, 84, 0.08);
    --shadow-medium: 0 8px 30px rgba(168, 134, 84, 0.15);
    --shadow-strong: 0 15px 40px rgba(168, 134, 84, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-cream);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal overflow */
section {
    max-width: 100vw;
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 38px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 50px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-gold);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(250, 245, 239, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 60px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.navbar:not(.scrolled) .nav-link {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-fast);
}

.navbar:not(.scrolled) .hamburger span {
    background: var(--color-white);
}

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

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenBurns 15s ease-in-out infinite;
}

.carousel-slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(44, 38, 32, 0.5) 0%,
        rgba(168, 83, 110, 0.3) 50%,
        rgba(44, 38, 32, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 30px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 30px;
}

.hero-title-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(80px, 14vw, 180px);
    color: var(--color-blush);
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    line-height: 0.9;
    margin-bottom: -20px;
}

.hero-title-main {
    display: block;
    font-size: clamp(40px, 7vw, 90px);
    letter-spacing: clamp(8px, 1.5vw, 18px);
    color: var(--color-white);
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--color-cream);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.hero-buttons .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
}

.carousel-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.carousel-indicator.active {
    background: var(--color-gold-light);
    width: 50px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--color-rose);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--color-charcoal);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
}

.divider-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: rotate(45deg);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 17px;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--color-cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-blush-light) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .lead {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-charcoal);
    margin-bottom: 25px;
    line-height: 1.5;
    font-style: italic;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-text-light);
    line-height: 1.9;
}

.about-text strong {
    color: var(--color-gold-dark);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-cream-dark);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-blush-light) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.service-card {
    background: var(--color-white);
    padding: 50px 35px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 165, 108, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cream);
    border-radius: 50%;
    color: var(--color-gold-dark);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--color-white);
    transform: rotate(360deg) scale(1.1);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    font-weight: 500;
}

.service-name-es {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--color-rose);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
}

.services-cta p {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-charcoal);
    margin-bottom: 25px;
    font-style: italic;
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-showcase {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #2C2620 0%, #3D332B 50%, #2C2620 100%);
    position: relative;
    overflow: hidden;
}

.video-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 165, 108, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 83, 110, 0.15) 0%, transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.video-showcase .section-header {
    position: relative;
    z-index: 2;
}

.section-subtitle.light {
    color: var(--color-gold-light);
}

.section-title.light {
    color: var(--color-white);
}

.section-description.light {
    color: var(--color-cream);
    opacity: 0.85;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 165, 108, 0.3);
    background: #000;
    aspect-ratio: 16/9;
}

.video-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 38, 32, 0.4), rgba(168, 83, 110, 0.4));
    cursor: pointer;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow:
        0 10px 40px rgba(201, 165, 108, 0.5),
        0 0 0 0 rgba(201, 165, 108, 0.6);
    animation: pulse-play 2s infinite;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 45px;
    height: 45px;
    margin-left: 5px;
}

@keyframes pulse-play {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(201, 165, 108, 0.5),
                    0 0 0 0 rgba(201, 165, 108, 0.6);
    }
    50% {
        box-shadow: 0 10px 40px rgba(201, 165, 108, 0.5),
                    0 0 0 25px rgba(201, 165, 108, 0);
    }
}

.video-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.video-decoration-1 {
    width: 250px;
    height: 250px;
    background: var(--gradient-gold);
    top: -80px;
    right: -80px;
    filter: blur(60px);
}

.video-decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-rose);
    bottom: -60px;
    left: -60px;
    filter: blur(60px);
}

@media (max-width: 768px) {
    .play-button {
        width: 75px;
        height: 75px;
    }
    .play-button svg {
        width: 32px;
        height: 32px;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(168, 83, 110, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-zoom {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    transition: var(--transition-smooth);
    transform: scale(0);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-cta {
    text-align: center;
}

.gallery-cta p {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    font-style: italic;
}

.gallery-cta .btn-outline {
    text-transform: none;
    letter-spacing: 0.5px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--color-blush-light) 0%, var(--color-cream) 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    background: var(--color-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-charcoal);
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-cream);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-label {
    font-size: 13px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-charcoal);
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-value:hover {
    color: var(--color-gold-dark);
}

.working-hours {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--color-cream-dark);
}

.working-hours h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    font-weight: 500;
}

.working-hours p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

/* Form */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-cream-dark);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-cream);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(201, 165, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1ebd5b 0%, #0e7a6c 100%);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-charcoal);
    padding: 60px 0 30px;
    color: var(--color-cream);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin: 0 auto 20px;
    filter: brightness(1.2);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--color-blush);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

.footer-links {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links a {
    color: var(--color-cream);
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.footer-sep {
    color: var(--color-gold);
    opacity: 0.6;
}

.footer-divider {
    width: 80px;
    height: 1px;
    background: var(--color-charcoal-light);
    margin: 0 auto 25px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-text-light);
    letter-spacing: 1px;
}

.footer-credit {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-top: 8px;
}

.footer-credit a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.75;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                    0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 38, 32, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 70px 80px;
    animation: fadeIn 0.3s;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 44px;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    user-select: none;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--color-gold-light);
    background: rgba(255,255,255,0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    line-height: 1;
    padding-bottom: 5px;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--gradient-gold);
    border-color: transparent;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-wrapper img {
        height: 450px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-smooth);
        gap: 25px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .navbar:not(.scrolled) .nav-menu .nav-link {
        color: var(--color-charcoal);
        text-shadow: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-logo .logo-img {
        height: 50px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .about-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

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

    .service-card {
        padding: 40px 25px;
    }

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

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .lightbox {
        padding: 60px 15px;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
        background: rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 36px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .image-wrapper img {
        height: 380px;
    }

    .image-accent {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -15px;
    }

    .contact-wrapper {
        padding: 35px 22px;
        gap: 35px;
    }

    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 24px;
    }

    .footer-logo img {
        height: 65px;
    }

    .footer-tagline {
        font-size: 16px;
        padding: 0 15px;
    }

    .footer-social {
        gap: 14px;
        margin-bottom: 30px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-social a svg {
        width: 20px;
        height: 20px;
    }

    .footer-links {
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .nav-container {
        padding: 0 18px;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-wrapper {
        padding: 28px 18px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 15px;
    }

    .image-wrapper img {
        height: 320px;
    }

    .service-card {
        padding: 35px 22px;
    }

    .service-title {
        font-size: 22px;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button svg {
        width: 28px;
        height: 28px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .working-hours h4 {
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .hero-title-script {
        font-size: 70px;
        margin-bottom: -10px;
    }

    .hero-title-main {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .btn {
        padding: 13px 24px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .stat-number {
        font-size: 28px;
    }

    .about-text .lead {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 6px;
    }

    .footer-sep {
        display: none;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

/* ===== LANDSCAPE PHONES ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 90px 0 40px;
    }

    .hero-title-script {
        font-size: 60px;
        margin-bottom: -5px;
    }

    .hero-title-main {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .scroll-indicator {
        display: none;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}
