/* ================= QUICK CONTACT SECTION ================= */
.quick-contact-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* CONTACT CARD */
.contact-card {
    background: linear-gradient(180deg, #073c29 0%, #031c13 100%); /* Brand forest green gradient */
    border: 1px solid rgba(223, 169, 27, 0.15); /* Thin gold border tint */
    padding: 45px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 60, 41, 0.25);
    border-color: #dfa91b;
}

/* ICON */
.contact-icon {
    width: 68px;
    height: 68px;
    background: #dfa91b; /* Brand Accent Gold */
    color: #031c13;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(223, 169, 27, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.08) rotate(10deg);
}

.card-whatsapp .contact-icon {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-link {
    color: #dfa91b;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-link:hover {
    color: #ffffff;
}

.btn-card-action {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #dfa91b;
    color: #dfa91b;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-card-action:hover {
    background: #dfa91b;
    color: #031c13;
    box-shadow: 0 8px 20px rgba(223, 169, 27, 0.3);
}

.card-whatsapp .btn-card-action {
    border-color: #25d366;
    color: #25d366;
}

.card-whatsapp .btn-card-action:hover {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ================= CONTACT FORM SECTION ================= */
.contact-form-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #073c29 0%, #031c13 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.form-container-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(3, 28, 19, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* LEFT PANEL */
.contact-info-panel {
  background: rgba(0, 0, 0, 0.2);
  padding: 60px 50px;
  height: 100%;
}

.section-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #dfa91b !important;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.contact-info-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(223, 169, 27, 0.1);
  color: #dfa91b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  border: 1px solid rgba(223, 169, 27, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.info-content h6 {
  color: #ffffff;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.info-content p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: #dfa91b;
  color: #031c13;
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(223, 169, 27, 0.3);
  border-color: #dfa91b;
}

/* RIGHT PANEL (FORM) */
.contact-form-panel {
  padding: 60px 50px;
}

.contact-form-panel h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: 'Outfit', sans-serif;
}

.contact-form-panel .input-group {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-form-panel .input-group:focus-within {
  border-color: #dfa91b !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 4px rgba(223, 169, 27, 0.15);
}

.contact-form-panel .input-group span {
  color: #dfa91b;
  margin-right: 15px;
  font-size: 18px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  width: 100%;
  outline: none;
  font-size: 15px;
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-submit-form {
  width: 100%;
  padding: 16px;
  background: #dfa91b;
  color: #031c13;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(223, 169, 27, 0.25);
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(7, 60, 41, 0.3);
  background: #ffffff;
  color: #031c13;
}

/* ================= LOCATION SECTION ================= */
.location-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.location-detail-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.location-detail-card h2 span {
  color: #c9a34e;
}

.loc-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.loc-icon {
  width: 45px;
  height: 45px;
  background: rgba(201, 163, 78, 0.1);
  color: #c9a34e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  flex-shrink: 0;
}

.loc-info-item h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.loc-info-item p {
  margin: 5px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.btn-get-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-get-directions:hover {
  background: #c9a34e;
  color: #000;
  box-shadow: 0 10px 20px rgba(201, 163, 78, 0.3);
  transform: translateY(-3px);
}

.map-wrapper {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 8px solid #f8f8f8;
  transition: all 0.4s ease;
}

.map-wrapper:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* ================= FAQ SECTION ================= */
.contact-faq-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.faq-item {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #c9a34e;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.faq-question i {
  font-size: 20px;
  color: #c9a34e;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  margin-top: 15px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active {
  background: #fff;
  border-color: #c9a34e;
  box-shadow: 0 10px 30px rgba(201, 163, 78, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 5px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.btn-wa-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #25d366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-wa-alt:hover {
  background: #1ebf59;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* 📱 RESPONSIVE */
@media (max-width: 767px) {
  .why-section,
  .contact-faq-section {
    padding: 60px 0;
  }
}
