
.project-hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slides */
.carousel-container {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  
}


.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* NEW PREV + NEXT BUTTONS */
.carousel-nav-buttons {
  position: absolute;
  bottom: 130px; 
  right: 60px;
  z-index: 20;
  display: flex;
  gap: 12px;
}

.carousel-nav-buttons button {
  padding: 10px 22px;
  background: #d1a32c;
  border: none;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-nav-buttons button:hover {
  background: #c06643;
  color: #ffffff;
}


/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 85px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
  background: #d1a32c;
}


/* location hightlights */
.location-alt-section {
  background: #c06643;
  padding: 60px 0;
}

.location-alt-section h2 {
  color: #203370;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.location-alt-section h2 {
  color: #203370;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

/* Mobile Only */
@media (max-width: 576px) {
  .location-alt-section h2 {
    font-size: 22px;      /* smaller text */
    margin-bottom: 25px;  /* reduce spacing */
    line-height: 1.3;     /* better readability */
    padding: 0 10px;      /* prevents text touching edges */
  }
}



/* GRID: 4 per row */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  max-width: 1250px;
  margin: auto;
}

/* ITEM */
.loc-item {
  text-align: center;
  color: rgb(255, 255, 255);
  width: 100%;
}

/* CIRCLE */
.loc-icon-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px dashed #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  overflow: hidden;
}

.loc-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.loc-item p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.loc-item p span {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-top: 6px;
  font-size: 20px;
}
/* Zoom effect on icon hover */
.loc-item:hover .loc-icon-circle img {
    transform: scale(1.15);
}

/* Smooth animation */
.loc-icon-circle img {
    transition: transform 0.4s ease;
}

.underline-badge {
    width: 120px;               /* length of underline */
    height: 4px;                /* thickness */
    background: #ffffff;        /* theme color (dark blue) */
    margin: 10px auto 40px;     /* spacing above & below */
    border-radius: 2px;         /* smooth edges */
}

/* project */
/* Project highlights */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* MAIN SECTION */
.project-highlights-section {
  background: #ffffff;
 
}
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 10px;   /* LEFT & RIGHT padding */
}

/* CENTERED HEADING */
.highlight-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
  color: #203370;   
  position: relative;
  margin-top: 20px;
}

/* Decorative underline under centered heading */
.highlight-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: #c06643;  /* gold underline */
  border-radius: 2px;

}

/* GRID LAYOUT */
.highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.highlights-image {
  position: relative;
}

.highlights-image img {
  width: 650px;
  height: 630px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    
}

.highlights-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid #5aa7ff;
  border-radius: 20px;
  z-index: -1;
}

.highlights-image::after {
  content: '✦ LUXURY LIVING ✦';
  position: absolute;
  bottom: -1px;
  left: 45%;
  transform: translateX(-50%);
  background: #d1a32c;
  color: #f1f1f1;
  padding: 8px 28px;
  margin-bottom: 5px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* RIGHT TEXT COLOR FIX */
.highlights-content {
  color: #333333; 
}

/* LIST GRID */
.highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

/* EACH POINT */
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(0,0,0,0.05);    
  border-radius: 12px;
  border-left: 3px solid #c06643;
  font-size: 15px;
  color: #333333;
  transition: all 0.3s ease;
}

.highlight-list li:hover {
  background: rgba(0,0,0,0.10);
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.highlight-list li::before {
  content: '◆';
  color: #c06643;
  font-size: 10px;
}



/* STATS BOX */
.featured-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 34px;
  font-weight: 600;
  color: #c06643;
}

.stat-label {
  font-size: 15px;
  font-weight: bold;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
.stat-item {
  text-align: center;
  flex: 1;
  white-space: nowrap;   /* prevents text breaking into next line */
}

.stat-label {
  white-space: nowrap;   /* label stays in one line */
}


/* Parallax section */
.parallax {
  background-image: url("/assets/images/amr\ hero1.jpg");
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.form-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Horizontal Form */
.horizontal-form {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}

/* Inputs */
.horizontal-form input {
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  min-width: 220px;
  font-size: 15px;
  outline: none;
}

/* Button */
.horizontal-form button {
  padding: 12px 20px;
  background: #c06643;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.horizontal-form button:hover {
  background: #203370;
}

/* --------------*/
/* gallery */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 0px;   /* ✔ Equal left/right padding */
}

.carousel-section {
  background: #ffffff;
  padding: 40px 0;
}

.gallery-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #203370;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Underline */
.gallery-heading::after {
  content: "";
  width: 140px;             /* underline width */
  height: 4px;             /* underline thickness */
  background: #c06643;     /* golden underline */
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.carousel {
  width: calc(100% - 60px);    
  margin: 0 auto;
  overflow: hidden;
}
.carousel-item {
  height: 720px;      /* change value here */
}

.carousel-item img {
  height: 580px;         
  object-fit: cover;
}
/* Mobile Only */
@media (max-width: 576px) {

  .carousel {
    width: 100%;        /* full width on mobile */
    margin: 0;
  }

  .carousel-item img {
    height: 50vh;       /* reduce height for mobile */
    object-fit: cover;
  }
}

/* Remove default arrows completely */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

/* Top-right button container */
.gallery-top-buttons {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 50;
  display: flex;
  gap: 10px;
}

/* Custom Prev/Next buttons */
.gallery-btn {
  padding: 6px 16px;
  background: #c06643;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-btn:hover {
  background: #203370;
}

/* Small Round Carousel Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);  /* black background */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: 0.3s ease;
  opacity: 1; 
}

/* Arrow icons inside (white arrows) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: white;
  width: 18px;
  height: 18px;
}


/* masterplan layout */
.masterplan-section {
  background: #ffffff;
  padding: 10px 0;
}

.mp-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #203370;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Underline */
.mp-title::after {
  content: "";
  width: 200px;            /* underline width */
  height: 4px;            /* underline thickness */
  background: #c06643;    /* underline color */
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.mp-description {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  font-family: 'Raleway';
}

/* Image Card */
.mp-card {
  display: block;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: zoom-in;
}

.mp-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* ============================= */
/* RESPONSIVE BREAKPOINTS */
/* ============================= */

/* Tablets (landscape & small laptops) */
@media (max-width: 992px) {
  .mp-card img {
    height: 500px;
  }
}

/* Tablets & Mobile Landscape */
@media (max-width: 768px) {
  .mp-card img {
    height: 400px;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .mp-card {
    border-radius: 3px;
  }

  .mp-card img {
    height: 280px;   /* perfect height for mobile */
  }
}

/* EXTRA: Very small phones */
@media (max-width: 400px) {
  .mp-card img {
    height: 240px;
  }
}


.mp-card:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}




/* floor plans */
/* ===========================
   FLOOR PLANS SECTION
   =========================== */

.floorplans-section {
  padding: 60px 0;
  background: #ffffff;
}

/* MAIN HEADING */
.fp-main-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #203370;
  margin-bottom: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Underline */
.fp-main-heading::after {
  content: "";
  width: 200px;
  height: 4px;
  background: #c06643;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* SUB-HEADING */
.fp-sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-left: 30px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #c06643;
  border-radius: 6px;
  background-color: #c06643;
}

/* ===========================
   SLIDER CONTAINER
   =========================== */

.fp-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 0 40px; /* Equal left/right padding */
}

/* SLIDER TRACK */
.fp-slider {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px; /* gap between images */
}

/* EACH SLIDE (FLOOR PLAN IMAGE) */
.fp-img {
  flex: 0 0 calc(50% - 10px); /* exactly 2 per row */
  height: 380px;
  object-fit: cover;
  background: none;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
}
/* ===========================
   MOBILE RESPONSIVE (ONLY)
   =========================== */
@media (max-width: 576px) {

  .fp-container {
    padding: 0 15px;      /* reduced padding for small screens */
    margin-bottom: 40px;
  }

  .fp-slider {
    gap: 12px;            /* smaller gap between images */
  }

  .fp-img {
    flex: 0 0 100%;       /* show 1 image per row on mobile */
    height: 220px;        /* reduced height for mobile */
    border-radius: 4px;
  }
}


/* ===========================
   SLIDER BUTTONS (BOTTOM)
   =========================== */

.fp-controls {
  text-align: right;
  padding: 10px 40px 0 0;
}

.fp-bottom-btn {
  background: #c06643;
  color: #fff;
  padding: 8px 18px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.fp-bottom-btn:hover {
  background: #203370;
}

/* ===========================
   POPUP MODAL
   =========================== */

.fp-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  padding: 40px;
  justify-content: center;
  align-items: center;
}

/* Popup Image */
.fp-modal-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* Close Button */
.fp-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.fp-close:hover {
  color: #d1a32c;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;   /* LEFT & RIGHT padding */
}


/* clubhouse */
/* ======= GLOBAL CONTAINER FOR EQUAL PADDING ======= */
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 0px;
}

/* ======= CLUBHOUSE SECTION ======= */
.clubhouse-full-section {
    width: 100%;
    background: #fff;
    padding: 0;
}

/* Clubhouse Title */
.clubhouse-title {
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    color: #203370;
    margin-bottom: 30px;
    position: relative;
}

.clubhouse-title::after {
    content: "";
    width: 150px;
    height: 4px;
    background: #c06643;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Image wrapper */
.clubhouse-image-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
}

/* ===== POPUP (JS Controlled, No Page Jump) ===== */
.image-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 9999;
}

.image-popup.open {
    display: flex;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

.image-popup .close-btn {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
}

/* ======= AMENITIES TITLE ======= */
.amenities-title {
    font-size: 32px;
    font-weight: 600;
    color: #203370;
    margin: 40px 0 20px 0;
    position: relative;
}

.amenities-title::after {
    content: "";
    width: 320px;
    height: 3px;
    background: #c06643;
    position: absolute;
    bottom: -6px;
    left: 0;
}
/* Mobile Only */
@media (max-width: 576px) {
    .amenities-title {
        font-size: 22px;     /* smaller text for mobile */
        margin: 25px 0 15px 0;
    }

    .amenities-title::after {
        width: 180px;        /* shorter line */
        height: 2.5px;
        bottom: -4px;
    }
}

/* ======= AMENITIES GRID ======= */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Amenity Box */
.amenity-box {
    background: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
}

.amenity-box:hover {
    transform: translateY(-3px);
}

/* NEW — PNG Icon Style */
.amenity-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}


/* ======= CLUB FEATURE SECTION ======= */
/* 3 Columns Row */
.club-feature-section {
    padding: 20px 0;
}

.club-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 side-by-side */
    gap: 20px;
    padding: 0 0px; /* equal left-right padding */
}

/* Each card */
.club-feature-row {
    background: #fff;
    border-radius: 6px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

/* Image */
.club-feature-img img {
    width: 100%;
    height: 240px;       /* smaller so all fit in a row */
    object-fit: cover;
    border-radius: 6px;
    transition: transform .3s ease;
}

.club-feature-row:hover img {
    transform: scale(1.05);
}

/* Text */
.club-feature-text {
    margin-top: 15px;
}

.club-feature-text h3 {
    font-size: 20px;
    color: #d1a32c;
    font-weight: 600;
}

.club-feature-text p {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Raleway';
}
/* Mobile Only */
@media (max-width: 576px) {

    .club-feature-grid {
        grid-template-columns: 1fr;   /* 1 card per row */
        gap: 15px;                    /* reduced gap */
        padding: 0 10px;              /* small side padding */
    }

    .club-feature-row {
        padding: 15px;
        border-radius: 5px;
    }

    .club-feature-img img {
        height: 180px;                /* smaller mobile-friendly height */
        border-radius: 5px;
    }

    .club-feature-text h3 {
        font-size: 18px;
    }

    .club-feature-text p {
        font-size: 14px;
    }
}

/* Modal (same as before) */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.image-modal.open { display: flex; }

.image-modal img {
    max-width: 90%;
    max-height: 90%;
}

.image-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}



/* specifications */
.spec-section {
  padding: 60px 90px;  /* LEFT & RIGHT PADDING ADDED */
  background-color: #c06643;
}

/* HEADING */
.spec-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  color: #203370;
}

.spec-heading::after {
  content: "";
  width: 150px;
  height: 4px;
  background: #ffffff;
  display: block;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* GRID */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 40px;
}

/* EACH ITEM */
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* PNG ICON */
.spec-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  
}

/* TEXT */
.spec-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.spec-text p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}



/* location map */
/* Section Background */
.location-map-section {
  background: #ffffff;
  padding: 40px 40px;   /* equal left & right padding */
}

/* Centered Heading with Underline */
.location-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  color: #203370;
}

.location-heading::after {
  content: "";
  width: 150px;
  height: 4px;
  background: #c06643;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* FLEX LAYOUT (map left, address right) */
.location-flex {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

/* Map Image */
.location-map-container img {
  width: 100%;
  height: auto;
  max-height: 900px;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  transition: 0.3s ease;
}

.location-map-container img:hover {
  transform: scale(1.03);
}

/* Right Side — Address */
.location-address h3 {
  font-size: 24px;
  font-weight: 600;
  color: #203370;
  margin-bottom: 10px;
}

.location-address h5 {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}

/* Quote Heading */
.location-quote h1{
  font-size: 33px;
  font-weight: 500;
  font-style: inherit;
  color: #c06643;
  margin-bottom: 18px;
}
/* Location Points */
.location-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-points li {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

.location-points strong {
  color: #203370;
  font-weight: 600;
}

/* Mobile Only */
@media (max-width: 576px) {
  .location-quote h1 {
    font-size: 22px;        /* smaller heading */
    margin-bottom: 14px;    /* reduced spacing */
  }
}
@media (max-width: 576px) {
  .location-points li {
    font-size: 16px;
  }
}

/* Responsive */
@media(max-width: 992px) {
  .location-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-address {
    margin-top: 20px;
  }
}


/* Fixed Brochure Button */
.brochure-btn-fixed {
    position: fixed;
    top: 30%;
    right: 0;
    transform: translateY(-50%);
    transform-origin: right center;

    background: #d1a32c;
    color: #fff !important;
    padding: 8px 6px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    text-decoration: none !important;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 15px rgba(0,0,0,0.25);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    transition: 
        right 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
    
    cursor: pointer;
}

/* ICON */
.brochure-btn-fixed::before {
    content: "↓";
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

/* HOVER EFFECT */
.brochure-btn-fixed:hover {
    right: 8px;
    background: #203370;
    box-shadow: -8px 6px 20px rgba(0,0,0,0.3);
}
