/* ===== CONTACT.CSS ===== */
/* Maxfem International School - Contact Page Styles */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #90EE90;
  --secondary: #2E8B57;
  --accent: #228B22;
  --bg: #FFFFFF;
  --text: #222222;
  --text-light: #555555;
  --white: #FFFFFF;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --transition: 0.3s ease;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-tag {
  display: inline-block;
  background: rgba(46, 139, 87, 0.08);
  color: var(--secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
}

.section-header h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 12px auto 0;
  border-radius: 4px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 1200px;
  margin: 16px auto 0;
  font-weight: 400;
  font-family: var(--font-secondary);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  padding: 12px 32px;
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(46, 139, 87, 0.08);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #2E8B57;
  letter-spacing: 1.2px;
  transition: color 0.3s ease;
}

.logo:hover .logo-main {
  color: #228B22;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  color: #555555;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu ul {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  display: block;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: #222222;
  text-decoration: none;
  position: relative;
}

.nav-menu ul li a:hover {
  background: #90EE90;
  color: #2E8B57;
  transform: translateY(-2px);
}

.nav-menu ul li a.active {
  background: #90EE90;
  color: #2E8B57;
  font-weight: 600;
}

.nav-menu ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #2E8B57;
  border-radius: 4px;
}

.nav-actions {
  display: flex;
  gap: 8px;
  margin-left: 16px;
  align-items: center;
}

.btn-outline {
  background: transparent;
  color: #2E8B57;
  border-color: #2E8B57;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background: #2E8B57;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #2E8B57;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Horizontal Scrolling Announcement ===== */
.announcement-ticker {
  background: linear-gradient(135deg, #1a2e1a 0%, #2a4a2a 100%);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(144, 238, 144, 0.15);
  border-bottom: 1px solid rgba(144, 238, 144, 0.15);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scrollTicker 25s linear infinite;
  flex-shrink: 0;
}

.ticker-content.paused {
  animation-play-state: paused;
}

.ticker-item {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

.ticker-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.ticker-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.ticker-link:hover {
  color: var(--white);
  text-decoration: underline;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* ===== SECTION 1: HERO ===== */
.contact-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 40px 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1200px;
  margin: 0 auto 30px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== SECTION 2: CONTACT INFORMATION ===== */
.contact-info {
  background: #ffffff;
  padding-top: 80px;

}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(144, 238, 144, 0.12);
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.contact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(46, 139, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-detail a {
  color: var(--text-light);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--secondary);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 500;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 10px;
  transition: var(--transition);
}

.contact-btn:hover {
  color: var(--accent);
}

.contact-btn i {
  transition: var(--transition);
}

.contact-btn:hover i {
  transform: translateX(4px);
}

.contact-status {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

.contact-status.open {
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
}


/* ===== SECTION 3: CONTACT FORM ===== */
.contact-form-section {
  background: #f9fff9;
}

.form-wrapper {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

.form-content {
  width: 100%;
}

.form-content .section-tag {
  text-align: center;
  display: table;
  margin: 0 auto 12px;
}

.form-content h2 {
  text-align: center;
}

.form-content h2:after {
  margin: 12px auto 0;
}

.form-content p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid rgba(46, 139, 87, 0.12);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: #ffffff;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group .error-message {
  font-size: 0.8rem;
  color: #ef4444;
  display: none;
}

.form-group .error-message.show {
  display: block;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}

.form-image {
  display: none;
}



/* ===== SECTION 7: FAQS ===== */
.faqs {
  background: #f9fff9;
}

.faq-accordion {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(144, 238, 144, 0.1);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-question i {
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--secondary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.faq-answer a {
  color: var(--secondary);
  font-weight: 600;
  transition: var(--transition);
}

.faq-answer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== SECTION 8: SOCIAL CONNECTIONS ===== */
.social-connections {
  background: #ffffff;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(144, 238, 144, 0.1);
  transition: var(--transition);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.9);
}

.social-card.visible {
  opacity: 1;
  transform: scale(1);
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.social-card i {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.social-card span {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.social-card .social-followers {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.social-card.facebook i { color: #1877f2; }
.social-card.facebook:hover { border-color: #1877f2; }

.social-card.instagram i { color: #e4405f; }
.social-card.instagram:hover { border-color: #e4405f; }

.social-card.whatsapp i { color: #25d366; }
.social-card.whatsapp:hover { border-color: #25d366; }

/* ===== SECTION 9: QUICK CTA ===== */
.quick-cta {
  background: linear-gradient(135deg, #f8fdf8 0%, #eef6ee 100%);
  padding: 60px 0;
}

.cta-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  border: 1px solid rgba(144, 238, 144, 0.15);
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== SECTION 11: EMERGENCY CONTACT ===== */
.emergency-contact {
  background: var(--secondary);
  padding: 20px 0;
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.emergency-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.emergency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.emergency-item i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.emergency-item h4 {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.8;
  font-weight: 500;
}

.emergency-item p {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.emergency-item a {
  color: #fff;
  transition: var(--transition);
}

.emergency-item a:hover {
  opacity: 0.8;
}

.emergency-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.emergency-action .btn {
  padding: 8px 24px;
  font-size: 0.85rem;
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.success-modal.active {
  display: flex;
}

.success-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 450px;
  text-align: center;
  animation: modalPop 0.5s ease;
}

@keyframes modalPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.success-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.success-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ---------- Footer Logo ---------- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #2E8B57;
  letter-spacing: 1.2px;
  transition: color 0.3s ease;
}

.footer-logo:hover .footer-logo-main {
  color: var(--primary);
}

.footer-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  color: #a0b0a0;
  letter-spacing: 0.8px;
}

.footer-tagline {
  color: #c0d0c0;
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: #1a2e1a;
  color: #e0e8e0;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-col p {
  color: #c0d0c0;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #c0d0c0;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-info {
  background: transparent !important;
  padding: 0 !important;
}

.contact-info li i {
  width: 20px;
  color: var(--primary);
}

.newsletter-form {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: #a0b0a0;
}

.newsletter-form button {
  background: var(--secondary);
  border: none;
  color: var(--white);
  padding: 0 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #90a090;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .newsletter-form {
    max-width: 320px;
    margin: 12px auto 0;
  }
}


/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-image img {
    height: 300px;
  }

  .tour-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tour-image img {
    height: 300px;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .emergency-wrapper {
    gap: 12px;
  }

  .emergency-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: 4px 0 30px rgba(0,0,0,0.1);
    transition: 0.35s ease;
    overflow-y: auto;
    align-items: flex-start;
    gap: 0;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .nav-menu ul li a {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    gap: 10px;
  }

  .nav-actions .btn {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-icons {
    gap: 20px;
  }

  .hero-icons i {
    font-size: 1.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .tour-form-fields .form-row {
    grid-template-columns: 1fr;
  }

  .visit-features {
    grid-template-columns: 1fr 1fr;
  }

  .social-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 320px;
    margin: 12px auto 0;
  }

  .cta-wrapper {
    padding: 30px 24px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .emergency-contact {
    position: relative;
  }

  .emergency-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .emergency-item {
    width: 100%;
    justify-content: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonial-slide {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 360px;
    width: 100%;
  }

  .visit-features {
    grid-template-columns: 1fr;
  }

  .social-cards {
    grid-template-columns: 1fr 1fr;
  }

  .form-image img {
    height: 200px;
  }

  .tour-image img {
    height: 200px;
  }

  .map-placeholder {
    min-height: 300px;
  }

  .map-overlay i {
    font-size: 3rem;
  }

  .success-content {
    padding: 30px 20px;
  }

  .cta-wrapper {
    padding: 24px 16px;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }

  .testimonial-slide p {
    font-size: 0.95rem;
  }
}