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

  :root {
      --primary: #0066ff;
      --primary-dark: #0052cc;
      --primary-light: #3385ff;
      --accent: #ffd700;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --gradient: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
      --gradient-light: linear-gradient(135deg, #3385ff 0%, #0066ff 100%);
  }

  body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--dark);
      overflow-x: hidden;
  }

  /* Navigation */
  nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 102, 255, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.3s ease;
  }

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

  @media (max-width: 900px) {
      .nav-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .logo {
          flex: 0 0 auto;
      }

      .mobile-cta {
          flex: 0 0 auto;
          margin-left: auto;
          margin-right: 0.5rem;
      }

      .mobile-menu-btn {
          flex: 0 0 auto;
      }
  }

  .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      z-index: 1002;
  }

  .logo::before {
      content: "◆";
      color: var(--accent);
      margin-right: 0.5rem;
      font-size: 1.5rem;
  }

  .nav-wrapper {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex: 1;
      justify-content: flex-end;
  }

  .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
  }

  .nav-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 500;
      white-space: nowrap;
  }

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

  .mobile-cta {
      display: none;
      padding: 0.5rem 1.2rem !important;
      font-size: 0.9rem !important;
  }

  @media (min-width: 901px) {
      .mobile-cta {
          display: none !important;
      }
  }

  /* Mobile Menu Button */
  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 5px;
      z-index: 1002;
  }

  .mobile-menu-btn span {
      display: block;
      width: 28px;
      height: 3px;
      background: white;
      margin: 6px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
  }

  .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Menu Overlay */
  .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: var(--primary-dark);
      transition: right 0.3s ease;
      z-index: 1001;
      padding-top: 80px;
      display: flex;
      flex-direction: column;
  }

  .mobile-nav.active {
      right: 0;
  }

  .mobile-nav-links {
      list-style: none;
      padding: 2rem;
      flex: 1;
  }

  .mobile-nav-links li {
      margin-bottom: 1.5rem;
  }

  .mobile-nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }

  .mobile-nav-links a:hover {
      color: var(--accent);
      padding-left: 10px;
  }

  /* Mobile Menu Overlay Background */
  .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 1000;
  }

  .mobile-overlay.active {
      display: block;
  }

  /* Navigation - Mobile Responsive Fix */

/* Small Mobile (425px and below) */
@media (max-width: 425px) {
    .nav-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo::before {
        content: "◆";
        font-size: 1.1rem;
        margin-right: 0.3rem;
    }
    
    .mobile-cta {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
    
    .mobile-menu-btn {
        padding: 2px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        margin: 5px 0;
    }
    
    /* Mobile Menu Adjustments */
    .mobile-nav {
        width: 85%;
    }
    
    .mobile-nav-links {
        padding: 1.5rem;
    }
    
    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 0.6rem 0;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .nav-container {
        padding: 0 0.6rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .mobile-cta {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.7rem !important;
    }
}

/* Ultra Small Mobile (320px) */
@media (max-width: 320px) {
    nav {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo::before {
        display: none; /* Hide diamond on very small screens */
    }
    
    .mobile-cta {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
    
    .mobile-menu-btn span {
        width: 20px;
    }
    
    /* Full width mobile menu on ultra small screens */
    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }
}

/* Ensure proper flex behavior on small screens */
@media (max-width: 425px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 0 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .mobile-cta {
        flex: 0 0 auto;
    }
    
    .mobile-menu-btn {
        flex: 0 0 auto;
    }
}

  .cta-btn {
      background: var(--accent);
      color: var(--dark);
      padding: 0.75rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
      white-space: nowrap;
  }

  .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  }

  .cta-btn-secondary {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
  }

  .cta-btn-secondary:hover {
      background: var(--primary);
      color: white;
  }

 /* Hero Section - Responsive Text */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 102, 255, 0.85), rgba(0, 82, 204, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23f0f0f0"/><path fill="%23e0e0e0" d="M0 540L40 520L80 560L120 530L160 550L200 520L240 560L280 540L320 520L360 550L400 530L440 560L480 540L520 520L560 550L600 530L640 560L680 540L720 520L760 550L800 530L840 560L880 540L920 520L960 550L1000 530L1040 560L1080 540L1120 520L1160 550L1200 530L1240 560L1280 540L1320 520L1360 550L1400 530L1440 560L1480 540L1520 520L1560 550L1600 530L1640 560L1680 540L1720 520L1760 550L1800 530L1840 560L1880 540L1920 520V1080H0Z"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

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

/* Desktop (default) */
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-subhead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-key-line {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-subhead {
        font-size: 1.3rem;
    }
    
    .hero-key-line {
        font-size: 1.1rem;
    }
}

/* Small Tablet (576px - 768px) */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-key-line {
        font-size: 0.95rem;
        padding: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-cta-group .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subhead {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .hero-key-line {
        font-size: 0.85rem;
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .secondary-ctas {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile (below 375px) */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-subhead {
        font-size: 0.95rem;
    }
    
    .hero-key-line {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subhead {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-key-line {
        margin-bottom: 1.5rem;
    }
}

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-subhead {
        font-size: 1.6rem;
    }
    
    .hero-key-line {
        font-size: 1.3rem;
    }
}

  .secondary-ctas {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
  }

  .secondary-ctas a {
      color: white;
      text-decoration: underline;
      transition: color 0.3s ease;
  }

  .secondary-ctas a:hover {
      color: var(--accent);
  }

  /* Section Styles */
  .section {
      padding: 5rem 2rem;
  }

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

  .section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      text-align: center;
      line-height: 1.1;
  }

  .section-copy {
      max-width: 800px;
      margin: 0 auto 2rem;
      text-align: center;
      font-size: 1.1rem;
      line-height: 1.8;
  }

  /* Why Choose Section */
  .why-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .why-item {
      padding: 2rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border-top: 4px solid var(--primary);
  }

  .why-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }

  .why-item strong {
      color: var(--primary);
      display: block;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
  }

    /* Price Grid */
  .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
  }

  .price-card {
      background: white;
      border: 2px solid #e0e0e0;
      border-radius: 15px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
  }

  .price-card:hover {
      border-color: var(--primary);
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
  }

  .price-card .property-type {
      font-weight: bold;
      color: var(--dark);
      margin-bottom: 0.5rem;
  }

  .price-card .price {
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: bold;
  }

  .price-note {
      font-style: italic;
      color: var(--gray);
      text-align: center;
      margin-top: 1rem;
  }

  .property-image {
      height: 200px;
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .property-image::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

  .property-icon {
      font-size: 4rem;
      color: white;
      z-index: 1;
  }

  .property-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--primary);
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: bold;
  }

  .price-card-content {
      padding: 1.5rem;
  }

  .property-title {
      font-size: 1.4rem;
      font-weight: bold;
      color: var(--dark);
      margin-bottom: 0.5rem;
  }

  .property-specs {
      display: flex;
      gap: 1.5rem;
      margin: 1rem 0;
      padding: 1rem 0;
      border-bottom: 1px solid #f0f0f0;
  }

  .spec-item {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: #666;
      font-size: 0.9rem;
  }

  .spec-icon {
      color: var(--primary);
      font-size: 1.1rem;
  }

  .property-price-wrapper {
      margin: 1.5rem 0;
  }

  .property-price-label {
      font-size: 0.85rem;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .property-price-value {
      font-size: 2.2rem;
      font-weight: bold;
      color: var(--primary);
      line-height: 1;
      margin-top: 0.3rem;
  }

  .property-price-currency {
      font-size: 1.2rem;
      font-weight: normal;
      color: #666;
  }

  .property-features {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
  }

  .property-features li {
      font-size: 0.85rem;
      color: #555;
      display: flex;
      align-items: center;
  }

  .property-features li::before {
      content: "•";
      color: var(--primary);
      margin-right: 0.5rem;
      font-size: 1.2rem;
  }

  .property-cta-row {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.5rem;
  }

  .property-cta {
      flex: 1;
      padding: 0.75rem;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .property-cta.primary {
      background: var(--primary);
      color: white;
  }

  .property-cta.primary:hover {
      background: var(--primary-dark);
  }

  .property-cta.secondary {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
  }

  .property-cta.secondary:hover {
      background: var(--primary);
      color: white;
  }

  .price-disclaimer {
      text-align: center;
      padding: 1.5rem;
      background: linear-gradient(135deg, #f8f9fa, #fff);
      border-radius: 15px;
      margin-top: 2rem;
      border: 1px solid #e0e0e0;
  }

  .price-disclaimer strong {
      color: var(--primary);
  }

  /* Location Times */
  .location-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 2rem;
  }

  .drive-times {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .time-badge {
      background: var(--light);
      padding: 1rem;
      border-radius: 10px;
      border-left: 4px solid var(--primary);
  }

  .time-badge strong {
      display: block;
      color: var(--primary);
      font-size: 0.9rem;
  }

  .location-cta-row {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
  }

  .location-cta-row a {
      padding: 0.5rem 1.5rem;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }

  .location-cta-row a:hover {
      background: var(--primary-dark);
  }

  /* Master Plan Highlights */
  .highlights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
  }

  .highlight-item {
      padding: 1.5rem;
      background: var(--gradient-light);
      color: white;
      border-radius: 10px;
      text-align: center;
  }

  /* Amenities */
  .amenities-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
  }

  .amenity-item {
      padding: 1rem;
      background: white;
      border-left: 3px solid var(--primary);
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  /* Payment Timeline - Enhanced Design */
  .payment-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 30px;
      padding: 3rem;
      color: white;
      margin: 2rem 0;
  }

  .payment-section h3 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 1rem;
      color: white;
  }

  .payment-subtitle {
      text-align: center;
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 3rem;
  }

  .payment-timeline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem 0;
  }

  .payment-timeline::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 10%;
      right: 10%;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      z-index: 0;
  }

  .payment-progress {
      position: absolute;
      top: 50%;
      left: 10%;
      height: 4px;
      background: var(--accent);
      z-index: 1;
      width: 0;
      animation: progressGrow 2s ease-out forwards;
  }

  @keyframes progressGrow {
      to { width: 80%; }
  }

  .payment-step {
      background: white;
      color: var(--primary);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
      min-width: 140px;
  }

  .payment-step:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .payment-step.highlight {
      background: var(--accent);
      color: var(--dark);
      transform: scale(1.1);
  }

  .payment-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
  }

  .payment-percent {
      font-size: 2.5rem;
      font-weight: bold;
      display: block;
      margin-bottom: 0.5rem;
  }

  .payment-label {
      font-size: 0.9rem;
      font-weight: 600;
  }

  .payment-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .payment-detail-item {
      text-align: center;
  }

  .payment-detail-item h4 {
    font-weight: 600;
      color: var(--accent);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
  }

  .payment-detail-item p {
      opacity: 0.9;
      font-size: 0.95rem;
  }

  /* Handover Section */
  .handover-section {
      background: white;
      border-radius: 20px;
      padding: 3rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 3rem;
      position: relative;
      overflow: hidden;
  }

  .handover-section::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
      opacity: 0.1;
  }

  .handover-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .handover-timeline {
      position: relative;
  }

  .timeline-item {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
      position: relative;
      padding-left: 60px;
  }

  .timeline-item::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 30px;
      bottom: -30px;
      width: 2px;
      background: #e0e0e0;
  }

  .timeline-item:last-child::before {
      display: none;
  }

  .timeline-icon {
      position: absolute;
      left: 10px;
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
  }

  .timeline-item.active .timeline-icon {
      background: var(--accent);
      color: var(--dark);
      animation: pulse 2s infinite;
  }

  .timeline-content h4 {
    font-weight: 600;
      color: var(--primary);
      margin-bottom: 0.3rem;
      font-size: 1.1rem;
  }

  .timeline-content p {
      color: var(--gray);
      font-size: 0.9rem;
  }

  .handover-info {
      padding: 2rem;
      background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
      border-radius: 15px;
  }

  .handover-info h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }

  .handover-highlight {
      background: var(--primary);
      color: white;
      padding: 1.5rem;
      border-radius: 10px;
      margin-top: 1.5rem;
      text-align: center;
  }

  .handover-highlight strong {
      display: block;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }

  /* Reviews */
  .reviews-container {
      max-width: 800px;
      margin: 2rem auto;
  }

  .review-item {
      padding: 1.5rem;
      background: white;
      border-left: 4px solid var(--accent);
      margin-bottom: 1rem;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      font-style: italic;
  }

  /* Contact Form */
  .contact-section {
      background: var(--light);
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 2rem;
  }

  .contact-info {
      padding: 2rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
      color: var(--primary);
      margin-bottom: 1.5rem;
  }

  .contact-info p {
      margin-bottom: 0.5rem;
  }

  .lead-form {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 2px solid #e0e0e0;
      border-radius: 5px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
  }

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

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .privacy-note {
      font-size: 0.85rem;
      color: var(--gray);
      margin-top: 1rem;
  }

  /* FAQ Section */
  .faq-container {
      max-width: 800px;
      margin: 2rem auto;
  }

  .faq-item {
      margin-bottom: 1.5rem;
      padding: 1.5rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .faq-question {
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
  }

  .faq-answer {
      line-height: 1.6;
      color: var(--dark);
  }

  /* Footer */
  footer {
      background: var(--dark);
      color: white;
      padding: 3rem 2rem 1rem;
  }

  .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2rem;
  }

  .footer-brand h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 700;
  }

  .footer-links h4 {
      margin-bottom: 1rem;
      color: var(--accent);
  }

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

  .footer-links a {
      color: white;
      text-decoration: none;
      line-height: 2;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--accent);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #444;
      opacity: 0.7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
      .nav-links {
          gap: 1rem;
      }

      .nav-links a {
          font-size: 0.9rem;
      }
  }

  @media (max-width: 1024px) {
      .nav-links a {
          font-size: 0.85rem;
      }

      .cta-btn {
          padding: 0.6rem 1.5rem;
          font-size: 0.9rem;
      }
  }

  @media (max-width: 900px) {
      .nav-wrapper {
          display: none;
      }

      .mobile-menu-btn {
          display: block;
      }

      .mobile-cta {
          display: inline-block;
      }
  }

  @media (max-width: 768px) {
      h1 {
          font-size: 2rem;
      }

      h2 {
          font-size: 1.8rem;
      }

      .nav-container {
          padding: 0 1rem;
      }

      .mobile-cta {
          padding: 0.4rem 1rem !important;
          font-size: 0.85rem !important;
      }

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

      .location-content,
      .contact-grid {
          grid-template-columns: 1fr;
      }

      .payment-timeline {
          flex-direction: column;
          gap: 2rem;
      }

      .payment-timeline::before,
      .payment-progress {
          display: none;
      }

      .payment-section {
          padding: 2rem 1rem;
          border-radius: 20px;
      }

      .payment-step {
          width: 200px;
          padding: 1.5rem 1rem;
      }

      .payment-details {
          grid-template-columns: 1fr;
          gap: 1.5rem;
      }

      .handover-section {
          padding: 2rem 1rem;
      }

      .handover-content {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .form-row {
          grid-template-columns: 1fr;
      }

      .section {
          padding: 3rem 1rem;
      }

      .hero {
          padding-top: 60px;
      }
  }

  @media (min-width: 901px) {
      .mobile-menu-btn,
      .mobile-nav,
      .mobile-overlay {
          display: none !important;
      }
  }

  /* Trust Badges */
  .trust-badges {
      display: flex;
      gap: 1rem;
      margin: 2rem 0;
      flex-wrap: wrap;
  }

  .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(0, 102, 255, 0.1);
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary);
  }

  .chat-widget {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--primary);
      color: white;
      padding: 1rem 1.5rem;
      border-radius: 50px;
      box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
      cursor: pointer;
      z-index: 999;
      transition: all 0.3s ease;
  }

  .chat-widget:hover {
      transform: scale(1.1);
      background: var(--primary-dark);
  }

/* CSS for Responsive Map */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .map-container {
        padding-bottom: 75%; /* Taller aspect ratio for mobile */
    }
}