/* css/contact.css */

/* Hero */
#contact-hero {
  position: relative;
  padding: 140px 0 100px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(14, 24, 42, 0.9), rgba(14, 24, 42, 0.95)), url('../assets/img/hero-checkss.png');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-hero-title span { color: var(--gold); }
.contact-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Google Rating Section */
#contact-rating {
  padding: 0 0 60px;
  background: var(--gray-50);
}
.rating-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border-left: 5px solid #4285F4;
}
.g-icon {
  width: 60px; height: 60px;
  background: rgba(66, 133, 244, 0.1);
  color: #4285F4;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.rating-info {
  flex: 1;
  margin: 0 30px;
}
.rating-info h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.stars {
  color: #FBBC05;
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars span {
  color: var(--navy);
  font-weight: 700;
  margin-left: 8px;
}
.rating-info p {
  color: #666;
  font-size: 0.95rem;
}

/* Contact Main Section */
#contact-main {
  padding: 80px 0 60px;
  background: var(--gray-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-info .sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.contact-info .sec-title span { color: var(--gold); }
.contact-info .sec-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.ci-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ci-ico {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ci-item:hover .ci-ico {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(245,166,35,0.15);
  color: var(--navy);
  background: var(--gold);
}
.ci-item:hover .ci-ico i {
  color: #fff;
}
.ci-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.ci-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.ci-val a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ci-val a:hover {
  color: var(--gold);
}

.cf-wrap {
  background: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.02);
  box-sizing: border-box;
  width: 100%;
}
.cf-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 30px;
  font-weight: 800;
}
.fg {
  margin-bottom: 20px;
}
.fg label {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.fc {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 1px solid #ddd;
  border-radius: 12px;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.fc::placeholder { color: #aaa; }
.fc:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.1);
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
select.fc {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 50%;
}
textarea.fc {
  resize: vertical;
  min-height: 120px;
}
.fsub {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.fsub:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245,166,35,0.3);
}

/* FAQ SECTION */
#contact-faq {
  padding: 40px 0 100px;
  background: var(--gray-50);
}
.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.faq-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}
.faq-header h2 span { color: var(--gold); }
.faq-header p {
  color: #666;
  font-size: 1.05rem;
}
.faq-col-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 24px 20px;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Map Section */
#contact-map {
  padding: 0;
  background: var(--gray-50);
}
.map-wrapper {
  padding: 10px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  margin: 0 auto 100px;
  max-width: 1200px;
}
.map-wrapper iframe {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Mobile Responsiveness */
@media(max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media(max-width: 768px) {
  body, html { overflow-x: hidden; }
  
  #contact-hero { padding: 120px 0 80px; }
  .contact-hero-title { font-size: 2.2rem; }
  .contact-hero-desc { font-size: 1rem; padding: 0 10px; }
  
  .rating-card { flex-direction: column; text-align: center; gap: 20px; padding: 24px 20px; }
  .rating-info { margin: 0; }
  .stars { justify-content: center; }
  
  #contact-main { padding: 60px 0 40px; overflow: hidden; }
  .contact-grid { text-align: left; }
  .contact-info .sec-title { font-size: 1.8rem; line-height: 1.3; }
  .contact-info .sec-desc { font-size: 0.95rem; margin-bottom: 30px; word-wrap: break-word; }
  .ci-val { font-size: 0.95rem; word-break: break-all; overflow-wrap: anywhere; }
  
  .cf-wrap { padding: 30px 20px; width: 100%; box-sizing: border-box; }
  .fr { grid-template-columns: 1fr; gap: 0; }
  
  #contact-faq { padding: 20px 0 60px; }
  .faq-header h2 { font-size: 1.8rem; }
  
  .map-wrapper { margin: 0 16px 60px 16px; padding: 8px; border-radius: 20px; box-sizing: border-box; }
  .map-wrapper iframe { height: 350px; border-radius: 12px; }
}
