@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400;700&display=swap');

:root {
    /* New Professional Palette */
    --ivory: #FDFBF7;
    /* Soft Marfil - Main Background */
    --bg-dark: #0B0B0F;
    /* Elite Black - Alt Sections */
    --primary: #C9A24A;
    /* Metallic Gold */
    --primary-dark: #A67C37;
    --mexican-red: #A6192E;
    /* Mexican Red Accent */
    --text-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --gold-glow: rgba(201, 162, 74, 0.4);
    --gold-gradient: linear-gradient(135deg, #C9A24A 0%, #E5C385 50%, #C9A24A 100%);
    --white-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--ivory);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Cinematic Grain */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/black-paper.png');
    opacity: 0.08;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Intro Trailer --- */
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    color: var(--ivory);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1.2s ease;
}

.intro-content {
    width: 90%;
    max-width: 900px;
    text-align: center;
    position: relative;
}

.intro-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, transform 1.2s;
}

.intro-scene.active {
    opacity: 1;
    visibility: visible;
}

.intro-text-small {
    font-size: clamp(14px, 1.5vw, 18px);
    letter-spacing: 0.4em;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-title {
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.intro-subtitle {
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 300;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.skip-intro {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.skip-intro:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.intro-button {
    margin-top: 40px;
    padding: 15px 40px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: clamp(12px, 1vw, 16px);
    transition: 0.5s;
    overflow: hidden;
}

.intro-button:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* --- Section Layout --- */
.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

.bg-alt {
    background-color: #0d0d12;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.section {
    padding: clamp(60px, 10vw, 120px) 0;
}

.bg-alt {
    background-color: var(--bg-dark);
    color: var(--ivory);
}

.bg-alt .section-title {
    color: var(--primary);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 60px);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* --- Experiences Grid --- */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.exp-card {
    background: var(--bg-dark);
    border: 1px solid var(--gold-glow);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(201, 162, 74, 0.1);
    pointer-events: none;
}

.exp-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.exp-card.featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(74, 15, 27, 0.2), transparent);
}

.exp-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.exp-features {
    list-style: none;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.exp-features li {
    margin: 15px 0;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.6rem;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 5px 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Accordion --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--gold-glow);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ivory);
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-header i {
    transition: 0.4s;
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-content p {
    padding-bottom: 25px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid var(--gold-glow);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6);
    transition: 0.8s;
}

.gallery-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.gallery-item.w-2 {
    grid-column: span 2;
}

.gallery-item.h-2 {
    grid-row: span 2;
}

/* --- Videos --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.video-card {
    text-align: center;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--gold-glow);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 74, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    transition: 0.3s;
}

.video-card:hover .video-thumb img {
    filter: brightness(0.4);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}

.video-card h4 {
    font-size: 0.9rem;
    color: var(--primary);
}

/* --- Animation Reveals --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 25px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 11, 15, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--gold-glow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.brand span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* --- Hero Enhancements --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    /* Prevent parallax bleed */
}

/* Base Background with Dark Overlay */
.hero-bg {
    position: absolute;
    inset: -50px;
    /* Bleed for parallax */
    background:
        linear-gradient(to bottom,
            rgba(11, 11, 15, 0.6) 0%,
            rgba(74, 15, 27, 0.4) 50%,
            rgba(11, 11, 15, 0.95) 100%),
        url('../assets/santy.png');
    background-size: cover;
    background-position: top center;
    filter: brightness(0.6) contrast(1.1);
    z-index: 1;
    transition: transform 0.1s ease-out;
    /* Smooth parallax */
}

/* Stage Light Halo Behind Artist */
.hero-halo {
    position: absolute;
    width: 80vh;
    height: 80vh;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    filter: blur(50px);
    animation: halo-pulse 8s infinite alternate ease-in-out;
}

@keyframes halo-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
}

/* Subtle Golden Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* CSS-only Particles */
.hero-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, var(--primary) 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 150px 150px, 250px 250px;
    background-position: 0 0, 50px 50px;
    opacity: 0.2;
    animation: particles-float 20s infinite linear;
}

@keyframes particles-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-1000px);
    }
}

/* Museum Frame Effect */
.hero-frame {
    position: absolute;
    inset: clamp(20px, 4vw, 60px);
    border: 1px solid rgba(201, 162, 74, 0.2);
    pointer-events: none;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

/* Title reveal animation */
.reveal-hero-title {
    font-size: clamp(42px, 6vw, 90px);
    line-height: 0.9;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTitleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}

.reveal-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 32px);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroSubtitleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
    color: var(--ivory);
}

.hero-phrase {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.5vw, 20px);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes heroTitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleReveal {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Shine effect on main letters */
.shine-text {
    position: relative;
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
}

.shine-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    animation: gold-shine 6s infinite ease-in-out;
}

@keyframes gold-shine {
    0% {
        left: -150%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: 0.4s;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Button Upgrades */
.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow:hover {
    box-shadow: 0 0 25px var(--gold-glow), 0 0 50px rgba(201, 162, 74, 0.1);
}

.btn-animated-border {
    position: relative;
    border: 1px solid rgba(201, 162, 74, 0.3);
}

.btn-animated-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--primary);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
    opacity: 0;
    transition: 0.5s;
}

.btn-animated-border:hover::before {
    opacity: 1;
    animation: border-rotate 2s linear infinite;
}

@keyframes border-rotate {
    0% {
        clip-path: inset(0 0 95% 0);
    }

    25% {
        clip-path: inset(0 0 0 95%);
    }

    50% {
        clip-path: inset(95% 0 0 0);
    }

    75% {
        clip-path: inset(0 95% 0 0);
    }

    100% {
        clip-path: inset(0 0 95% 0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 2s infinite ease-in-out;
}

@keyframes mouse-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

.scroll-indicator .arrow {
    display: flex;
    flex-direction: column;
}

.scroll-indicator .arrow span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -4px;
    animation: arrow-bounce 2s infinite;
}

.scroll-indicator .arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes arrow-bounce {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* --- Quick Reservation --- */
.quick-res {
    margin-top: -60px;
    position: relative;
    z-index: 100;
    padding-bottom: 50px;
}

.quick-res-box {
    background: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-top: 5px solid var(--primary);
    text-align: center;
}

.quick-res-box h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 5px;
    color: var(--bg-dark);
    font-weight: 700;
}

.quick-res-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.experience-card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.5s;
    position: relative;
    box-shadow: var(--white-shadow);
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.exp-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.experience-card h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.exp-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.exp-details {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-res-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: flex-end;
}

.q-field {
    text-align: left;
}

.q-field label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.q-field input,
.q-field select {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    font-family: inherit;
    outline: none;
    background: #fdfdfd;
    color: var(--text-dark);
}

.btn-res {
    background: var(--mexican-red);
    color: white;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-res:hover {
    background: #8e1426;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 25, 46, 0.3);
}

@media (max-width: 991px) {
    .quick-res-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .quick-res {
        margin-top: -40px;
    }

    .quick-res-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Testimonials --- */
.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-glow);
    padding: clamp(40px, 8vw, 80px);
    text-align: center;
    position: relative;
}

.testimonial-quotes {
    font-size: 5rem;
    color: var(--primary);
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.8s;
}

.testimonial-text {
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
}

.testimonial-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-nav button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold-glow);
    color: var(--primary);
    transition: 0.3s;
}

.testimonial-nav button:hover {
    border-color: var(--primary);
    background: rgba(201, 162, 74, 0.1);
}

/* --- About Us --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--ivory);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features li i {
    color: var(--primary);
}

.about-visual {
    position: relative;
}

.visual-frame {
    border: 1px solid var(--primary);
    padding: 15px;
    position: relative;
}

.visual-frame img {
    filter: sepia(0.3) contrast(1.1);
}

/* --- Coverage & Tags --- */
.coverage-card {
    text-align: center;
    border: 1px solid var(--gold-glow);
    padding: 60px;
    background: linear-gradient(rgba(74, 15, 27, 0.1), transparent);
}

.city-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.city-tags span {
    padding: 8px 20px;
    border: 1px solid var(--gold-glow);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* --- Contact Form --- */
.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-glow);
    padding: clamp(30px, 5vw, 60px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-glow);
    padding: 15px;
    color: var(--ivory);
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block {
    width: 100%;
}

.form-alt {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid var(--gold-glow);
    padding-top: 30px;
}

.form-alt p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background: #050507;
    text-align: center;
    border-top: 1px solid var(--gold-glow);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 9500;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Final Mobile Adjustments --- */
@media (max-width: 800px) {

    .about-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Overflows */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-frame {
        inset: 15px;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .gallery-item.w-2 {
        grid-column: span 1;
    }
}