/* ===== CONTACT PAGE — page-specific styles ===== */

/* Compact hero */
.page-hero { padding: 180px 0 80px; position: relative; border-bottom: 1px solid var(--glass-border); overflow: hidden; text-align: center; min-height: 45vh; display: flex; align-items: center; justify-content: center; }
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 56px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.page-hero h1 strong { font-weight: 600; background: linear-gradient(135deg, var(--teal), var(--lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 17px; color: var(--gray-mid); line-height: 1.7; }
/* Bilateral hero-tag lines (::before left + ::after right) */
.hero-tag::before,
.hero-tag::after { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, var(--teal), var(--lime)); }
.hero-tag::after { background: linear-gradient(270deg, var(--teal), var(--lime)); }

/* Grid-peek variants */
.peek-hero { width: 100%; height: 100%; top: 0; left: 0; mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 70%); }
.peek-contact { width: 1200px; height: 900px; top: 20%; right: -200px; mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, rgba(0,0,0,0.5) 0%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, rgba(0,0,0,0.5) 0%, transparent 75%); }

/* Contact section layout */
.contact-section { padding: 100px 0; position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; position: relative; z-index: 2; }

/* Info column */
.contact-info-wrap { display: flex; flex-direction: column; gap: 32px; }
.info-header h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 40px; margin-bottom: 16px; }
.info-block { background: rgba(10,10,10,0.6); border: 1px solid var(--glass-border); padding: 32px; backdrop-filter: blur(10px); }
.info-block h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 20px; color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.info-block h3 svg { width: 20px; height: 20px; color: var(--teal); }
.info-item { margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; font-weight: 500; }
.info-val { color: var(--gray-light); font-size: 15px; line-height: 1.6; }
.info-val a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.info-val a:hover { color: var(--teal); }
.portal-link { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 16px; transition: gap 0.3s; }
.portal-link:hover { gap: 12px; }

/* Booking form */
.booking-form-wrap { background: rgba(10,10,10,0.8); border: 1px solid var(--glass-border); padding: 48px; backdrop-filter: blur(20px); position: relative; }
.booking-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--teal), var(--lime)); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { margin-bottom: 24px; display: flex; flex-direction: column; }
.form-group label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 8px; }
.form-control { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); color: var(--white); padding: 16px; font-family: 'Gabarito', sans-serif; font-size: 15px; width: 100%; transition: all 0.3s; outline: none; border-radius: 0; -webkit-appearance: none; appearance: none; }
.form-control:focus { border-color: var(--teal); background: rgba(2,203,209,0.05); box-shadow: 0 0 15px rgba(2,203,209,0.1); }
.form-control::placeholder { color: var(--gray-dim); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2302cbd1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; cursor: pointer; }
select.form-control option { background: var(--dark-card); color: var(--white); padding: 12px; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Custom checkbox */
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 32px; cursor: pointer; }
.checkbox-group input[type="checkbox"] { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { width: 20px; height: 20px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; margin-top: 2px; }
.checkbox-group:hover input[type="checkbox"] ~ .checkmark { border-color: var(--teal); }
.checkbox-group input[type="checkbox"]:checked ~ .checkmark { background: rgba(2,203,209,0.2); border-color: var(--teal); }
.checkmark::after { content: ""; display: none; width: 5px; height: 10px; border: solid var(--teal); border-width: 0 2px 2px 0; transform: rotate(45deg); margin-bottom: 2px; }
.checkbox-group input[type="checkbox"]:checked ~ .checkmark::after { display: block; }
.checkbox-label { font-size: 13px; color: var(--gray-mid); line-height: 1.5; }
.checkbox-label a { color: var(--teal); text-decoration: none; }

/* Map section */
.map-section { padding: 80px 0; border-top: 1px solid var(--glass-border); position: relative; }
.map-header { max-width: 600px; margin-bottom: 40px; }
.map-header h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 40px; margin-bottom: 16px; }
.map-header h2 strong { font-weight: 600; }
.map-header p { color: var(--gray-mid); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.map-container { width: 100%; height: 450px; background: var(--dark-card); border: 1px solid var(--glass-border); position: relative; overflow: hidden; }
/* CSS filter converts standard Google Maps iframe into dark mode matching the neon theme */
.map-iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%) sepia(20%); }
.map-overlay-badge { position: absolute; top: 24px; left: 24px; background: rgba(10,10,10,0.9); backdrop-filter: blur(10px); border: 1px solid var(--teal); padding: 16px 24px; pointer-events: none; }
.map-overlay-badge h4 { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.map-overlay-badge p { color: var(--teal); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .page-hero h1 { font-size: 42px; }
}
@media (max-width: 600px) {
  .booking-form-wrap { padding: 32px 24px; }
}
