/* ===== Root & Reset ===== */
:root {
  --primary: #1a4a2e;
  --primary-dark: #0f3320;
  --accent: #d4a843;
  --accent-light: #f0d080;
  --dark: #0a0a0a;
  --dark-2: #1a1a1a;
  --text: #e0e0e0;
  --text-muted: #999;
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.highlight {
  color: var(--accent);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #b8922e);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-block { width: 100%; justify-content: center; }

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  gap: 8px;
}

.loader span {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }
.loader span:nth-child(4) { animation-delay: 0.6s; }

@keyframes bounce {
  to { transform: translateY(-20px); opacity: 0.5; }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent), #b8922e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(10,10,10,0.5), rgba(10,10,10,0.85));
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease 0.2s both;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease 0.4s both;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-rera-box {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.1);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease 0.7s both;
  font-weight: 700;
  color: var(--accent);
  backdrop-filter: blur(4px);
}

.hero-rera-box strong {
  color: #fff;
  font-weight: 800;
}

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

.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 60px;
  animation: fadeInUp 1s ease 1s both;
}

.hero-stats div {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stats span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ===== About ===== */
.about {
  background: linear-gradient(180deg, var(--bg), var(--dark-2));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-exp {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(212, 168, 67, 0.9);
  color: var(--dark);
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  backdrop-filter: blur(10px);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}

.about-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.about-features div:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--accent);
}

.about-features i {
  color: var(--accent);
}

.completed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.completed-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.completed-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.completed-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

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

.completed-item h4 {
  padding: 15px 20px;
  text-align: center;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
  background: var(--glass);
}

/* ===== Highlights ===== */
.highlights {
  background: var(--dark-2);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.highlight-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.h-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.highlight-card:hover .h-icon {
  background: var(--accent);
  color: var(--dark);
}

.highlight-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Location ===== */
.location {
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
}

.location-list i {
  color: var(--accent);
  font-size: 1.1rem;
}

.address-box {
  margin-top: 25px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.address-box i {
  font-size: 2rem;
  color: var(--accent);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* ===== Specs ===== */
.specs {
  background: var(--dark-2);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: var(--shadow);
}

.spec-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.spec-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.spec-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Floor Maps ===== */
.maps {
  background: var(--bg);
}

.maps-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.map-tab {
  padding: 12px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.map-tab:hover,
.map-tab.active {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.maps-display {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.maps-display img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: var(--dark-2);
  transition: opacity 0.5s ease;
}

/* ===== Audience ===== */
.audience {
  background: var(--dark-2);
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.audience-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px 35px;
  text-align: center;
  transition: var(--transition);
  min-width: 160px;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: rgba(212, 168, 67, 0.05);
}

.audience-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.audience-card h4 {
  font-size: 0.95rem;
}

/* ===== Projects ===== */
.projects {
  background: var(--bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.project-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0 0 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 18px;
  transition: var(--transition);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: var(--transition);
}

.project-card:hover::after {
  transform: translateX(100%);
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.3);
}

.project-icon {
  width: 65px;
  height: 65px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.project-card:hover .project-icon {
  background: var(--accent);
  color: var(--dark);
}

.project-card h4 {
  margin-bottom: 6px;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--dark-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateX(5px);
}

.contact-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 2px;
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 35px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(212, 168, 67, 0.05);
}

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

/* ===== Footer ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-contact i {
  width: 20px;
  color: var(--accent);
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), #b8922e);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 2rem; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 30px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-toggle { display: block; }

  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 25px; flex-wrap: wrap; }
  .hero-stats div { min-width: 100px; }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img { height: 300px; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }

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

  .maps-display img { height: 300px; }

  .contact-form { padding: 25px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .highlights-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }

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

  .maps-tabs { flex-direction: column; align-items: center; }
  .map-tab { width: 200px; text-align: center; }

  .audience-card { min-width: 140px; }
}
