/* =====================
   GLOBAL RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #007bff;
    --dark: #222;
    --light: #f9f9f9;
    --white: #ffffff;
    --border: #e0e0e0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    background: var(--light);
    color: #333;
}

.container {
    width: min(90%, 1200px);
    margin: auto;
}

/* =====================
   HEADER
===================== */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -5px;
    transition: .3s;
}

nav a:hover::after {
    width: 100%;
}

/* =====================
   HERO
===================== */
.hero-section {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url('images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero-section h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

.hero-section p {
    max-width: 600px;
    margin: auto;
    opacity: 0.9;
}

.hero-section .btn {
    background: var(--primary);
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

/* =====================
   SECTIONS
===================== */
section {
    padding: 70px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

/* =====================
   GRID & CARDS
===================== */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.images img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    transition: transform .4s;
}

.images img:hover {
    transform: scale(1.05);
}

.card {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    flex: 1 1 250px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform .3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* =====================
   CONTACT FORM
===================== */
.contact-section form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 18px;
}

.contact-section input,
.contact-section textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.contact-section button {
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background .3s;
}

.contact-section button:hover {
    background: #0056b3;
}

/* =====================
   FOOTER
===================== */
.footer {
    text-align: center;
    padding: 20px 0;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
        font-size: 14px;
    }

    .hero-section {
        padding: 80px 20px;
    }
    
}

/* LOCATION SECTION */
.location-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
}

.map-box {
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.distance-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.distance-box h4 {
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.distance-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.distance-box li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

.distance-box li:last-child {
  border-bottom: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-box {
    height: 300px;
  }
}

/* RERA NOTICE */
.rera-notice {
  background: #fff7e6;
  color: #7a5a00;
  text-align: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #f0d58c;
}

.rera-notice span {
  background: #d4af37;
  color: #000;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 6px;
  font-size: 12px;
}


