/* General Styles */
/* html {
  scroll-behavior: smooth;
} */

/* === Root / Global Styles === */
:root {
  --color-primary: #007bff;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-dark: #343a40;

  --font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  --border-radius: 4px;
  --transition-speed: 0.3s;
}

/* Reset box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base body styles */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-dark);
  background-color: #fff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings - semantic, clean hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraph */
p {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1rem;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover,
a:focus {
  color: var(--color-dark);
  text-decoration: none;
  outline: none;
}

/* Buttons */
button, .cta-button {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5em 1em;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed), border-color var(--transition-speed);
  user-select: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

button:hover,
button:focus,
.cta-button:hover,
.cta-button:focus {
  /* background-color: #0056b3; */
  /* border-color: #0056b3; */
  outline: none;
}

/* Disabled buttons */
button:disabled {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Cards (form container) */
.card, .form-container {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow var(--transition-speed);
  color: var(--color-dark);
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
}

.card:hover, .form-container:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
  object-fit: cover;
}

/* Accessibility Focus */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}









/* html, body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
    width: 100%;
  
  } */


.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    display: none;
    z-index: 1000;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-container h2 {
    margin: 10px 0;
}

.contact-options {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.contact-options div {
    text-align: center;
}

.contact-options i {
    font-size: 24px;
    color: green;
}

.popup-container input, .popup-container select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.popup-container button {
    width: 100%;
    padding: 10px;
    background: green;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.popup-container button:hover {
    background: darkgreen;
}

.footer-links {
    margin-top: 10px;
    font-size: 14px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #ff0000;
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

@media (max-width: 600px) {
    .popup-container {
        width: 70%;
        padding: 15px;
        max-height: 80vh;
        left: 50%;
        transform: translate(-60%, -50%);
        margin-top: 25px
    }
    .popup-container h2{
      font-size: 18px;
      margin-top: 20px;
    }
    .contact-options div {
      margin-bottom: 0;
  }

    .contact-options {
        flex-direction: row;
    }

    /* .contact-options div {
        margin-bottom: 10px;
    } */
}

@media (max-width: 320px) {
    .popup-container {
        width: 70%;
        padding: 15px;
        margin-top: 25px
    }
}






/* Reset + Body Padding */
body {
  margin: 0;
  padding-top: 70px; /* offset for fixed navbar */
  font-family: Arial, sans-serif;
}

/* Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #23395d;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Container inside Navbar */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.navbar-logo img {
  max-height: 50px;
  transition: transform 0.3s ease-in-out;
}
.navbar-logo img:hover {
  transform: scale(1.05);
}

/* Menu (Desktop) */
.navbar-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}
.navbar-menu a:hover {
  background: #f4a261;
  color: #23395d;
  transform: translateY(-2px);
}

/* Hamburger (Mobile) */
.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #23395d;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .navbar-menu.show {
    display: block;
  }

  .navbar-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
  }
}



  
 

/* === Section Specific Styles === */

/* Main Section */
.main-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
              url('https://www.totalenvironmentsales.com/images/total-environment-plots.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Left Content */
.left-content {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  padding: 20px;
  margin: 0 auto;
  text-align: left;
}

/* Use semantic h1 instead of .headings */
.left-content h1 {
  margin-bottom: 15px;
  color: var(--color-success);
}

/* Subheadings as paragraphs */
.left-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  padding: 0 10px 0 0;
  color: #ddd;
}

/* CTA Buttons */
.cta-buttons {
  margin-top: 30px;
}

.cta-button {
  background: #fafafa;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
  padding: 12px 25px;
}

.cta-button:hover {
  background: #e0a800;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  color: #000;
}

/* Right Content */
.right-content {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  padding: 10px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 15px;
}

.form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.form-header p {
  font-size: 0.9rem;
  color: #333;
}
.form-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow var(--transition-speed);
    color: var(--color-dark);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    margin-top: 30px;
}

/* Form Inputs */
.form-container label {
  display: block;
  margin: 6px 0 3px 5px;
  font-size: 0.95rem;
  text-align: left;
  color: var(--color-dark);
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  background-color: #f9f9f9;
  font-size: 0.95rem;
  box-sizing: border-box;
  color: var(--color-dark);
  resize: vertical;
}

/* Submit Button */
.form-container button {
  padding: 10px 16px;
  font-size: 0.95rem;
  background-color: var(--color-success);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease-in-out;
}

.form-container button:hover {
  background-color: #19692c;
}

/* Responsive: Tablets */
@media (max-width: 768px) {
  .main-section {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }

  .left-content,
  .right-content {
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
  }

  .left-content h1 {
    font-size: 2rem;
  }

  .left-content p {
    text-align: center;
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .right-content {
    justify-content: center;
    margin-left: 0;
  }

  .form-container {
    max-width: 90%;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .main-section {
    padding: 15px;
  }

  .left-content,
  .right-content {
    padding: 0 10px;
  }

  .left-content h1 {
    font-size: 1.6rem;
  }

  .left-content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .cta-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cta-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .form-container {
    padding: 15px;
    width: 100%;
    max-width: 100%;
  }

  .form-header h2 {
    font-size: 1.3rem;
  }

  .form-header p {
    font-size: 0.85rem;
  }

  .form-container input,
  .form-container textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  .form-container button {
    font-size: 0.95rem;
    padding: 10px;
  }
}






  /* === Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-dark);
}

/* === Project Overview === */
.overview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0; /* This can stay since no variable */
}

.overview-text {
  flex: 1;
}

.overview-text h2 {
  font-size: 2rem;
  color: var(--color-success); /* Use primary green */
  margin-bottom: 15px;
}

.overview-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.btn {
  display: inline-block;
  background: var(--color-success);
  color: #fff;
  padding: 0.75em 1.5em; /* Using em for consistency */
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background var(--transition-speed);
}

.btn:hover {
  background: #166534; /* Custom darker green, no variable */
}

.overview-image {
  flex: 1;
  text-align: center;
}

.overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* === Project Highlights === */
.highlights {
  margin-top: 30px;
}

.highlights h2 {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 15px;
  text-align: center;
}

/* Highlights List */
.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Individual Highlight Item */
.highlight-item {
  background: var(--color-light);
  padding: 1.25rem 1.25rem; /* 20px ~ 1.25rem */
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--color-success);
  transition: transform var(--transition-speed);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-item span {
  display: block;
  font-weight: 700;
  color: var(--color-success);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: var(--color-secondary);
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .overview {
    flex-direction: column;
    text-align: center;
  }

  .overview-image img {
    margin: 0 auto;
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .highlight-item {
    width: 290px;
    margin: 0 auto;
  }
}


  /* === Gallery Section === */

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  background-color: var(--color-light);
}

h1 {
  text-align: center;
  margin: 20px 0 10px; /* Reduced top and bottom margin */
  font-size: 2.5rem;
  color: var(--color-success);
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 20px;
  line-height: var(--line-height-base);
}

.gallery-title {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 1.75rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: var(--border-radius);
  visibility: hidden;
  transition: visibility var(--transition-speed);
}

.gallery-item:hover .overlay {
  visibility: visible;
}

/* === Contact Section === */

.contact {
  text-align: center;
  margin-top: 40px;
}

.contact button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: var(--color-success); /* Replaces #4CAF50 */
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.contact button:hover {
  background-color: #218838; /* Slightly darker than var(--color-success) */
  transform: translateY(-3px);
}

/* === Responsive Design === */

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2rem;
  }

  .contact button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.5rem;
  }

  .contact button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}



/* === Master Plan Section === */

.master-plan-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
  background-color: var(--color-light);
}

/* Heading Styles */
.heading {
  text-align: center;
  margin: 20px 0 10px; /* Reduced top and bottom margin */
  font-size: 2.5rem;
  color: var(--color-success);
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 20px;
  line-height: var(--line-height-base);
}

.master-title {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 1.75rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}


/* Description Paragraphs */
.description {
  font-size: 1rem; /* Matches root paragraph font size */
  line-height: 1.8;
  color: var(--color-body, #555); /* fallback if --color-body is not defined */
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Optional CTA Button */
.get-in-touch .contact-link {
  font-size: 1.6rem;
  color: #fff;
  background-color: #00b894;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.get-in-touch .contact-link:hover {
  background-color: #00a15c;
  transform: translateY(-3px);
}

/* Image Section */
.image-container {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.image-container img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }

  .master-title {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .get-in-touch .contact-link {
    font-size: 1.4rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.75rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .get-in-touch .contact-link {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}







.amenities-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
  background-color: var(--color-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

/* Heading Styles */
.section-titles {
    text-align: center;
  margin: 20px 0 10px; /* Reduced top and bottom margin */
  font-size: 2.5rem;
  color: var(--color-success);
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 20px;
  line-height: var(--line-height-base);
}

.amenities-title {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 1.75rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}

/* Grid Layout for Amenities */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.amenity-item {
  background-color: #ffffff;
  color: var(--color-success);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed);
}

.amenity-item i {
  font-size: 2.8rem;
  margin-bottom: 12px;
  transition: transform var(--transition-speed);
}

.amenity-item p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 8px;
  transition: color var(--transition-speed);
}

.amenity-item:hover {
  background-color: var(--color-success);
  color: #fff;
  transform: translateY(-8px);
}

.amenity-item:hover i,
.amenity-item:hover p {
  color: #fff;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .amenities-title {
    font-size: 1.5rem;
  }

  .amenity-item {
    padding: 20px;
  }

  .amenity-item i {
    font-size: 2.2rem;
  }

  .amenity-item p {
    font-size: 1rem;
  }
}



.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
  background-color: var(--color-light);
  border-radius: var(--border-radius);
}

/* Heading Styles */
.heading {
   text-align: center;
  margin: 20px 0 10px; /* Reduced top and bottom margin */
  font-size: 2.5rem;
  color: var(--color-success);
  font-weight: 600;
  line-height: 1.2;
}

.subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 20px;
  line-height: var(--line-height-base);
}

.price-title {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 1.75rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}

/* Cards Container */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/* Individual Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  width: 100%;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Text Elements */
.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.plot-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-success);
  margin-bottom: 12px;
}

.details,
.price {
  font-size: 1rem;
  color: var(--color-muted, #6c757d);
  margin-bottom: 12px;
}

.details strong,
.price strong {
  color: var(--color-dark);
}

/* Buttons */
.offer-btn,
.interest-btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: var(--border-radius-sm, 8px);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.offer-btn {
  background:#172d1c;
  color: #fff;
}

.offer-btn:hover {
  background: #21867a;
}

.interest-btn {
  background: #2c271a;;
  color: #fff;
}

.interest-btn:hover {
  background: #d4a64a;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card {
    max-width: 100%;
  }
}







/* === Location Section === */
.location-section {
  background: var(--color-light);
  padding: 20px 20px;
  text-align: center; /* Center all top-level text elements */
}

/* .location-section .heading,
.location-section .subtitle,
.location-title {
  text-align: center;
  margin: 1rem auto;
} */
.heading{
  text-align: center;
  margin: 20px 0 10px; /* Reduced top and bottom margin */
  font-size: 2.5rem;
  color: var(--color-success);
  font-weight: 600;
  line-height: 1.2;
}
.subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 20px;
  line-height: var(--line-height-base);
}

.location-title {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 1.75rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}


/* .location-title {
  font-size: 1.75rem;
  color: var(--color-dark);
  width: 100%;
} */

/* Content Grid */
.contents {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.text-content {
  flex: 1;
  max-width: 550px;
  text-align: left;
}

/* Location-specific Typography */
.location-city {
  font-size: 2.8rem;
  font-weight: 700;
  color: #002147;
  margin-top: 0;
}

.location-type {
  font-size: 2rem;
  font-weight: 600;
  color: #004080;
}

.location-date,
.location-address,
.location-description {
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.location-venue {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* CTA Button (inherits root button styles) */
.btn-appointment {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--color-warning);
  color: #fff;
  border-radius: var(--border-radius);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-speed);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-appointment:hover {
  background: #cc5200;
  transform: translateY(-3px);
}

/* Google Map */
.map-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container iframe {
  width: 100%;
  max-width: 550px;
  height: 420px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-speed);
}

.map-container iframe:hover {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contents {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .text-content {
    text-align: center;
    max-width: 100%;
  }

  .map-container iframe {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .btn-appointment {
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .location-city {
    font-size: 2rem;
  }

  .location-type {
    font-size: 1.6rem;
  }

  .location-venue {
    font-size: 1.3rem;
  }

  .location-address,
  .location-description {
    font-size: 1rem;
  }

  .map-container iframe {
    height: 250px;
  }

  .btn-appointment {
    width: 100%;
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}





.faq-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: var(--font-family-base);
}

.heading{
  text-align: center;
  margin: 20px 0 10px; /* Reduced top and bottom margin */
  font-size: 2.5rem;
  color: var(--color-success);
  font-weight: 600;
  line-height: 1.2;
}
.subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 20px;
  line-height: var(--line-height-base);
}

.location-title {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 1.75rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background: var(--color-light);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  border: none;
  background: var(--color-light);
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-speed);
}

.faq-question:hover {
  background: #f0f9f6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  padding: 0 20px;
  color: var(--color-secondary);
  font-size: 1rem;
  line-height: var(--line-height-base);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

.icon {
  font-size: 1.2rem;
  transition: transform var(--transition-speed);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}







footer {
  background: linear-gradient(to bottom, #23395d, #406882);
  color: #ffffff;
  padding: 60px 20px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f4a261, #2a9d8f);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Updated Logo Section */
.footer-logo {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding-bottom: 20px;
}

.footer-logo img {
  max-width: 180px; /* Ensures proper sizing */
  height: auto;
  border-radius: 10px; /* Rounded edges for elegance */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1); /* Smooth zoom effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

/* Disclaimer Section */
.footer-content {
  flex: 2;
  min-width: 300px;
}

.footer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f4a261;
  text-transform: uppercase;
}


.footer-content p {
  line-height: 1.8;
  color: #e6f3f8;
  margin-bottom: 15px;
}

/* Quick Links Section */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #f4a261;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #e6f3f8;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, transform 0.3s;
}

.footer-links ul li a:hover {
  color: #f4a261;
  transform: translateX(5px); /* Slide effect on hover */
}

/* Footer Bottom Section */
/* .footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #e6f3f8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
} */

/* Animation for Logo and Quick Links */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer .footer-container > div {
  animation: fadeInUp 0.8s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-content,
  .footer-links {
    flex: 1;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 15px;
  }

  .footer-content h4, .footer-links h4 {
    font-size: 1.2rem;
  }
}