* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b1c2d;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 50px;
  object-fit: contain;
}

.logo-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

/* NAV LINKS */
nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #c9a44c;
}

/* ==================== BUTTONS ==================== */
.btn {
  background: #c9a44c;
  color: #0b1c2d;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(201, 164, 76, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #c9a44c;
  color: #c9a44c;
}

.btn-outline:hover {
  background: #c9a44c;
  color: #0b1c2d;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(201, 164, 76, 0.4);
}

.btn.small {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg .hero-media {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h2 {
  font-size: 2.8rem;
  max-width: 600px;
  margin: auto;
}

.hero-content p {
  margin: 1rem 0 2rem;
}

/* ==================== GENERAL SECTIONS ==================== */
section {
  padding: 4rem 0;
}

h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* ==================== ABOUT SECTION ==================== */
.about {
  padding: 5rem 0;
  background: #fff;
}

.about h3 {
  font-size: 2.5rem;
  color: #0b1c2d;
  font-weight: 400;
  letter-spacing: 1px;
}

.about p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

/* ==================== PROPERTIES SECTION ==================== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-card h4 {
  margin: 1rem 0 0.3rem;
  padding: 0 1rem;
}

.property-card p {
  padding: 0 1rem 1rem;
}

.property-card a.btn {
  margin-bottom: 1.5rem;
}

/* ==================== SERVICES SECTION ==================== */
.services-luxury {
  background: #f3eadb;
  padding: 6rem 0;
  position: relative;
}

.services-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

/* LEFT IMAGE */
.services-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* RIGHT CONTENT */
.services-content {
  color: #1a1a1a;
}

.services-label {
  color: #c9a44c;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.services-content hr {
  width: 100%;
  border: none;
  border-top: 1px solid #aaa;
  margin: 1rem 0 2.5rem;
}

.services-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.services-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 480px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* BUTTON */
.services-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.7rem 2rem;
  border: 1.5px solid #c9a44c;
  border-radius: 30px;
  text-decoration: none;
  color: #0b1c2d;
  transition: all 0.3s ease;
}

.services-btn:hover {
  background: #c9a44c;
  color: #fff;
  transform: translateY(-2px);
}

/* SERVICE ARROWS */
.service-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #c9a44c;
  background: transparent;
  color: #c9a44c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.service-arrow svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.service-arrow.left {
  left: 20px;
}

.service-arrow.right {
  right: 20px;
}

.service-arrow:hover {
  background: #c9a44c;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 164, 76, 0.5);
}

.service-arrow:hover svg {
  fill: #fff;
}

/* FADE ANIMATION */
.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* ==================== VALUES SECTION ==================== */
.values-luxury {
  background: #3d3530;
  padding: 6rem 0;
  color: #fff;
}

.values-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.values-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #c9a44c;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}

.values-title {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 8px;
  margin: 0 0 5rem 0;
  font-family: 'Playfair Display', serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 4rem;
}

.value-item {
  text-align: center;
  padding: 0;
}

.value-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.value-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
}

.value-item h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.value-item p {
  font-size: 0.9rem;
  color: #d1ccc7;
  line-height: 1.9;
  margin: 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  background: #0b1c2d;
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.contact h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #081423;
  color: #ccc;
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  margin: 0;
}

/* ==================== FADE IN ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-arrow.left {
    left: 10px;
  }

  .service-arrow.right {
    right: 10px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .values-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 768px) {
  /* Header */
  .logo-img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  nav a {
    margin-left: 0.8rem;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero-content h2 {
    font-size: 2rem;
  }

  /* Services */
  .services-content h2 {
    font-size: 2rem;
  }

  .service-arrow {
    width: 40px;
    height: 40px;
  }

  .service-arrow svg {
    width: 20px;
    height: 20px;
  }

  .service-arrow.left {
    left: 5px;
  }

  .service-arrow.right {
    right: 5px;
  }

  /* Values */
  .values-luxury {
    padding: 4rem 0;
  }

  .values-title {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
  }

  .values-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .value-item p {
    font-size: 0.85rem;
  }

  /* Contact */
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/* ==================== CEO SECTION ==================== */
.ceo-section {
  background: #fff;
  padding: 6rem 0;
}

.ceo-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}


.logo-link {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
/* LEFT: CEO IMAGE */
.ceo-image {
  position: relative;
}

.ceo-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

/* CEO NAME CARD */
.ceo-name-card {
  background: #fff;
  padding: 1.5rem 2rem;
  margin-top: -60px;
  margin-left: 20px;
  position: relative;
  z-index: 2;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ceo-name-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0b1c2d;
  margin: 0 0 0.3rem 0;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.ceo-name-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  letter-spacing: 0.5px;
}

/* RIGHT: CEO CONTENT */
.ceo-content {
  padding-left: 2rem;
}

.ceo-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #0b1c2d;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.ceo-content hr {
  width: 100%;
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0 2rem;
}

.ceo-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  max-width: 600px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .ceo-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ceo-content {
    padding-left: 0;
  }

  .ceo-name-card {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .ceo-section {
    padding: 4rem 0;
  }

  .ceo-content h2 {
    font-size: 1.6rem;
  }

  .ceo-name-card {
    padding: 1.2rem 1.5rem;
    margin-top: -40px;
  }

  .ceo-name-card h3 {
    font-size: 1.2rem;
  }

  .ceo-name-card p {
    font-size: 0.8rem;
  }
}
/* ==================== HERO SECTION WITH OVERLAY ==================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg .hero-media {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* OVERLAY WITH BORDER */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-start; /* Top alignment */
  justify-content: flex-end; /* Right alignment */
  padding: 8rem 4rem 2rem 2rem; /* Extra padding top for header, more right padding */
}

/* CONTENT BOX WITH BORDER - More Refined */
.hero-content {
  border: 2px solid rgba(201, 164, 76, 0.6); /* Gold border matching your theme */
  padding: 3rem 2.5rem;
  max-width: 550px; /* Smaller, more refined */
  text-align: left;
  background: rgba(11, 28, 45, 0.75); /* Navy overlay matching your theme */
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 2.5rem; /* Smaller, more elegant */
  font-weight: 600;
  color: #c9a44c; /* Your gold color */
  line-height: 1.3;
  margin: 0 0 1.8rem 0;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif; /* Elegant serif font */
}

/* HERO BUTTON */
.hero-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #c9a44c; /* Gold border */
  color: #c9a44c;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #c9a44c;
  color: #0b1c2d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 164, 76, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .hero-overlay {
    padding: 7rem 2rem 2rem 2rem;
    justify-content: center; /* Center on tablets */
  }

  .hero-content {
    padding: 2.5rem 2rem;
    max-width: 500px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    padding: 6rem 1.5rem 2rem 1.5rem;
    align-items: center; /* Center vertically on mobile */
    justify-content: center; /* Center horizontally on mobile */
  }

  .hero-content {
    padding: 2rem 1.8rem;
    max-width: 450px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1.8rem 1.5rem;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }
}
/* ==================== LUXURY FOOTER ==================== */
.footer-luxury {
  background: #2a2a2a;
  color: #fff;
  padding: 4rem 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

/* FOOTER COLUMNS */
.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.footer-column h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #c9a44c;
}

/* BRAND COLUMN */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  height: 50px;
  object-fit: contain;
}

.footer-logo h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.footer-tagline {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  margin-left: 58px; /* Align with logo text */
}

/* SOCIAL MEDIA */
.footer-social h4 {
  font-size: 0.95rem;
  padding-left: 0;
  margin-bottom: 1rem;
}

.footer-social h4::before {
  display: none;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border-radius: 50%;
}

.social-icons a svg {
  width: 24px;
  height: 24px;
  stroke: none;
}

.social-icons a:hover {
  background: #c9a44c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(201, 164, 76, 0.4);
}

/* LINKS COLUMN */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #c9a44c;
  padding-left: 5px;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0 !important;
}

.contact-info i {
  color: #c9a44c;
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #c9a44c;
  padding-left: 0 !important;
}

.contact-info strong {
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-luxury {
    padding: 3rem 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-tagline {
    margin-left: 0;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
}
/* ==================== ENQUIRY SECTION ==================== */
.enquiry-section {
  padding: 5rem 0;
  background: #f8f8f8;
}

.enquiry-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 600px;
  max-width: 1100px;
  margin: 0 auto;
  border: 2px solid #ddd;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* LEFT: IMAGE */
.enquiry-image {
  background: #ddd;
  overflow: hidden;
}

.enquiry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT: FORM */
.enquiry-form-container {
  background: #fff;
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-form-container h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #0b1c2d;
  font-family: 'Playfair Display', serif;
}

/* FORM STYLES */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.required {
  color: #ff0000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c9a44c;
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.1);
}

.form-group small {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.3rem;
}

/* PHONE INPUT */
.phone-input {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  width: 110px;
  flex-shrink: 0;
}

.phone-input input {
  flex: 1;
}

/* TEXTAREA */
textarea {
  resize: vertical;
  min-height: 100px;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .enquiry-section {
    padding: 4rem 2rem;
  }

  .enquiry-wrapper {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .enquiry-image {
    min-height: 350px;
  }

  .enquiry-form-container {
    padding: 3rem 2.5rem;
  }

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

@media (max-width: 768px) {
  .enquiry-section {
    padding: 3rem 1.5rem;
  }

  .enquiry-form-container {
    padding: 2.5rem 2rem;
  }

  .enquiry-form-container h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .enquiry-image {
    min-height: 300px;
  }

  .submit-btn {
    width: 100%;
  }
}
/* ==================== MOBILE MENU STYLES ==================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle:focus {
  outline: 2px solid #c9a44c;
}

/* ==================== COMPREHENSIVE RESPONSIVE DESIGN ==================== */

/* TABLETS AND SMALLER LAPTOPS */
@media (max-width: 1200px) {
  .container {
    width: 92%;
  }

  .services-wrapper,
  .ceo-container {
    width: 92%;
  }
}

/* TABLETS */
@media (max-width: 968px) {
  /* Header/Navigation */
  .nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #0b1c2d;
    flex-direction: column;
    padding: 2rem 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1002;
  }

  nav.active {
    right: 0;
  }

  nav a {
    margin: 0;
    padding: 1rem 2rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav a.btn {
    margin: 1rem 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }

  /* Hero */
  .hero {
    height: 70vh;
  }

  .hero-overlay {
    padding: 6rem 2rem 2rem;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    max-width: 90%;
  }

  /* About */
  .about h3 {
    font-size: 2rem;
  }

  /* Services */
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-image {
    order: 1;
  }

  .services-content {
    order: 2;
  }

  .service-arrow.left {
    left: 10px;
  }

  .service-arrow.right {
    right: 10px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .values-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  /* CEO Section */
  .ceo-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ceo-content {
    padding-left: 0;
  }

  .ceo-name-card {
    margin-left: 0;
  }

  /* Enquiry */
  .enquiry-section {
    padding: 4rem 2rem;
  }

  .enquiry-wrapper {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .enquiry-image {
    min-height: 350px;
    order: 1;
  }

  .enquiry-form-container {
    padding: 3rem 2.5rem;
    order: 2;
  }

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

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* MOBILE PHONES */
@media (max-width: 768px) {
  /* Typography */
  h3 {
    font-size: 1.8rem;
  }

  /* Header */
  .header {
    padding: 0.8rem 0;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  nav {
    top: 60px;
    height: calc(100vh - 60px);
  }

  /* Hero */
  .hero {
    height: 60vh;
  }

  .hero-content {
    padding: 2rem 1.8rem;
    border: 2px solid rgba(201, 164, 76, 0.5);
    max-width: 95%;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.85rem;
  }

  /* About */
  .about {
    padding: 3rem 0;
  }

  .about h3 {
    font-size: 1.6rem;
  }

  .about p {
    font-size: 1rem;
  }

  /* Services */
  .services-luxury {
    padding: 4rem 0;
  }

  .services-content h2 {
    font-size: 2rem;
  }

  .services-content p {
    font-size: 0.9rem;
  }

  .service-arrow {
    width: 40px;
    height: 40px;
  }

  .service-arrow svg {
    width: 20px;
    height: 20px;
  }

  .service-arrow.left {
    left: 5px;
  }

  .service-arrow.right {
    right: 5px;
  }

  /* Values */
  .values-luxury {
    padding: 4rem 0;
  }

  .values-title {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
  }

  .values-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .value-item p {
    font-size: 0.85rem;
  }

  /* CEO Section */
  .ceo-section {
    padding: 4rem 0;
  }

  .ceo-content h2 {
    font-size: 1.6rem;
  }

  .ceo-name-card {
    padding: 1.2rem 1.5rem;
    margin-top: -40px;
  }

  .ceo-name-card h3 {
    font-size: 1.2rem;
  }

  .ceo-name-card p {
    font-size: 0.8rem;
  }

  /* Contact */
  .contact {
    padding: 3rem 0;
  }

  .contact h3 {
    font-size: 1.6rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Enquiry */
  .enquiry-section {
    padding: 3rem 1.5rem;
  }

  .enquiry-form-container {
    padding: 2.5rem 2rem;
  }

  .enquiry-form-container h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .enquiry-image {
    min-height: 300px;
  }

  .submit-btn {
    width: 100%;
  }

  /* Footer */
  .footer-luxury {
    padding: 3rem 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-tagline {
    margin-left: 0;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
}

/* SMALL MOBILE PHONES */
@media (max-width: 480px) {
  /* Container */
  .container {
    width: 95%;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 1.8rem 1.5rem;
  }

  /* About */
  .about h3 {
    font-size: 1.4rem;
  }

  .about p {
    font-size: 0.95rem;
  }

  /* Services */
  .services-content h2 {
    font-size: 1.7rem;
  }

  .services-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Values */
  .values-title {
    font-size: 1.7rem;
    letter-spacing: 2px;
  }

  .value-icon {
    height: 70px;
  }

  .value-icon img {
    width: 50px;
    height: 50px;
  }

  /* CEO */
  .ceo-content h2 {
    font-size: 1.4rem;
  }

  .ceo-content p {
    font-size: 0.9rem;
  }

  /* Enquiry */
  .enquiry-wrapper {
    min-height: auto;
  }

  .enquiry-form-container {
    padding: 2rem 1.5rem;
  }

  .enquiry-form-container h2 {
    font-size: 1.4rem;
  }

  .phone-input {
    flex-direction: column;
  }

  .country-code {
    width: 100%;
  }

  /* Footer */
  .footer-logo h3 {
    font-size: 1.1rem;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .social-icons {
    gap: 0.8rem;
  }
}

/* LANDSCAPE MODE FOR PHONES */
@media (max-width: 968px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }

  nav {
    height: calc(100vh - 60px);
    overflow-y: auto;
  }
}
/* ==================== FEATURED PROPERTIES SECTION ==================== */
.featured-properties {
  padding: 6rem 0;
  background: #f8f8f8;
  overflow: hidden;
}

.properties-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

/* Blur background behind properties for an anticipating effect */
.featured-properties {
  position: relative;
}

.featured-properties::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 1;
}

.properties-container {
  position: relative;
  z-index: 2;
}

/* Ensure overlay sits beneath badges */
.property-overlay {
  z-index: 4;
}

/* Coming soon badge */
.coming-soon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c9a44c;
  color: #08121a;
  padding: 6px 10px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform: rotate(-4deg);
  z-index: 6;
}

.properties-container h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: #0b1c2d;
  margin-bottom: 4rem;
  font-family: 'Playfair Display', serif;
}

/* CAROUSEL WRAPPER */
.properties-carousel-wrapper {
  position: relative;
  padding: 0 80px;
  overflow: hidden;
}

/* CAROUSEL CONTAINER */
.properties-carousel {
  display: flex;
  gap: 2rem;
  overflow: visible;
  scroll-behavior: smooth;
  padding: 1rem 0;
  transition: transform 0.4s ease;
}

/* PROPERTY CARD */
.property-card-featured {
  min-width: 370px;
  max-width: 370px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.property-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #c9a44c;
}

/* PROPERTY IMAGE */
.property-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card-featured:hover .property-image img {
  transform: scale(1.08);
}

/* OVERLAY WITH ARROW BUTTON */
.property-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-card-featured:hover .property-overlay {
  opacity: 1;
}

.view-details-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #0b1c2d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: #c9a44c;
  color: #fff;
  transform: scale(1.1) rotate(45deg);
}

.view-details-btn svg {
  width: 24px;
  height: 24px;
}

/* Blurred property state: visually blur content and disable interactions */
.property-card-featured.blurred {
  /* keep layout intact but disable pointer events on whole card */
  pointer-events: none;
}

.property-card-featured.blurred .property-image,
.property-card-featured.blurred .property-info {
  filter: blur(4px) saturate(0.9);
  transition: filter 0.3s ease, opacity 0.3s ease;
  opacity: 0.98;
}

/* Hide interactive button visuals inside blurred cards */
.property-card-featured.blurred .view-details-btn {
  display: none;
}

/* Keep the coming-soon badge crisp by placing it above blurred elements */
.property-card-featured .coming-soon-badge {
  z-index: 20;
}

/* PROPERTY INFO */
.property-info {
  padding: 1.8rem 1.5rem;
}

.property-info h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #0b1c2d;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.property-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CAROUSEL ARROWS */
.property-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #c9a44c;
  background: #fff;
  color: #c9a44c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.property-arrow.left {
  left: 10px;
}

.property-arrow.right {
  right: 10px;
}

.property-arrow:hover {
  background: #c9a44c;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 164, 76, 0.4);
}

.property-arrow svg {
  width: 24px;
  height: 24px;
}

/* CAROUSEL DOTS */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #c9a44c;
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: #c9a44c;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .property-card-featured {
    min-width: 320px;
  }

  .properties-carousel-wrapper {
    padding: 0 70px;
  }
}

@media (max-width: 968px) {
  .featured-properties {
    padding: 4rem 0;
  }

  .properties-container h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .properties-carousel-wrapper {
    padding: 0 60px;
  }

  .property-card-featured {
    min-width: 300px;
  }

  .property-arrow {
    width: 45px;
    height: 45px;
  }

  .property-arrow.left {
    left: 5px;
  }

  .property-arrow.right {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .properties-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .properties-carousel-wrapper {
    padding: 0 50px;
  }

  .property-card-featured {
    min-width: 280px;
  }

  .property-image {
    height: 240px;
  }

  .property-info {
    padding: 1.5rem 1.2rem;
  }

  .property-info h3 {
    font-size: 1.15rem;
  }

  .property-arrow {
    width: 40px;
    height: 40px;
  }

  .property-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .properties-carousel-wrapper {
    padding: 0 45px;
  }

  .property-card-featured {
    min-width: 260px;
  }

  .property-image {
    height: 220px;
  }

  .view-details-btn {
    width: 50px;
    height: 50px;
  }

  .carousel-dots {
    gap: 0.6rem;
    margin-top: 2rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 25px;
  }
}
/* ==================== PROPERTY DETAIL SECTIONS ==================== */
.property-detail-section {
  background: #fff;
  scroll-margin-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.property-detail-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.property-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.property-hero-overlay {
  position: absolute;
  text-align: center;
  z-index: 2;
}

.property-breadcrumb {
  color: #c9a44c;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.property-detail-hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  font-family: 'Playfair Display', serif;
}

/* Slideshow in property hero */
.property-detail-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.property-detail-hero .slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
}

.property-detail-hero .slides {
  display: flex;
  height: 100%;
  width: 200%;
  transition: transform 0.9s ease-in-out;
}

.property-detail-hero .slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.property-detail-hero .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-hero-overlay {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.property-status {
  display: inline-block;
  padding: 0.6rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-status.completed {
  background: #ff0000;
  color: #fff;
}

.property-status.available {
  background: #dc3545;
  color: #fff;
}

.property-status.under-construction {
  background: #dc3545;
  color: #fff;
}

.property-status.pre-launch {
  background: #ffc107;
  color: #0b1c2d;
}

.property-status.construction {
  background: #17a2b8;
  color: #fff;
}

/* Content Section */
.property-detail-content {
  background: #f8f8f8;
  padding: 5rem 0;
}

.property-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Left Column */
.property-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.detail-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 0.5rem;
}

.detail-underline {
  width: 60px;
  height: 3px;
  background: #c9a44c;
  margin-bottom: 1.5rem;
}

.detail-section p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.feature::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff0000;
  border-radius: 50%;
  margin-right: 0.8rem;
}

/* Contact Button */
.detail-contact-btn {
  background: #ff0000;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.detail-contact-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Right Column - Basic Details */
.property-right {
  background: #fff;
  padding: 2.5rem;
  align-self: flex-start;
}

.basic-detail {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
  color: #333;
}

.basic-detail:last-child {
  border-bottom: none;
}

.basic-detail span {
  color: #666;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .property-detail-hero {
    height: 350px;
  }

  .property-detail-hero h1 {
    font-size: 2.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .property-detail-content {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .property-detail-hero {
    height: 300px;
  }

  .property-detail-hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .property-detail-content {
    padding: 3rem 0;
  }

  .property-grid {
    width: 95%;
    gap: 2rem;
  }

  .property-right {
    padding: 2rem 1.5rem;
  }

  .detail-contact-btn {
    width: 100%;
    text-align: center;
  }

  .detail-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .property-detail-hero h1 {
    font-size: 1.6rem;
  }

  .property-status {
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
  }

  .property-breadcrumb {
    font-size: 0.8rem;
  }
}
/* Make property detail links look like buttons */
.view-details-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #0b1c2d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; /* Remove underline */
}

.view-details-btn:hover {
  background: #c9a44c;
  color: #fff;
  transform: scale(1.1) rotate(45deg);
}

.view-details-btn svg {
  width: 24px;
  height: 24px;
}
/* ==================== PROPERTY DETAIL PAGES - MOBILE RESPONSIVE ==================== */

/* Make sure property pages load with full opacity */
.property-detail-section {
  opacity: 1;
}

/* TABLET (max-width: 968px) */
@media (max-width: 968px) {
  .property-detail-hero {
    height: 350px;
  }

  .property-detail-hero h1 {
    font-size: 2.5rem;
  }

  .property-status {
    padding: 0.5rem 2rem;
    font-size: 0.95rem;
  }

  .property-detail-content {
    padding: 4rem 0;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 92%;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .property-right {
    padding: 2rem;
  }

  .detail-contact-btn {
    padding: 0.9rem 2.5rem;
  }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {
  .property-detail-hero {
    height: 300px;
  }

  .property-detail-hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .property-breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .property-status {
    padding: 0.5rem 1.8rem;
    font-size: 0.9rem;
  }

  .property-detail-content {
    padding: 3rem 0;
  }

  .property-grid {
    width: 95%;
    gap: 2rem;
  }

  .property-left {
    gap: 2.5rem;
  }

  .detail-section h2 {
    font-size: 1.3rem;
  }

  .detail-section p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .features-list {
    gap: 0.8rem;
  }

  .feature {
    font-size: 0.85rem;
  }

  .property-right {
    padding: 2rem 1.5rem;
  }

  .basic-detail {
    font-size: 0.9rem;
    padding: 0.9rem 0;
  }

  .basic-detail span {
    font-size: 0.8rem;
  }

  .detail-contact-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 2rem;
  }
}

/* SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
  .property-detail-hero {
    height: 250px;
  }

  .property-detail-hero h1 {
    font-size: 1.6rem;
  }

  .property-breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .property-status {
    padding: 0.4rem 1.5rem;
    font-size: 0.85rem;
  }

  .property-detail-content {
    padding: 2.5rem 0;
  }

  .detail-section h2 {
    font-size: 1.2rem;
  }

  .detail-underline {
    width: 50px;
    height: 2px;
  }

  .detail-section p {
    font-size: 0.85rem;
  }

  .feature {
    font-size: 0.8rem;
  }

  .property-right {
    padding: 1.5rem 1.2rem;
  }

  .detail-contact-btn {
    font-size: 0.95rem;
  }
}
.submit-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}
/* ==================== CO-OWNERS SECTION ==================== */
.co-owners-section {
  background: #fff;
  padding: 6rem 0;
}

.co-owners-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Section Header */
.co-owners-header {
  text-align: center;
  margin-bottom: 5rem;
}

.co-owners-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #0b1c2d;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.co-owners-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Co-Owners Grid */
.co-owners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Co-Owner Card */
.co-owner-card {
  background: #f8f8f8;
  overflow: hidden;
  transition: all 0.3s ease;
}

.co-owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Co-Owner Image */
.co-owner-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.co-owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.co-owner-card:hover .co-owner-image img {
  transform: scale(1.05);
}

/* Co-Owner Info */
.co-owner-info {
  padding: 2rem;
  text-align: center;
}

.co-owner-info h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0b1c2d;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.co-owner-title {
  font-size: 0.95rem;
  color: #c9a44c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.co-owner-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* Leadership Message */
.leadership-message {
  background: #0b1c2d;
  padding: 3rem 4rem;
  text-align: center;
  margin-top: 3rem;
}

.leadership-message p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
  .co-owners-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto 4rem;
  }

  .co-owner-image {
    height: 450px;
  }

  .co-owners-header h2 {
    font-size: 2rem;
  }

  .leadership-message {
    padding: 2.5rem 2rem;
  }

  .leadership-message p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .co-owners-section {
    padding: 4rem 0;
  }

  .co-owners-header {
    margin-bottom: 3rem;
  }

  .co-owners-header h2 {
    font-size: 1.8rem;
  }

  .co-owners-header p {
    font-size: 1rem;
  }

  .co-owner-image {
    height: 400px;
  }

  .co-owner-info {
    padding: 1.5rem;
  }

  .co-owner-info h3 {
    font-size: 1.3rem;
  }

  .co-owner-title {
    font-size: 0.85rem;
  }

  .co-owner-bio {
    font-size: 0.85rem;
  }

  .leadership-message {
    padding: 2rem 1.5rem;
  }

  .leadership-message p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .co-owner-image {
    height: 350px;
  }

  .co-owners-grid {
    gap: 2rem;
  }
}