/* RESET */

:root {
  /* Premium Luminous Gold Theme */
  --gold-primary: #f1b814;       /* High-contrast gleaming luxury gold */
  --gold-primary-hover: #d19f0e; /* Deeper golden bronze for interactive hover */
  --gold-primary-light: #fef0cd; /* Warm luminous champagne */
  
  /* Vibrant Midnight Royal Navy Theme */
  --navy-dark: #0f2042;          /* Rich Royal Navy */
  --navy-medium: #1b3875;        /* Luminous Midnight Blue */
  --navy-light: #2b54ab;         /* Luminous Blue Accent */
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* HERO SECTION */

.hero {
  min-height: 70vh;

  background:
    linear-gradient(
      rgba(10, 20, 50, 0.5),
      rgba(10, 20, 50, 0.5)
    ),
    url("Banner-one32-scaled.webp");

  background-size: cover;
  background-position: center;

  color: white;
}

/* TOP BAR */

.topbar {
  min-height: 42px;
  padding: 8px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.right-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.right-icons svg {
 /* fill: white; */
}
.contact-info,
.socials {
  display: flex;
  gap: 24px;
}

.contact-info span {
  font-size: 14px;
}

/* NAVBAR */

.navbar {
  min-height: 90px;

  padding: 10px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo img {
  width: 110px;
  height: auto;
}

.navbar nav {
  display: flex;
  gap: 32px;
}

.navbar nav a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 15px;
}

.navbar nav a.active {
  color: var(--gold-primary);
}

.quote-btn {
  border: none;
  background: var(--gold-primary);
  color: white;

  padding: 16px 30px;

  border-radius: 999px;
  cursor: pointer;

  font-weight: 700;
}

/* MAIN HERO */

.hero-content {
  max-width: 1400px;

  margin: 0 auto;

  padding: 80px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* LEFT CONTENT */

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text h3 {
  color: var(--gold-primary);
  margin-bottom: 30px;
  font-size: 26px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 850px;
}

/* BUTTONS */

.buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
}

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

.secondary {
  border: 2px solid white;
  color: white;
}

/* FORM CARD */

.form-card {
  width: 100%;
  max-width: 400px;

  background: white;
  color: black;

  border-radius: 25px;

  padding: 40px;
}

.form-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 34px;
}

.form-card form {
  display: flex;
  flex-direction: column;
}

.form-card label {
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-card input {
  height: 52px;

  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;

  padding: 0 15px;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-card input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(241, 184, 20, 0.15);
}

.form-card button {
  margin-top: 30px;

  height: 52px;

  border: none;
  cursor: pointer;

  background: var(--gold-primary);
  color: white;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

.about-section {
  background: #f6f6f6;
  padding: 100px 0;
}

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

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;

  padding: 0 20px;
}

/* IMAGE */

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* CONTENT */

.about-content {
  flex: 1;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 58px;
  font-weight: 800;
  color: #222;

  margin-top: 15px;
  margin-bottom: 35px;
}

.about-content p {
  color: #6f6f6f;
  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 25px;
}

/* BUTTON */

.call-btn {
  margin-top: 20px;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: var(--gold-primary);
  color: white;

  text-decoration: none;
  font-weight: 700;

  padding: 16px 30px;
  border-radius: 999px;

  transition: 0.3s;
}

.call-btn:hover {
  background: var(--gold-primary-hover);
}

.price-section {
  display: flex;
  align-items: center;
  min-height: 60vh;
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-medium) 50%,
    var(--navy-light) 100%
  );
background:
    radial-gradient(
      circle at top left,
      rgba(10, 17, 40, 0.88) 0%,
      rgba(28, 37, 65, 0.78) 100%
    ),
    url("bg-image (1).jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: visible;
  position: relative;
}

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

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 80px;
  padding: 0 20px;
}

/* LEFT CONTENT */

.price-content {
  flex: 1;
  color: white;
}

.price-tag {
  color: var(--gold-primary);
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}

.price-content h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 30px;
}

.price-content p {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

/* BUTTONS */

.price-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  font-weight: 700;

  padding: 16px 30px;
  border-radius: 999px;

  transition: 0.3s;
}

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

.primary-btn:hover {
  transform: translateY(-2px);
}

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

.secondary-btn:hover {
  background: white;
  color: var(--navy-dark);
}

/* RIGHT IMAGE */

.price-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.image-border {
  position: absolute;

  width: 100%;
  height: calc(100% - 40px);

  border: 2px solid white;

  top: 20px;
  left: 20px;

  z-index: 1;
}

.price-image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 500/360;

  object-fit: cover;

  position: relative;
  z-index: 2;
}
.floor-plan-section {
  background: #f6f6f6;
  padding: 100px 20px;
}

/* HEADER */

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

.section-tag {
  display: inline-block;

  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 64px;
  font-weight: 800;
  color: #1f1f1f;
}

/* GRID */

.floor-plan-grid {
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */

.plan-card {
  background: #fff;

  box-shadow: 0 4px 16px rgba(0,0,0,0.12);

  text-align: center;

  padding-bottom: 35px;

  transition: 0.3s ease;
  overflow: hidden;
}

.plan-card:hover h3{
color:blue
}
/* Image zooms */
.plan-card:hover img {
  transform: scale(1.08);
  
}
.plan-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease-in-out;
}

.plan-card h3 {
  font-size: 16px;
  font-weight: 500;

  margin: 28px 20px;
  min-height: 40px;

  color: #222;
}

/* DOWNLOAD BUTTON */

.download-btn {
  display: inline-block;

  text-decoration: none;
  color: white;

  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-primary-hover)
  );

  padding: 14px 32px;

  border-radius: 999px;

  font-size: 18px;
  font-weight: 500;

  min-width: 140px;
}

.location-contact-section {
  background: #f8f8f8;
  padding: 100px 20px;
}

/* LOCATION CARD */

.location-card {
  max-width: 1060px;
  margin: 0 auto 120px;

  display: flex;
  min-height: 450px;
  flex-wrap: wrap;

  overflow: hidden;
  border-radius: 30px;

  background: linear-gradient(
    135deg,
    var(--navy-dark),
    var(--navy-medium)
  );
}

.location-map {
  width: 48%;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  width: 52%;

  padding: 60px 70px;

  color: white;
}

.location-tag {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 15px;
}

.location-info h2 {
  margin: 20px 0;
  font-size: 58px;
  font-weight: 800;
}

.location-info p {
  font-size: 22px;
}

/* CONTACT */

.contact-wrapper {

  background-image:
    linear-gradient(rgba(248,248,248,0.88), rgba(248,248,248,0.98)),
    url("mobile-app-img-3.png");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 32% auto;

}

.contact-wrapper h3 {
  text-align: center;

  font-size: 64px;
  font-weight: 300;

  color: #222;

  margin-bottom: 20px;
}

.contact-wrapper h2 {
  text-align: center;

  font-size: 72px;
  font-weight: 800;

  color: #1e1e1e;

  margin-bottom: 80px;
}

/* FORM */
.contact-form {
  max-width: 1200px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;

  font-size: 15px;
  font-weight: 600;

  color: #6f6f6f;
}

.form-group span {
  color: red;
}

.form-group input,
.form-group textarea {
  width: 100%;

  border: 1px solid #d8d8d8;
  border-radius: 8px;

  padding: 15px;

  outline: none;

  background: white;

  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(241, 184, 20, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.full-width {
  margin-top: 30px;
}

.submit-btn {
  margin-top: 30px;

  background: var(--gold-primary);
  color: white;

  border: none;

  padding: 16px 40px;

  border-radius: 999px;

  cursor: pointer;

  font-size: 16px;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  /* About Section Stacking and Centering */
  .about-container {
    flex-direction: column !important;
    gap: 40px !important;
    text-align: center !important;
  }
  .about-image {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
  }
  .about-content h2 {
    font-size: 36px !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  .about-content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }
  .about-section {
    padding: 60px 0 !important;
  }

  /* Location Card & Map Height Correction */
  .location-card {
    flex-direction: column;
    min-height: auto !important;
  }

  .location-map {
    width: 100% !important;
    height: 350px !important; /* Prevents container collapsing when flex-direction is column */
  }

  .location-info {
    width: 100% !important;
    padding: 40px 30px !important;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-wrapper h3 {
    font-size: 42px;
  }

  .contact-wrapper h2 {
    font-size: 50px;
    margin-bottom: 40px !important; /* Save vertical spacing */
  }

  .location-info h2 {
    font-size: 42px;
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .floor-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* RESPONSIVE */




/* RESPONSIVE */

@media (max-width: 1024px) {
    .price-container {
    flex-direction: column;
  }

  .price-content {
    text-align: center;
  }

  .price-buttons {
    justify-content: center;
  }

  .price-content h2 {
    font-size: 42px;
  }

  .image-border,
  .price-image-wrapper img {
    width: 100%;
    max-width: 500px;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .form-card {
    width: 100%;
    max-width: 500px;
  }

  .hero-text h1 {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
    .floor-plan-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 40px;
  }
  .price-content h2 {
    font-size: 34px;
  }

  .price-content p {
    font-size: 16px;
  }

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

  .price-image-wrapper img {
    height: auto;
  }
  .navbar nav {
    display: none;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .topbar {
    flex-direction: column;
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  
}

/* ===== FOOTER ===== */

.site-footer {
  background:
    radial-gradient(
      circle at top left,
      rgba(10, 17, 40, 0.88) 0%,
      rgba(28, 37, 65, 0.78) 100%
    ),
    url("bg-image (1).jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 70px 20px 0;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Brand column */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* Generic columns */
.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li::after {
  content: '';
  display: block;
  margin-top: 12px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-col ul li:last-child::after {
  display: none;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0 0 6px;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-copy a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--gold-primary);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== ONE32 PAGE STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

.one32-page {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
}

/* ── TOP BAR ── */

.o32-topbar {
  background: #fff;
  border-bottom: 1px solid #ebebeb;

  min-height: 42px;
  padding: 8px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.o32-contact-info {
  display: flex;
  gap: 30px;
}

.o32-topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #444;
}

.o32-topbar-item i {
  color: var(--gold-primary);
}

.o32-socials {
  display: flex;
  gap: 14px;
}

.o32-social-icon {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.o32-social-icon:hover {
  color: var(--gold-primary);
}

/* ── NAVBAR ── */

.o32-navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);

  min-height: 80px;
  padding: 10px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;

  position: sticky;
  top: 0;
  z-index: 100;
}

.o32-logo img {
  width: 110px;
  height: auto;
}

.o32-nav {
  display: flex;
  gap: 32px;
}

.o32-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.o32-nav a:hover {
  color: var(--gold-primary);
}

.o32-nav a.active {
  color: var(--gold-primary);
}

.o32-quote-btn {
  border: none;
  background: var(--gold-primary);
  color: white;

  padding: 14px 28px;

  border-radius: 999px;
  cursor: pointer;

  font-weight: 700;
  font-size: 14px;

  transition: background 0.2s, transform 0.2s;
}

.o32-quote-btn:hover {
  background: var(--gold-primary-hover);
  transform: translateY(-1px);
}

/* ── HERO ── */

.o32-hero {
  background:
    radial-gradient(
      circle at top left,
      rgba(10, 17, 40, 0.88) 0%,
      rgba(28, 37, 65, 0.78) 100%
    ),
    url("bg-image (1).jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 70vh;
  display: flex;
  align-items: center;

  padding: 80px 40px;
}

.o32-hero-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.o32-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.o32-hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.o32-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}

.o32-hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.o32-btn {
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, background 0.2s;
}

.o32-btn:hover {
  transform: translateY(-2px);
}

.o32-btn-primary {
  background: var(--gold-primary);
  color: white;
}

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

.o32-btn-secondary:hover {
  background: white;
  color: var(--navy-dark);
}

/* ── HIGHLIGHTS ── */

.o32-highlights {
  background: #f6f6f6;
  padding: 90px 40px;
}

.o32-highlights-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.o32-highlight-card {
  background: white;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.o32-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.o32-highlight-card i {
  font-size: 36px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: block;
}

.o32-highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
}

.o32-highlight-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .o32-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .o32-hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .o32-navbar {
    padding: 0 20px;
  }

  .o32-nav {
    display: none;
  }

  .o32-topbar {
    padding: 0 20px;
  }

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

  .o32-hero-content h1 {
    font-size: 38px;
  }
}

/* ===== ONE32 INTRO SECTION ===== */

.o32-intro {
  background: #fff;
  padding: 70px 40px;
  border-bottom: 1px solid #efefef;
}

.o32-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.o32-intro-inner h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 30px;
}

.o32-intro-inner p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* ===== GLOBAL BUTTON HOVER EFFECTS ===== */

/* Yellow/orange buttons → darken on hover */
.btn.primary:hover,
.quote-btn:hover,
.primary-btn:hover,
.call-btn:hover,
.submit-btn:hover,
.o32-quote-btn:hover,
.o32-btn-primary:hover,
.form-card button:hover {
  background: var(--gold-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 184, 20, 0.35);
  transition: all 0.2s ease-in-out;
}

/* White/outline buttons → yellow bg + white text on hover */
.btn.secondary:hover {
  background: var(--gold-primary) !important;
  color: white !important;
  border-color: var(--gold-primary) !important;
  transform: translateY(-2px);
  transition: all 0.2s;
}

.secondary-btn:hover {
  background: var(--gold-primary) !important;
  color: white !important;
  border-color: var(--gold-primary) !important;
}

.o32-btn-secondary:hover {
  background: var(--gold-primary) !important;
  color: white !important;
  border-color: var(--gold-primary) !important;
}

/* ── MODAL SYSTEM ── */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10000; /* On top of everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.65); /* Dark background overlay */
  backdrop-filter: blur(5px); /* Modern frosted-glass blur */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 32px;
  font-weight: 300;
  color: #888;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.close-btn:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.modal-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
}

.modal-form label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-form input,
.modal-form textarea {
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(241, 184, 20, 0.15);
  outline: none;
}

.modal-form .submit-btn {
  background: var(--gold-primary);
  color: #ffffff;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.1s, box-shadow 0.2s;
}

.modal-form .submit-btn:hover {
  background: var(--gold-primary-hover);
  box-shadow: 0 5px 15px rgba(241, 184, 20, 0.3);
}

.modal-form .submit-btn:active {
  transform: scale(0.98);
}

/* ── RESPONSIVE MOBILE NAVIGATION EXPANSIONS ── */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary, #f1b814);
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  transition: transform 0.2s ease;
}

.mobile-menu-toggle:active {
  transform: scale(0.9);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  /* Index.html Nav Drawer */
  .navbar {
    position: relative;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .navbar nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #12192c; /* Consistent deep navy */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 0 24px;
    gap: 0;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out, padding 0.3s ease-in-out;
  }

  .navbar nav.active {
    max-height: 450px;
    opacity: 1;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar nav a {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: left;
    display: block;
  }

  .navbar nav a:last-child {
    border-bottom: none;
  }

  .navbar .quote-btn {
    display: none; /* Hide header button on mobile, users can trigger from hero/modals */
  }

  /* One32.html Nav Drawer */
  .o32-navbar {
    position: relative;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .o32-navbar .o32-nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Consistent white theme for One32 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 0 24px;
    gap: 0;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out, padding 0.3s ease-in-out;
  }

  .o32-navbar .o32-nav.active {
    max-height: 450px;
    opacity: 1;
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .o32-navbar .o32-nav a {
    color: #12192c !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: left;
    display: block;
  }

  .o32-navbar .o32-nav a:last-child {
    border-bottom: none;
  }

  .o32-navbar .o32-quote-btn {
    display: none; /* Hide header button on mobile */
  }
}

/* ── ULTRA MOBILE RESPONSIVENESS AND ALIGNMENT CORRECTIONS ── */
@media (max-width: 768px) {
  /* Hide Topbars on Mobile/Tablets to maximize space */
  .topbar, .o32-topbar {
    display: none !important;
  }

  /* Scale Logos appropriately */
  .logo img, .o32-logo img {
    width: 90px !important;
    height: auto !important;
  }

  .navbar, .o32-navbar {
    min-height: 70px !important;
    height: auto !important;
    padding: 10px 16px !important;
  }

  /* Fix layout spacing and overflows */
  .hero-content {
    padding: 40px 16px !important;
    gap: 30px !important;
  }

  .hero-text h1 {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }

  .hero-text h3 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }

  .hero-text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* Hero Section Buttons Stack */
  .buttons {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 30px !important;
  }

  .buttons .btn {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    display: inline-block !important;
  }

  /* Secure form cards from overflowing viewport */
  .form-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 16px !important;
    box-sizing: border-box !important;
  }

  .form-card h2 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
  }

  /* Correct Price Section & Container Height Overflow */
  .price-section {
    height: auto !important;
    padding: 60px 0 !important;
    overflow: visible !important;
  }

  .price-container {
    padding: 30px 16px !important;
    gap: 20px !important;
    flex-direction: column !important;
  }

  .price-content {
    text-align: center !important;
    width: 100% !important;
  }

  .price-content h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .price-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 25px !important;
  }

  .price-buttons .btn-price {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }

  .price-image-wrapper {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .price-image-wrapper img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .image-border {
    display: none !important; /* Hide secondary shifted borders causing horizontal scroll on mobile */
  }

  /* Floor Plan Section Spacing */
  .floor-plan-section {
    padding: 60px 16px !important;
  }

  /* Correct location elements and cards */
  .location-card {
    border-radius: 16px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
  }

  .location-info {
    padding: 24px 16px !important;
  }

  .location-info h2 {
    font-size: 28px !important;
    margin: 10px 0 !important;
  }

  .location-info p {
    font-size: 16px !important;
  }

  /* Contact wrapper corrections */
  .contact-wrapper {
    background-size: cover !important;
    padding: 40px 16px !important;
  }

  .contact-wrapper h3 {
    font-size: 24px !important;
  }

  .contact-wrapper h2 {
    font-size: 32px !important;
    margin-bottom: 30px !important;
  }

  /* One32 Intro Section Responsiveness */
  .o32-intro {
    padding: 50px 16px !important;
  }

  .o32-intro-inner h2 {
    font-size: 30px !important;
    margin-bottom: 20px !important;
  }

  .o32-intro-inner p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  /* Modals padding correction */
  .modal-content {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .close-btn {
    right: 16px !important;
    top: 16px !important;
  }

  /* Footer responsiveness */
  .footer-top {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .footer-brand, .footer-col {
    text-align: center !important;
  }

  .footer-col ul {
    align-items: center !important;
  }

  .site-footer {
    padding: 40px 16px 0 !important;
  }
}

@media (max-width: 480px) {
  /* Extra tight viewport tuning for smaller devices */
  .hero-text h1 {
    font-size: 28px !important;
  }

  .about-content h2 {
    font-size: 28px !important;
  }

  .o32-intro-inner h2 {
    font-size: 26px !important;
  }
}
