/* ========================================
   CONTACT PAGE - PREMIUM DESIGN
   NO Custom Cursor | Static Images | Clean
   ======================================== */

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}
.preloader-content { text-align: center; }
.logo-pulse {
    width: 85px; height: 85px;
    margin: 0 auto 1.8rem;
    animation: breathe 3s ease-in-out infinite;
}
.logo-pulse img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    filter: drop-shadow(0 0 20px rgba(212,175,55,0.6)); 
}
@keyframes breathe { 
    0%, 100% { opacity: 0.6; transform: scale(1); } 
    50% { opacity: 1; transform: scale(1.05); } 
}
.preloader-text { 
    color: #d4af37; 
    font-size: 1rem; 
    letter-spacing: 7px; 
    font-family: 'Montserrat', sans-serif; 
    margin-bottom: 0.5rem; 
    font-weight: 600; 
}
.preloader-subtitle { 
    color: rgba(255,255,255,0.4); 
    font-size: 0.68rem; 
    letter-spacing: 5px; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 300; 
    text-transform: uppercase; 
}

/* ===== CONTACT HERO (STATIC - NO FLICKERING) ===== */
.contact-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* NO animation - completely static */
    filter: brightness(0.8) grayscale(0.1);
}

.hero-vignette {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-grain {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
    z-index: 1;
}

@keyframes grain {
    0%, 100% { transform: translate(0,0); }
    10% { transform: translate(-5%,-10%); }
    20% { transform: translate(-15%,5%); }
    30% { transform: translate(7%,-25%); }
    40% { transform: translate(-5%,25%); }
    50% { transform: translate(-15%,10%); }
    60% { transform: translate(15%,0%); }
    70% { transform: translate(0%,15%); }
    80% { transform: translate(3%,35%); }
    90% { transform: translate(-10%,10%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 85px;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 2px 5px rgba(0, 0, 0, 0.98);
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.7s; }
.hero-line:nth-child(2) { animation-delay: 0.9s; }
.hero-line:nth-child(3) { animation-delay: 1.1s; }

.hero-line-gold {
    color: #d4af37;
    font-style: italic;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-btn-primary {
    background: #d4af37;
    color: #0a0a0a;
    border: 1px solid #d4af37;
}

.cta-btn-primary:hover {
    background: transparent;
    color: #d4af37;
}

.cta-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(212,175,55,0.3);
}

.cta-btn-outline:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #d4af37, transparent);
    margin: 0 auto 0.5rem;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ===== SECTION UTILITIES ===== */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-dark {
    background: #1a1a1a;
}

/* ===== CONTACT METHODS CARDS ===== */
.contact-methods {
    background: #0a0a0a;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 4s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: grayscale(0.2);
}

.contact-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.phone-numbers,
.email-addresses {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.phone-link,
.email-link,
.whatsapp-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover,
.whatsapp-link:hover {
    color: #d4af37;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.studio-address {
    font-style: normal;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: #1a1a1a;
}

.container-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.form-layout-split {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.form-visual-side {
    position: relative;
    height: 100%;
    min-height: 700px;
}

.form-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
}

.form-visual-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.form-quote-box {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-icon-large {
    font-size: 3rem;
    color: #d4af37;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.form-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.98), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.quote-author {
    font-size: 0.9rem;
    color: #d4af37;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.95);
}

.form-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.trust-badge i {
    font-size: 2rem;
    color: #d4af37;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

.trust-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.95);
}

.form-content-side {
    background: #0a0a0a;
    padding: 4rem 3rem;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26,26,26,0.8);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    outline: none;
    background: rgba(26,26,26,0.95);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #d4af37;
    border: 1px solid #d4af37;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
}

.btn-submit:hover {
    background: transparent;
    color: #d4af37;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: #0a0a0a;
}

.map-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(212,175,55,0.2);
}

.google-map {
    width: 100%;
    height: 500px;
    /* ✅ REMOVED FILTERS - Shows real Google Maps colors */
}

.google-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-info-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(10,10,10,0.95);
    padding: 2rem;
    max-width: 350px;
    border: 1px solid #d4af37;
    backdrop-filter: blur(20px);
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-title i {
    color: #d4af37;
}

.map-address {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.map-contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-contact-info i {
    color: #d4af37;
    width: 20px;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #d4af37;
    color: #0a0a0a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-map-directions:hover {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
    background: #1a1a1a;
}

.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 4s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: grayscale(0.3);
}

.social-card:hover .social-card-bg {
    transform: scale(1.05);
}

.social-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.social-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
}

.social-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.social-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.social-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(26,26,26,0.8);
    border: 1px solid rgba(212,175,55,0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.testimonial-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.2);
}

.testimonial-content {
    padding: 2.5rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #d4af37;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    border-top: 1px solid rgba(212,175,55,0.2);
    padding-top: 1rem;
}

.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #d4af37;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ===== FINAL CTA ===== */
.final-cta {
    position: relative;
    padding: 10rem 3rem;
    background: #0a0a0a;
}

.final-cta-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    filter: brightness(0.85) grayscale(0.1);
}

.final-cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}

.final-cta .cta-title {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.final-cta .cta-description {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.95);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SUCCESS MODAL ===== */
.modal-premium {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,10,10,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-premium.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal-content-premium {
    background: rgba(26,26,26,0.98);
    padding: 4rem 3rem;
    border-radius: 0;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid #d4af37;
    backdrop-filter: blur(20px);
}

.modal-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal-content-premium h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-content-premium p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-modal-close {
    padding: 1rem 2.5rem;
    background: #d4af37;
    border: 1px solid #d4af37;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: transparent;
    color: #d4af37;
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

[data-reveal].revealed {
    animation: revealItem 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes revealItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .form-layout-split {
        grid-template-columns: 1fr;
    }
    
    .form-visual-side {
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-content-side {
        padding: 3rem 2rem;
    }
    
    .map-info-overlay {
        position: relative;
        top: 0; left: 0;
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .social-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .modal-content-premium {
        padding: 3rem 2rem;
    }
}