/*  contact.css – Contact Page Only (2025 Luxury)    */
/*  No header/footer – all in main.css               */
h2{
  text-align: center;
}

.contact-info{
  align-items: center;
}

.reveal-title {
  font-size: clamp(4.5rem, 11vw, 13rem);
  line-height: 0.9;
}

.reveal-title .line {
  display: block;
  overflow: hidden;
}

.reveal-title .line span {
  display: block;
  transform: translateY(110%);
}

.contact-hero .subtitle {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  margin-top: 40px;
  opacity: 0.92;
  max-width: 720px;
}

/* Contact Section */
.contact-section {
  padding: 180px 0;
  background: #0f0f0f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrapper h2,
.contact-info h2 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  margin-bottom: 40px;
  background: linear-gradient(90deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,238,255,0.2);
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.4s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00eeff;
  box-shadow: 0 0 30px rgba(0,238,255,0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 20px;
  color: #00ff88;
}

.form-success i {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-item i {
  font-size: 2rem;
  color: #00eeff;
  width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.info-item a,
.info-item p {
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
}

.info-item a:hover {
  color: #00eeff;
}

/* Map Teaser */
.map-teaser {
  padding: 180px 0;
  text-align: center;
  background: #000;
}

.map-teaser h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 24px;
}

.map-teaser p {
  font-size: 1.5rem;
  margin-bottom: 60px;
  opacity: 0.9;
}

.map-placeholder img {
  width: 100%;
  max-width: 900px;
  opacity: 0.7;
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .contact-section,
  .map-teaser { padding: 140px 0; }
}

@media (max-width: 480px) {
  .contact-section,
  .map-teaser { padding: 120px 0; }
  .info-item { flex-direction: column; }
  .info-item i { margin-bottom: 12px; }
}
/* ================================================= */
/*  UNIVERSAL LUXURY CTA BUTTON – Used Everywhere   */
/* ================================================= */

.btn-glow,
.btn-glow.large {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00eeff, #00ff88);
  color: #000;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 20px 56px;
  border: none;
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 50px rgba(0, 238, 255, 0.6);
  min-width: 240px;
  z-index: 1;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, #00ff88, #00eeff);
  border-radius: 60px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-glow:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 120px rgba(0, 238, 255, 0.9);
  color: #000;
}

/* Large variant – used on Contact & Services CTA */
.btn-glow.large {
  padding: 26px 72px;
  font-size: 1.35rem;
  min-width: 320px;
}

/* Mobile – slightly smaller but still gorgeous */
@media (max-width: 768px) {
  .btn-glow {
    padding: 18px 48px;
    font-size: 1.1rem;
    min-width: 220px;
  }
  .btn-glow.large {
    padding: 22px 60px;
    font-size: 1.25rem;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .btn-glow,
  .btn-glow.large {
    width: 100%;
    max-width: 340px;
    padding: 20px 40px;
    font-size: 1.2rem;
  }
  }
    
