/* --- Core Variables --- */
:root {
    --primary-color: #0a0a0a;
    --accent-color: #00d2d3;
    --light-bg: #f8fcfc;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
body { background-color: var(--light-bg); overflow-x: hidden; color: #333; cursor: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* --- Custom Cursor --- */
.cursor-dot { width: 10px; height: 10px; background-color: var(--accent-color); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s; box-shadow: 0 0 15px var(--accent-color); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid var(--accent-color); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background-color 0.2s; transition-duration: 0.1s; transition-timing-function: ease-out; box-shadow: 0 0 20px rgba(0,210,211,0.3); }
.cursor-hover .cursor-outline { width: 70px; height: 70px; background-color: rgba(0, 210, 211, 0.15); border-color: transparent; }

.contact-spray-icon { position: absolute; pointer-events: none; color: var(--accent-color); font-size: 20px; z-index: 9997; animation: sprayAnim 1s forwards cubic-bezier(0.1, 0.8, 0.3, 1); filter: drop-shadow(0 0 5px var(--accent-color)); }
@keyframes sprayAnim {
    0% { transform: translate(-50%, -50%) scale(0.2) rotate(0deg); opacity: 1; }
    50% { opacity: 0.8; }
    100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.5) rotate(var(--rot)); opacity: 0; }
}
@media (hover: none) and (pointer: coarse) { body { cursor: auto; } .cursor-dot, .cursor-outline, .contact-spray-icon { display: none !important; } }

/* --- Navbar --- */
.site-header { position: fixed; top: 0; width: 100%; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 100; transition: background 0.4s ease, box-shadow 0.4s ease; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.3); }
.nav-logo-img { height: 45px; transition: var(--transition); }
.nav-logo-img:hover { transform: scale(1.1) rotate(2deg); filter: drop-shadow(0 0 10px rgba(0,210,211,0.5)); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.btn-call { border: 2px solid var(--primary-color); padding: 8px 20px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); background: transparent; color: var(--primary-color); position: relative; overflow: hidden; }
.btn-call::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-color); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; z-index: -1; }
.btn-call:hover { color: white; border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-call:hover::before { transform: scaleX(1); transform-origin: left; }
.menu-toggle { background: #111; border: none; width: 45px; height: 45px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; transition: var(--transition); }
.menu-toggle:hover { transform: rotate(90deg); box-shadow: 0 0 20px rgba(0,0,0,0.3); }
.bar { width: 20px; height: 2px; background-color: white; transition: 0.3s; }

/* Overlay Nav */
.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.98); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.5s ease; backdrop-filter: blur(10px); }
.nav-overlay.active { opacity: 1; visibility: visible; }
.close-btn { position: absolute; top: 30px; right: 50px; font-size: 4rem; color: white; background: none; border: none; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s; }
.close-btn:hover { color: var(--accent-color); transform: rotate(180deg) scale(1.2); }
.main-nav ul { list-style: none; text-align: center; }
.main-nav ul li { margin: 25px 0; transform: translateY(50px) scale(0.9); opacity: 0; transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.nav-overlay.active .main-nav ul li { transform: translateY(0) scale(1); opacity: 1; }
.main-nav ul li a { color: white; font-size: 4rem; font-weight: 900; -webkit-text-stroke: 1px transparent; transition: all 0.4s ease; position: relative; }
.main-nav ul li a:hover { color: transparent; -webkit-text-stroke: 2px var(--accent-color); text-shadow: 0 0 20px rgba(0,210,211,0.5); letter-spacing: 5px; }

/* --- Contact Hero Banner --- */
.contact-hero { height: 50vh; min-height: 400px; position: relative; display: flex; align-items: center; justify-content: center; color: white; text-align: center; padding-top: 80px; overflow: hidden; }
.hero-bg-anim { position: absolute; top: -10%; left: -10%; width: 120%; height: 120%; background: url('https://images.unsplash.com/photo-1557426272-fc759fdf7a8d?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover; animation: cinematicZoom 20s infinite alternate ease-in-out; z-index: 0; }
@keyframes cinematicZoom { 0% { transform: scale(1) translate(0,0); } 100% { transform: scale(1.15) translate(-2%, 2%); } }
.banner-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,210,211,0.5) 100%); z-index: 1; }
.banner-content { position: relative; z-index: 2; }
.tiny-label-white { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 30px; font-size: 0.85rem; font-weight: 800; letter-spacing: 3px; display: inline-block; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.contact-hero h1 { font-size: 5.5rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 10px; background: linear-gradient(to right, #fff, #b3ffff, #fff); background-size: 200% auto; color: transparent; -webkit-background-clip: text; background-clip: text; animation: shineText 4s linear infinite; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4)); }
@keyframes shineText { to { background-position: 200% center; } }
.hero-subtext { font-size: 1.3rem; font-weight: 400; opacity: 0.9; text-shadow: 0 5px 10px rgba(0,0,0,0.5); }

/* --- Animated Info Cards (3D Hover) --- */
.contact-info-section { padding: 60px 20px; position: relative; z-index: 10; margin-top: -100px; perspective: 1000px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.6); border-radius: 24px; padding: 40px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform-style: preserve-3d; transition: transform 0.1s linear, box-shadow 0.4s ease, border-color 0.4s ease; animation: floatCard 6s ease-in-out infinite; position: relative; }
.info-card::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    border-radius: 24px; 
    padding: 2px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(0,210,211,0.2)); 
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
    -webkit-mask-composite: xor; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude; 
    opacity: 0; 
    transition: opacity 0.5s ease; 
}
.info-card:hover::before { opacity: 1; }
.info-card:nth-child(2) { animation-delay: 1.5s; }
.info-card:nth-child(3) { animation-delay: 0.7s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.info-card:hover { box-shadow: 0 30px 60px rgba(0,210,211,0.2); border-color: transparent; z-index: 10; }

@keyframes pulseSoft { 0% { box-shadow: 0 0 0 0 rgba(0,210,211,0.6); } 70% { box-shadow: 0 0 0 20px rgba(0,210,211,0); } 100% { box-shadow: 0 0 0 0 rgba(0,210,211,0); } }
.icon-circle { width: 80px; height: 80px; background: linear-gradient(135deg, #e0f7f6 0%, #ffffff 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.05), inset 0 2px 5px rgba(255,255,255,1); transform: translateZ(40px); transition: var(--transition); }
.info-card:hover .icon-circle { transform: translateZ(60px) scale(1.1); animation: pulseSoft 1.5s infinite; background: var(--accent-color); }
.icon-circle i { font-size: 2.2rem; color: var(--accent-color); transition: var(--transition); }
.info-card:hover .icon-circle i { color: white; }
.info-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; color: #111; transform: translateZ(30px); }
.info-card p, .info-card a { color: #555; font-size: 1.1rem; transition: color 0.3s; font-weight: 500; transform: translateZ(20px); }
.info-card a:hover { color: var(--accent-color); text-decoration: underline; }
.card-socials { display: flex; gap: 15px; margin-top: 10px; transform: translateZ(25px); }
.card-socials a { background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #333; font-size: 1.2rem; transition: var(--transition); }
.card-socials a:hover { background: var(--accent-color); color: white; transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 20px rgba(0,210,211,0.3); }

/* --- Form and Maps Split Section (Drifting Orbs) --- */
.form-map-section { padding: 100px 20px 140px; position: relative; overflow: hidden; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
.orb-1 { width: 450px; height: 450px; background: #00d2d3; top: -50px; left: -150px; opacity: 0.3; animation: driftOrb1 15s infinite alternate ease-in-out; }
.orb-2 { width: 350px; height: 350px; background: #ff007f; bottom: -100px; right: 5%; opacity: 0.2; animation: driftOrb2 18s infinite alternate ease-in-out; }
@keyframes driftOrb1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(150px, 100px) scale(1.2); } }
@keyframes driftOrb2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-100px, -150px) scale(1.3); } }
.split-layout { display: flex; gap: 60px; }
.align-start { align-items: flex-start; }
.relative-z { position: relative; z-index: 2; }
.text-content { flex: 1; }
.image-content { flex: 1.2; perspective: 1000px; }

/* Sexy Glassmorphism Form */
.glass-form { background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(30px); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 30px; padding: 60px 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.05), inset 0 0 20px rgba(255,255,255,0.5); }
.tiny-label { display: inline-block; font-size: 0.85rem; font-weight: 800; color: var(--accent-color); background: rgba(0, 210, 211, 0.1); padding: 8px 20px; border-radius: 8px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 10px rgba(0,210,211,0.1); }
.contact-form-wrapper h2 { font-size: 3rem; font-weight: 900; margin-bottom: 15px; color: #111; letter-spacing: -1.5px; }
.contact-form-wrapper p { color: #555; margin-bottom: 40px; line-height: 1.7; font-size: 1.1rem; }

.custom-form { display: flex; flex-direction: column; gap: 25px; }
.input-group { position: relative; }
.input-icon { position: absolute; left: 25px; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 1.2rem; transition: var(--transition); z-index: 5; }
.textarea-icon { top: 25px; transform: none; }
.input-group input, .input-group textarea { width: 100%; padding: 20px 20px 20px 60px; border: 2px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.6); border-radius: 16px; font-size: 1.05rem; color: #222; font-weight: 500; transition: var(--transition); box-shadow: inset 0 2px 5px rgba(0,0,0,0.02); }
.input-focus-border { position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--accent-color); transition: width 0.4s ease, left 0.4s ease; border-radius: 0 0 16px 16px; opacity: 0; }
.input-group input:focus, .input-group textarea:focus { border-color: transparent; outline: none; background: #fff; box-shadow: 0 15px 35px rgba(0,210,211,0.1); transform: translateY(-2px); }
.input-group input:focus ~ .input-focus-border, .input-group textarea:focus ~ .input-focus-border { width: 100%; left: 0; opacity: 1; bottom: -2px; height: 3px; box-shadow: 0 0 10px var(--accent-color); }
.input-group input:focus + .input-icon, .input-group textarea:focus + .input-icon { color: var(--accent-color); transform: translateY(-50%) scale(1.1); }
.input-group textarea:focus + .textarea-icon { transform: scale(1.1); }

/* Magnetic Button Wrapper */
.magnetic-wrap { display: inline-block; position: relative; width: 100%; margin-top: 10px; }
.btn-whatsapp { width: 100%; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: white; border: none; padding: 22px 30px; font-size: 1.2rem; font-weight: 800; border-radius: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 15px; transition: transform 0.1s linear, box-shadow 0.4s ease; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3); overflow: hidden; position: relative; }
.btn-text { position: relative; z-index: 2; pointer-events: none; display: flex; align-items: center; gap: 10px; }
.btn-whatsapp i { font-size: 1.6rem; }
.btn-shine { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-20deg); animation: buttonShine 4s infinite; z-index: 1; pointer-events: none; }
@keyframes buttonShine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.magnetic-wrap:hover .btn-whatsapp { box-shadow: 0 25px 40px rgba(37, 211, 102, 0.5); }

/* Stunning Dual Maps Layout (3D) */
.maps-header { margin-bottom: 40px; }
.maps-header h2 { font-size: 2.8rem; font-weight: 900; color: #111; margin-bottom: 10px; letter-spacing: -1px; }
.maps-header p { color: #666; font-size: 1.15rem; }
.dual-maps-container { display: flex; flex-direction: column; gap: 35px; perspective: 1000px; }
.map-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform-style: preserve-3d; transition: transform 0.1s linear, box-shadow 0.4s ease; border: 1px solid rgba(0,0,0,0.05); }
.map-card:hover { box-shadow: 0 30px 60px rgba(0,210,211,0.2); z-index: 10; border-color: rgba(0,210,211,0.3); }
.map-card-header { padding: 25px 30px; display: flex; align-items: center; gap: 20px; background: rgba(250,250,250,0.9); border-bottom: 1px solid #eee; transform: translateZ(20px); }
.map-card-header i { font-size: 2rem; color: var(--accent-color); background: #fff; width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,210,211,0.15); }
.map-card-header h4 { font-size: 1.3rem; font-weight: 800; color: #111; margin-bottom: 3px; }
.map-card-header span { font-size: 0.95rem; color: #777; font-weight: 600; }
.iframe-container { height: 250px; width: 100%; transform: translateZ(10px); background: #eee; }
.iframe-container iframe { filter: grayscale(20%) contrast(110%); transition: filter 0.5s ease; }
.map-card:hover .iframe-container iframe { filter: grayscale(0%) contrast(100%); }

/* --- Footer --- */
.site-footer { background-color: #0a0a0a; color: #ffffff; padding: 80px 50px 20px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-color), transparent); opacity: 0.5; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-size: 2rem; font-weight: 900; margin-bottom: 20px; letter-spacing: 1px; }
.brand-col p { color: #aaa; line-height: 1.7; margin-bottom: 25px; font-size: 1rem; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.08); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.1rem; transition: var(--transition); }
.social-links a:hover { background: var(--accent-color); transform: translateY(-5px) scale(1.1); color: #000; box-shadow: 0 10px 20px rgba(0,210,211,0.3); }
.footer-col h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--accent-color); border-radius: 3px; transition: width 0.3s ease; }
.footer-col:hover h4::after { width: 60px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #aaa; transition: var(--transition); font-weight: 500; display: inline-block; }
.footer-col ul li a:hover { color: var(--accent-color); transform: translateX(8px); }
.contact-col p { color: #aaa; margin-bottom: 18px; display: flex; gap: 12px; font-size: 1.05rem; }
.contact-col i { color: var(--accent-color); margin-top: 5px; font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; text-align: center; color: #777; font-size: 0.95rem; font-weight: 500; }

/* --- Scroll Animations Classes --- */
.reveal-left, .reveal-right, .reveal-up, .reveal-fade { opacity: 0; transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-left { transform: translateX(-100px) scale(0.95); }
.reveal-right { transform: translateX(100px) scale(0.95); }
.reveal-up { transform: translateY(80px) scale(0.9); }
.reveal-fade { transform: scale(0.9) translateY(30px); filter: blur(10px); }
.active.reveal-left, .active.reveal-right, .active.reveal-up { opacity: 1; transform: translate(0) scale(1); }
.active.reveal-fade { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .split-layout { flex-direction: column; }
    .image-content { width: 100%; margin-top: 40px; }
    .contact-cards-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .site-header { padding: 15px 20px; }
    .contact-hero h1 { font-size: 3.5rem; }
    .contact-info-section { margin-top: -60px; }
    .glass-form { padding: 40px 25px; }
    .contact-form-wrapper h2 { font-size: 2.4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}