/*logo */

                        .logo-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-brand img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    margin-right:12px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-title{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    font-family:"Cormorant Garamond', serif;
}

.logo-subtitle{
    font-size:12px;
    color:#d6b36a;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-top:2px;
    font-family:"Cormorant Garamond', serif;
}

/* Mobile */

@media(max-width:991px){

.logo-brand img{
    width:70px;
    height:70px;
}

.logo-title{
    font-size:20px;
}

.logo-subtitle{
    font-size:10px;
    letter-spacing:2px;
}

}
                
                    /*logo end*/
/*maps */

.location-section {
    padding: 80px 20px 100px 20px;   /* Added extra bottom padding */
    background: linear-gradient(135deg, #F5EEE7 0%, #F5EEE7 100%);
    margin-bottom: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    color: #4F6ACA;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #555;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: stretch;
    min-height: 460px;           /* Reduced height to prevent overflow */
}

.map-wrapper {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gallery-container {
    height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.location-info {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.info-box {
    background: white;
    padding: 20px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    min-width: 270px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    .location-section {
        padding-bottom: 80px;
    }
}


/*maps end */

/*footer logo */


                    .footer-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    margin-bottom:60px;
}

.footer-logo-line{
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.15);
}

.footer-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.footer-brand img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:15px;
    margin-right:15px;
    transition:.4s;
}

.footer-brand:hover img{
    transform:scale(1.05);
}

.footer-logo-text{
    display:flex;
    flex-direction:column;
}

.footer-logo-title{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    line-height:1;
    font-family:'Cormorant Garamond', serif;
}

.footer-logo-subtitle{
    font-size:10px;
    color:#d6b36a;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-top:6px;
}

/* Mobile */

@media(max-width:767px){

.footer-logo{
    flex-direction:column;
    gap:20px;
}

.footer-logo-line{
    width:100%;
}

.footer-brand{
    justify-content:center;
}

.footer-brand img{
    width:60px;
    height:60px;
}

.footer-logo-title{
    font-size:20px;
}

.footer-logo-subtitle{
    font-size:10px;
    letter-spacing:2px;
}

}
               

/*footer logo end*/

/* =========================
   PREMIUM SERVICES SECTION
========================= */
.hd-premium-services-wrap {
    background: #f8f4ef;
    padding: 80px 0 90px;
    overflow: hidden;
    position: relative;
}

.hd-premium-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 18px;
}

.hd-premium-small-title {
    font-size: 13px;
    letter-spacing: 3.2px;
    color: #b58b45;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.hd-premium-main-title {
    font-size: 42px;
    margin-top: 8px;
    font-family: Georgia, "Times New Roman", serif;
    color: #221d18;
    font-weight: 500;
    line-height: 1.15;
}

.hd-view-services-btn {
    background: #0d0d0d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hd-view-services-btn:hover {
    background: #b58b45;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 139, 69, 0.25);
}

.hd-view-services-btn span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hd-view-services-btn:hover span {
    transform: translateX(4px);
}

/* ===== OUTER WRAPPER (prevents half-card cut-off) ===== */
.hd-slider-outer {
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}

/* ===== SLIDER ===== */
.hd-premium-services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 12px 4px 28px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hd-premium-services-slider::-webkit-scrollbar {
    display: none;
}

/* ===== CARDS ===== */
.hd-premium-card {
    flex: 0 0 260px;
    width: 260px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.45s ease;
}

.hd-premium-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hd-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 24px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: background 0.4s ease;
}

.hd-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(207, 165, 92, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cfa55c;
    margin-bottom: 14px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
}

.hd-card-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hd-card-overlay a {
    color: #d7af65;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.hd-card-overlay a:hover {
    color: #f0d48a;
    gap: 8px;
}

/* Hover states */
.hd-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

.hd-premium-card:hover img {
    transform: scale(1.07);
}

.hd-premium-card:hover .hd-card-icon {
    background: rgba(181, 139, 69, 0.25);
    border-color: #cfa55c;
    transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

/* Desktop – exactly 5 full cards, no half cut-off */
@media (min-width: 1200px) {
    .hd-premium-card {
        flex: 0 0 calc(20% - 16px);
        width: calc(20% - 16px);
        min-width: 0;
    }
}

/* Large tablets / small desktops */
@media (max-width: 1199px) and (min-width: 992px) {
    .hd-premium-card {
        flex: 0 0 240px;
        width: 240px;
    }
    .hd-premium-main-title {
        font-size: 38px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .hd-premium-services-wrap {
        padding: 70px 0 80px;
    }
    .hd-premium-main-title {
        font-size: 32px;
    }
    .hd-premium-services-header {
        gap: 16px;
    }
    .hd-view-services-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
    .hd-premium-card {
        flex: 0 0 70%;
        width: 70%;
        max-width: 340px;
        scroll-snap-align: center;
    }
    .hd-premium-card img {
        height: 360px;
    }
    .hd-card-overlay h3 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hd-premium-services-wrap {
        padding: 55px 0 65px;
    }
    .hd-premium-main-title {
        font-size: 26px;
    }
    .hd-premium-small-title {
        font-size: 12px;
        letter-spacing: 2.5px;
    }
    .hd-premium-card {
        flex: 0 0 85%;
        width: 85%;
        max-width: 300px;
    }
    .hd-premium-card img {
        height: 320px;
    }
    .hd-card-overlay {
        padding: 18px 18px 20px;
    }
    .hd-card-overlay h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .hd-card-icon {
        width: 46px;
        height: 46px;
        font-size: 16px;
        margin-bottom: 12px;
    }
}




/* =========================================================
   HD HERO – PREMIUM VERSION (isolated)
========================================================= */

.hd-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0b;
}

.hd-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hd-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.70) 38%,
      rgba(8,8,8,0.28) 72%,
      rgba(8,8,8,0.12) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hd-hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 160px 40px 210px;
}

.hd-hero-content {
  max-width: 600px;
}

/* Subtitle */
.hd-hero-subtitle {
  display: inline-block;
  color: #c79a56;
  font-size: 13px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Title */
.hd-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.hd-hero-line {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.hd-hero-gold-line {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 62px;
  height: 3.5px;
  background: #d4a24c;
  border-radius: 20px;
}

.hd-hero-gold {
  color: #d8ae67;
}

/* Description */
.hd-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #d0d0d0;
  max-width: 460px;
  margin-bottom: 30px;
}

/* Buttons */
.hd-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hd-hero-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.hd-hero-btn-primary {
  background: linear-gradient(135deg, #ddb26e 0%, #c79a56 55%, #b08846 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(199,154,86,0.28);
}

.hd-hero-btn-primary:hover {
  background: linear-gradient(135deg, #e6bd7c 0%, #c79a56 55%, #a67a3d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(199,154,86,0.38);
}

.hd-hero-btn-outline {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}

.hd-hero-btn-outline:hover {
  background: #c79a56;
  border-color: #c79a56;
  color: #fff;
}

/* ===== REVIEW ROW (Avatars left + Score right) ===== */
.hd-hero-review {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hd-hero-avatars {
  display: flex;
  align-items: center;
}

.hd-hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #1a1a1a;
  margin-left: -12px;
  background: #333;
}

.hd-hero-avatar:first-child {
  margin-left: 0;
}

.hd-hero-score-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hd-hero-score-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hd-hero-stars {
  display: flex;
  gap: 2px;
  color: #d4a24c;
  font-size: 13px;
}

.hd-hero-score-num {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hd-hero-reviews {
  font-size: 14px;
  color: #c8c8c8;
}

.hd-hero-trusted {
  font-size: 13.5px;
  color: #b8b8b8;
  margin: 0;
}

/* ===== PREMIUM STATS BAR – Full Width & Bottom ===== */
.hd-hero-stats-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
}

.hd-hero-stats {
  width: 100%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  border-radius: 0;
}

.hd-hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.hd-hero-stat:last-child {
  border-right: none;
}

.hd-hero-stat:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hd-hero-stat i {
  font-size: 22px;
  color: #d4a24c;
  flex-shrink: 0;
}

.hd-hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hd-hero-stat-text strong {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hd-hero-stat-text span {
  font-size: 13px;
  color: #b0b0b0;
  font-weight: 400;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .hd-hero-title {
    font-size: 54px;
  }
  .hd-hero-stat-text strong {
    font-size: 18px;
  }
}

/* =========================================================
   TABLET / MOBILE
   KEY FIX: .hd-hero is `display:flex` with default row direction.
   The stats bar switches from position:absolute to position:relative
   below, which makes it a real flex item that was sitting BESIDE
   .hd-hero-container (that's why it floated to the right on mobile).
   Adding flex-direction: column here stacks them properly, full width,
   exactly like the desktop layout.
========================================================= */
@media (max-width: 991px) {
  .hd-hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 0;
  }

  .hd-hero-container {
    width: 100%;
    padding: 130px 24px 50px;
  }

  .hd-hero-content {
    max-width: 100%;
  }

  .hd-hero-title {
    font-size: 48px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  }

  .hd-hero-desc {
    max-width: 100%;
    font-size: 17px;
  }

  .hd-hero-gold-line {
    width: 52px;
    bottom: -6px;
  }

  .hd-hero-btns {
    width: 100%;
  }

  .hd-hero-btn {
    height: 46px;
    padding: 0 22px;
    font-size: 14px;
    flex: 0 1 auto;
    width: auto;
  }

  /* Review row: avatars, then rating, then trusted line — stacked, compact */
  .hd-hero-review {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hd-hero-stats-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 30px;
    flex-shrink: 0;
  }

  .hd-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-hero-stat {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 12px;
  }

  .hd-hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hd-hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .hd-hero-container {
    padding: 150px 28px 40px;
  }

  .hd-hero-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .hd-hero-gold-line {
    width: 40px;
    height: 3px;
    bottom: -5px;
  }

  .hd-hero-subtitle {
    font-size: 11px;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
  }

  .hd-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  /* Compact, side-by-side buttons instead of big full-width stacked ones */
  .hd-hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hd-hero-btn {
    width: auto;
    flex: 0 1 auto;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
    border-radius: 8px;
    justify-content: center;
  }

  /* Neat stacked review block: avatars on top, rating below, trusted line last */
  .hd-hero-review {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hd-hero-avatars {
    flex-shrink: 0;
  }

  .hd-hero-avatar {
    width: 28px;
    height: 28px;
    margin-left: -9px;
    border-width: 2px;
  }

  .hd-hero-avatar:first-child {
    margin-left: 0;
  }

  .hd-hero-score-block {
    gap: 2px;
  }

  .hd-hero-score-top {
    gap: 6px;
  }

  .hd-hero-stars {
    font-size: 11px;
  }

  .hd-hero-score-num {
    font-size: 13px;
  }

  .hd-hero-reviews {
    font-size: 11.5px;
  }

  .hd-hero-trusted {
    font-size: 11px;
    letter-spacing: 0.15px;
  }

  .hd-hero-stats-wrap {
    margin-top: 24px;
  }

  .hd-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hd-hero-stat {
    padding: 16px 8px;
    gap: 8px;
  }

  .hd-hero-stat i {
    font-size: 16px;
  }

  .hd-hero-stat-text strong {
    font-size: 15px;
  }

  .hd-hero-stat-text span {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .hd-hero-stats {
    grid-template-columns: 1fr;
  }

  .hd-hero-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hd-hero-stat:last-child {
    border-bottom: none;
  }
}