/* ========== CONTACT PAGE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: box-shadow 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #0a3d62;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e67e22;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #0a3d62;
  transition: 0.2s;
}

/* ========== DROPDOWN MENU STYLES ========== */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #1e293b;
  font-weight: 500;
  transition: color 0.2s;
}

.dropdown-trigger:hover {
  color: #e67e22;
}

.dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: #e67e22;
  padding-left: 1.5rem;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tagline-icon i {
  font-size: 2.5rem;
  color: #e67e22;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero-content-centered h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content-centered p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-dots-horizontal {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background-color: rgba(255,255,255,0.9);
  transform: scale(1.2);
}

.hero-dot.active {
  width: 30px;
  border-radius: 10px;
  background-color: #e67e22;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 5rem 0;
  background: #ffffff;
}

.contact-wrapper {
  display: flex;
  gap: 4rem;
}

/* Left Column - Contact Info */
.contact-info {
  flex: 1;
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 24px;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  margin-bottom: 0.5rem;
}

.contact-underline {
  width: 60px;
  height: 3px;
  background-color: #e67e22;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.2rem;
  color: #e67e22;
}

.info-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0a3d62;
}

.info-details p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.social-connect h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #0a3d62;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e67e22;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #e67e22;
  color: white;
  transform: translateY(-3px);
}

/* Right Column - Contact Form */
.contact-form {
  flex: 1;
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
}

.contact-form h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  margin-bottom: 0.5rem;
}

.form-underline {
  width: 60px;
  height: 3px;
  background-color: #e67e22;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.required {
  color: #e67e22;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
}

.btn-submit {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

/* ========== FORM STATUS MESSAGES ========== */
.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-status.loading {
  background: #fef3e8;
  color: #e67e22;
  border-left: 4px solid #e67e22;
}

.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.form-status.error {
  background: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
}

/* Disabled button state */
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


/* ========== MAP SECTION ========== */
.map-section {
  padding: 0 0 5rem 0;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  display: block;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  display: inline-block;
  position: relative;
}

.header-underline {
  width: 60px;
  height: 3px;
  background-color: #e67e22;
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
}

.section-subheadline {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #e67e22;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: white;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.faq-question i {
  font-size: 0.8rem;
  color: #e67e22;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-col p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  text-decoration: none;
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e67e22;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #e67e22;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(70vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: left 0.3s;
  }
  .nav-links.active { left: 0; }
  .hamburger { display: flex; }
  
  .contact-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-content-centered h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-question h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-content-centered h1 {
    font-size: 2.0rem;
  }
  
  .hero-dots-horizontal {
    bottom: 80px;
    gap: 10px;
  }
  
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-dot.active {
    width: 20px;
  }
  
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .btn-submit {
    margin-top: 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    font-size: 0.75rem;
  }
  
  .social-links {
    justify-content: left;
  }
  
  .contact-info li {
    justify-content: left;
    font-size: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
  
  .footer-bottom a {
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 1.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
  }
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown-trigger i { display: inline-block; }
  .dropdown.active .dropdown-trigger i { transform: rotate(180deg); }
  .dropdown-menu a { padding: 0.5rem 1rem; font-size: 0.9rem; }
}