:root {
  --gold: #d4af37;
  --black: #0a0a0a;
  --silver: #c0c0c0;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

/* Base Styles */
body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--black);
  color: white;
}
a {
  text-decoration: none;
  color: var(--gold);
}

/* Hero Section with Video */
.contact-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.contact-hero .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gold);
  background-color: rgba(10,10,10,0.5);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  animation: fadeIn 1.5s ease-in-out;
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.25rem;
  color: var(--silver);
}
/* Flex Container */
.contact-form-section {
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.form-container {
  display: flex;
  gap: 4rem;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}

/* Form Side */
.form-side {
  flex: 1 1 500px;
  background-color: rgba(10,10,10,0.85);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px;
}

.form-side h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

/* Elegant Inputs */
.form-side input,
.form-side textarea {
  padding: 1rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 1rem;
  background-color: var(--black);
  color: white;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.form-side input:focus,
.form-side textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  outline: none;
}

.form-side textarea {
  min-height: 120px;
  resize: none;
}

/* Submit Button */
.form-side button {
  font-family: var(--font-sans);
  background-color: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem;
}

.form-side button:hover {
  box-shadow: 0 0 25px var(--gold);
  transform: translateY(-2px);
}

/* Social Media Side */
.social-side {
  flex: 1 1 250px;
  background-color: rgba(10,10,10,0.7);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.social-side h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 1rem;
}
.social-side p {
  color: #bbb;
  font-size: 0.9rem;
}
.btn,
.btn-outline {
  display: inline-block;
  text-align: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0;
  font-family: var(--font-sans);
  color: var(--silver);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.social-icons i {
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
    gap: 2rem;
  }
}


/* Info Section */
.contact-info {
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-card {
  background-color: rgba(10,10,10,0.7);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px;
  text-align: center;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--silver);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px var(--gold);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-cta .btn,
.hero-cta .btn-outline {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  
}

/* Primary */
.hero-cta .btn {
  background: var(--gold);
  color: var(--black);
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--gold);
}

/* Outline */
.hero-cta .btn-outline {
  border: 2px solid var(--gold);
  color: white;
}

.hero-cta .btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.form-trust {
  text-align: center;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 30px;
  opacity: 0.85;
}
.contact-faq {
  padding: 4rem 2rem;
  text-align: center;
}

.contact-faq h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

/* FAQ Items */
.faq-item {
  max-width: 700px;
  margin: 0 auto 1rem;
  background: rgba(10,10,10,0.7);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
}

/* Gold accent on hover */
.faq-question:hover {
  color: var(--gold);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  color: #ccc;
  font-size: 0.95rem;
  padding-bottom: 1rem;
}

/* ACTIVE STATE (you'll toggle with JS later) */
.faq-item.active .faq-answer {
  max-height: 200px;
}
.location-text {
  font-size: 14px;
  color: #bbb;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.8;
}
