/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a961;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a1a1a;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a961;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #c9a961;
}

.nav-link:hover::after {
  width: 100%;
}

/* ==================== HERO ==================== */
.hero {
  height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  opacity: 0.3;
  animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ==================== BUTTONS ==================== */
.btn {
  padding: 1rem 2.5rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}

.btn-primary {
  background: #c9a961;
  color: #fff;
}

.btn-primary:hover {
  background: #b89851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-submit {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
}

.btn-submit:hover {
  background: #c9a961;
}

/* ==================== ABOUT SECTION ==================== */
.section-about {
  background: #fff;
}

.about-content {
  text-align: center;
  padding: 2rem 0;
}

/* ==================== FULL IMAGE SECTIONS ==================== */
.full-image-section {
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.full-image-section:hover .full-image {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 3rem 2rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

/* ==================== VISION SECTION ==================== */
.section-vision {
  background: #f8f8f8;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.vision-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c9a961;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 169, 97, 0.2);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.vision-card p {
  color: #666;
  line-height: 1.6;
}

/* ==================== SPLIT CONTENT ==================== */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content.reverse {
  direction: rtl;
}

.split-content.reverse > * {
  direction: ltr;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ==================== FEATURE LIST ==================== */
.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #c9a961;
  color: #fff;
  border-radius: 50%;
  margin-right: 1rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ==================== ZONING SECTION ==================== */
.section-zoning {
  background: #fff;
}

.zoning-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.zoning-item {
  padding: 1.5rem;
  background: #f8f8f8;
  border-left: 4px solid #c9a961;
}

.zoning-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.zoning-item p {
  color: #666;
}

/* ==================== TOWERS SECTION ==================== */
.section-towers {
  background: #f8f8f8;
}

.towers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tower-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
}

.tower-card.featured {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  border: none;
}

.tower-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tower-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.tower-card h3 {
  font-size: 1.75rem;
  color: inherit;
}

.tower-badge {
  padding: 0.4rem 1rem;
  background: #c9a961;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 2px;
}

.tower-type {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #c9a961;
}

.tower-card.featured .tower-type {
  color: #c9a961;
}

.tower-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tower-features span {
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  font-size: 0.85rem;
  border-radius: 2px;
  color: #666;
}

.tower-card.featured .tower-features span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ==================== CONTACT SECTION ==================== */
.section-contact {
  background: #1a1a1a;
  color: #fff;
}

.section-contact .section-label {
  color: #c9a961;
}

.section-contact .section-title {
  color: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ccc;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-detail-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #c9a961;
}

.contact-detail-item p {
  color: #ccc;
  line-height: 1.6;
}

/* ==================== FORM ==================== */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: #c9a961;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #999;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #c9a961;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.875rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .split-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .split-content.reverse {
    direction: ltr;
  }
  
  .nav {
    gap: 1.5rem;
  }
  
  .vision-grid,
  .towers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav {
    display: none; /* Add mobile menu if needed */
  }
  
  .full-image-section {
    height: 60vh;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}