* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #000;
  --bg-secondary: #1a1a1a;
  --text-primary: #fff;
  --text-secondary: #ccc;
  --accent-gold: #d4af37;
  --accent-gold-hover: #b8941f;
  --border-color: #d4af37;
}

[data-theme="light"] {
  --bg-primary: #fff;
  --bg-secondary: #f8fafc;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --accent-gold: #d4af37;
  --accent-gold-hover: #b8941f;
  --border-color: #d4af37;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  background: var(--bg-primary);
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3) !important;
}

[data-theme="light"] .header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.top-bar {
  background: transparent;
  color: var(--accent-gold);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 30px;
}

.contact-info i {
  margin-right: 8px;
}

.social-links a {
  color: var(--accent-gold);
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--text-primary);
}

[data-theme="light"] .social-links a {
  color: var(--accent-gold);
}

[data-theme="light"] .social-links a:hover {
  color: var(--text-primary);
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 150px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--accent-gold);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-actions .cta-btn {
  display: none;
}

.theme-toggle {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--accent-gold-hover);
  transform: scale(1.1);
}

.cta-btn {
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
}

/* Optimize video loading */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.icon-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 30%;
  left: -10%;
  animation-delay: 1.5s;
}

.floating-icon img {
  width: 30px;
  height: 30px;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Features Section */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Highlights Section */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.highlight-item {
  padding: 30px;
  border-left: 4px solid var(--accent-gold);
  background: var(--bg-secondary);
  border-radius: 10px;
}

.highlight-item h4 {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.highlight-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Target Audience Section */
.target-audience {
  background: var(--bg-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.audience-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  padding: 30px;
  border-radius: 15px;
  border-bottom: 4px solid var(--accent-gold);
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
}

.audience-card h4 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.audience-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  background: var(--bg-secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 40px;
}

.stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  height: 700px;
  overflow: hidden;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: calc(25% - 15px);
  overflow: hidden;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--text-primary);
  line-height: 1.3;
  text-align: center;
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.contact-form-wrapper {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-form-wrapper iframe {
  border-radius: 15px !important;
  flex: 1;
  height: 100% !important;
  width: 100% !important;
  overflow: hidden !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-secondary);
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 240px;
  margin-bottom: 15px;
  filter: brightness(1);
}

[data-theme="light"] .footer-logo {
  filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(90%) contrast(90%);
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 8px;
  opacity: 0.9;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.footer-section .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-section .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--accent-gold);
}

.footer-section .social-links a:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

[data-theme="light"] .footer-section .social-links a {
  background: var(--bg-primary);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

[data-theme="light"] .footer-section .social-links a:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.footer-section .contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section .contact-info i {
  color: var(--accent-gold);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  text-align: center;
  opacity: 0.8;
  font-size: 12px;
  line-height: 1.4;
}

/* Plot Sizes Section */
.plot-sizes {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.plot-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.plot-card:hover {
  transform: translateY(-10px);
}

.plot-card.featured {
  border-color: var(--text-primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plot-size {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.plot-unit {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.plot-card h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.plot-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  padding: 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  margin-bottom: 25px;
}

.plot-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  text-align: center;
}

.plot-btn:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Gallery Actions */
.gallery-actions {
  text-align: center;
  margin-top: 40px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 700px;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
      opacity: 0;
      transform: translateY(-50px) scale(0.9);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

.close {
  color: var(--text-secondary);
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

.modal-header {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  padding: 40px 30px;
  text-align: center;
  color: var(--bg-primary);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-icon i {
  font-size: 2.5rem;
  color: var(--bg-primary);
}

.modal-header h3 {
  color: var(--bg-primary);
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.modal-header p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.modal-form-container {
  padding: 30px;
  background: var(--bg-primary);
}

.modal-form-container iframe {
  border-radius: 15px !important;
  overflow: hidden !important;
}

/* Gallery Page Styles */
.gallery-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://c.animaapp.com/mf87jqegyrn41k/assets/Nature-view-3-1-655x655.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  text-align: center;
  color: white;
}

.gallery-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.gallery-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.full-gallery {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.gallery-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--accent-gold);
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.full-gallery-grid .gallery-item {
  opacity: 1;
  transform: none;
}

.gallery-item.hidden {
  display: none;
}

/* Layout Section */
.layout-section {
  background: var(--bg-primary);
  padding: 80px 0;
}

.layout-image-container {
  max-width: 100%;
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layout-image {
  width: 60%;
  max-width: 600px;
  height: auto;
  transform: rotate(90deg);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.layout-image:hover {
  transform: rotate(90deg) scale(1.05);
}

/* Layout Lightbox */
.layout-lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.layout-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95%;
  max-height: 95%;
}

.layout-lightbox img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.layout-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

.layout-close:hover {
  color: var(--accent-gold);
}

/* Location & Route Section */
.location-route-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.location-route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  margin-top: 60px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease;
  align-items: center;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card:nth-child(even) {
  direction: rtl;
}

.location-card:nth-child(even) .location-content {
  direction: ltr;
}

.location-image {
  height: 500px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.02);
}

.location-content {
  padding: 60px 40px;
}

.location-content h3 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-weight: 600;
}

/* FAQ Page Styles */
.faq-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://c.animaapp.com/mf87jqegyrn41k/assets/Nature-view-3-1-655x655.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  text-align: center;
  color: white;
}

.faq-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.faq-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-primary);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
  font-size: 1.3rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 30px 25px;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

  .location-content p {
      font-size: 1rem;
  }

  .modal-content {
      margin: 2% auto;
      width: 95%;
  }

  .modal-header {
      padding: 30px 20px;
  }

  .modal-header h3 {
      font-size: 1.6rem;
  }

  #brochureForm {
      padding: 30px 20px;
  }

  .top-bar {
      display: none;
  }

  .section-header h2 {
      font-size: 2rem;
  }

  section {
      padding: 60px 0;
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      position: fixed;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      padding: 20px;
      box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  [data-theme="light"] .nav-menu {
      background: rgba(255, 255, 255, 0.95);
  }

  .nav-actions {
      flex-direction: column;
      gap: 10px;
  }

  .layout-image {
      border-radius: 10px;
      width: 80%;
      max-width: 400px;
      transform: rotate(90deg);
  }

  .layout-image:hover {
      transform: rotate(90deg) scale(1.05);
  }

  .layout-image-container {
      margin-top: 10px;
  }

  .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }

  .nav-toggle {
      display: flex;
  }

  .hero-text h1 {
      font-size: 2.5rem;
  }

  .hero-text p {
      font-size: 1.2rem;
  }

  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }

  .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .contact-layout {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .stats-sidebar {
      flex-direction: row;
      overflow-x: auto;
      padding: 15px;
      height: 600px;
      gap: 10px;
      justify-content: flex-start;
  }

  .stat-item {
      min-width: 100px;
      max-width: 120px;
      border-bottom: none;
      border-right: 1px solid rgba(212, 175, 55, 0.2);
      padding: 10px 8px;
      flex: none;
      max-height: none;
      overflow: hidden;
  }

  .stat-item:last-child {
      border-right: none;
  }

  .stat-number {
      font-size: 1.8rem;
      margin-bottom: 5px;
  }

  .stat-label {
      font-size: 0.8rem;
      line-height: 1.2;
      -webkit-line-clamp: 3;
  }

  .contact-form-wrapper {
      padding: 20px;
      height: 600px;
      overflow: hidden;
  }

  .contact-form-wrapper iframe {
      height: 100% !important;
      overflow: hidden !important;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .gallery-categories {
      flex-direction: column;
      align-items: center;
  }

  .category-btn {
      width: 200px;
  }

  .location-route-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .location-card {
      grid-template-columns: 1fr;
      direction: ltr !important;
  }

  .location-content {
      padding: 30px 20px;
  }

  .location-content h3 {
      font-size: 1.5rem;
  }

  .location-image {
      height: 300px;
  }

  .faq-question {
      padding: 20px;
  }

  .faq-question h3 {
      font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
      padding: 0 20px 20px;
  }

  .top-bar {
      display: none;
  }

  .section-header h2 {
      font-size: 2rem;
  }

  section {
      padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }

  .hero-text h1 {
      font-size: 2rem;
  }

  .hero-text p {
      font-size: 1rem;
  }

  .feature-card,
  .audience-card {
      padding: 25px 20px;
  }

  .stat-number {
      font-size: 3rem;
  }
}

/* --- Minor fixes only --- */

/* 1. Make all H1 headings theme gold */
h1,
.entry-title,
.page-title,
.post-title {
  color: var(--accent-gold) !important;
}

/* 2. Make main header navigation links gold */
.header .nav-menu a,
.header .nav-link,
.header .menu-item a {
  color: var(--accent-gold) !important;
}
/* Mobile-friendly contact layout fixes
   - Stacks the two columns on small screens
   - Removes fixed 700px heights that cause content to overflow offscreen
   - Makes iframe responsive and readable on phones
   - Adds bottom padding so fixed footer doesn't cover the form
*/

/* 1) Stack contact columns and remove fixed heights */
@media (max-width: 768px) {
  /* Make contact columns stack vertically */
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding-bottom: 120px; /* extra breathing room for fixed footer on mobile */
  }

  /* Make side stats a horizontal scroll block instead of a tall fixed column */
  .stats-sidebar {
    height: auto !important;
    min-height: 120px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding: 12px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .stat-item {
    min-width: 120px;
    max-width: 140px;
    flex: 0 0 auto;
    border-bottom: none;
    border-right: 1px solid rgba(212,175,55,0.12);
    padding: 12px;
    margin: 0;
  }

  /* Allow contact form wrapper to size to content (no forced 700px) */
  .contact-form-wrapper {
    height: auto !important;
    min-height: 360px;
    padding: 18px !important;
    overflow: visible !important;
  }

  /* Make iframe responsive and tall enough on phones */
  .contact-form-wrapper iframe,
  .contact-form iframe {
    width: 100% !important;
    height: 420px !important;
    min-height: 320px !important;
    border-radius: 12px !important;
  }
}

/* 2) Small phones adjustments */
@media (max-width: 480px) {
  .contact-layout {
    padding-bottom: 140px;
  }

  .contact-form-wrapper iframe,
  .contact-form iframe {
    height: 480px !important;
    min-height: 360px !important;
  }

  .stat-item {
    min-width: 100px;
    padding: 10px;
  }
}

/* 3) If your theme uses a fixed footer that overlaps content, this rule adds safe bottom space on small screens */
@media (max-width: 768px) {
  main#site-content,
  .site-content,
  .page-content {
    padding-bottom: 120px !important;
  }
}
/* ========== Mobile: force vertical stats & fix overlaps ========== */

/* Stack contact columns and make stats vertical on small devices */
@media (max-width: 768px) {

  /* Ensure contact area stacks and is not clipped */
  .contact-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding-bottom: 160px; /* buffer for mobile fixed footer/menu */
  }

  /* Make stats sidebar vertical block (no horizontal scroll) */
  .stats-sidebar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 16px !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Make each stat item full-width and stack */
  .stat-item {
    min-width: 0 !important;
    max-width: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(212,175,55,0.08);
    padding: 12px 10px !important;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  /* Let contact form wrapper grow naturally */
  .contact-form-wrapper {
    height: auto !important;
    min-height: 420px !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  .contact-form-wrapper iframe,
  .contact-form iframe {
    width: 100% !important;
    height: 520px !important; /* taller so form fields fit without scrolling */
    min-height: 420px !important;
  }

  /* If any element uses transform or negative margins that overlap, neutralize */
  .contact-layout > * {
    transform: none !important;
    margin: 0 !important;
  }
}

/* ========== Mobile: make nav/menu taller and scrollable so it doesn't hide form ========== */
@media (max-width: 768px) {

  /* If theme uses a fixed nav that pulls down a full-screen panel, make that panel scrollable */
  .nav-menu,
  .nav-menu.active,
  .main-navigation .nav-menu,
  .site-navigation .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100vh !important;         /* occupy full viewport */
    max-height: 100vh !important;     /* allow scrolling inside */
    overflow-y: auto !important;      /* enable internal scrolling */
    padding-top: calc( (var(--header-height, 80px)) + 12px ) !important; /* keep content below header */
    background: rgba(0,0,0,0.96) !important; /* ensure contrast; tweak if needed */
    -webkit-overflow-scrolling: touch !important;
    z-index: 99999 !important;
  }

  /* If header is fixed and overlays content, push page content down when nav is open.
     We can't detect open state via CSS alone reliably across themes, so add safe bottom padding */
  main#site-content,
  .site-content,
  .page-content {
    padding-bottom: 180px !important;
  }

  /* Also ensure menu items wrap and are easy to tap */
  .nav-menu a,
  .header .nav-menu a {
    display: block !important;
    padding: 18px 20px !important;
    white-space: normal !important;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .contact-form-wrapper iframe,
  .contact-form iframe {
    height: 640px !important;
    min-height: 480px !important;
  }

  .contact-layout {
    padding-bottom: 220px !important;
  }
}
/* === Mobile: ensure contact form is fully visible (including Submit button) === */
@media (max-width: 768px) {
  .contact-form-wrapper iframe,
  .contact-form iframe {
    height: 700px !important;   /* increase height */
    min-height: 600px !important;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper iframe,
  .contact-form iframe {
    height: 800px !important;   /* extra height for very small phones */
    min-height: 680px !important;
  }
}

/* === Fix mobile right-side white space / horizontal overflow === */
html, body {
  max-width: 100%;
  overflow-x: hidden; /* stop horizontal scroll */
}

img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-menu, .nav-menu a {
  white-space: normal !important; /* force menu items to wrap on small screens */
}
