/* ============================================
   MOTHER TOUCH HOMES — style.css
   Theme: Orange #f05a24 | Black #111111
   Font: Nunito (body) + Playfair Display (display)
============================================ */

/* ---- TOKENS ---- */
:root {
  --orange:      #f05a24;
  --orange-dark: #c94410;
  --orange-light:#fff0ea;
  --black:       #111111;
  --white:       #ffffff;
  --gray-light:  #f8f8f8;
  --gray-mid:    #e8e8e8;
  --gray-text:   #666666;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 12px rgba(240,90,36,.10);
  --shadow-md:   0 6px 30px rgba(240,90,36,.18);
  --shadow-dark: 0 4px 24px rgba(17,17,17,.10);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.2;
}

h4, h5, h6 { font-family: 'Nunito', sans-serif; font-weight: 700; }

a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================
   HEADER / NAV
============================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  z-index: 1050;
}

.navbar { padding: 14px 0; }

/* logo */
/* Desktop */
.site-logo {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
    .site-logo {
        height: 55px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-logo {
        height: 42px;
    }

    .navbar-brand {
        max-width: 180px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .site-logo {
        height: 38px;
    }

    .navbar-brand {
        max-width: 150px;
    }
}
/* Brand */
.brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; color: var(--black); }
.brand-sub  { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; }

/* Nav links */
.navbar-nav .nav-link {
  font-size: 14.5px; font-weight: 700;
  color: var(--black);
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all .2s;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}

/* CTA button in nav */
.nav-cta-btn {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.nav-cta-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Hamburger */
.navbar-toggler { border: none; padding: 8px; background: transparent; box-shadow: none !important; }
.toggler-icon {
  display: block; width: 24px; height: 2.5px;
  background: var(--black); border-radius: 4px;
  margin: 5px 0; transition: all .3s;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-btn {
  position: fixed;
  right: 20px;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.25);
  z-index: 999; transition: all .3s;
  text-decoration: none;
}
.float-whatsapp { bottom: 90px; background: #25D366; }
.float-call     { bottom: 20px; background: var(--orange); }
.float-btn:hover { color: #fff; transform: scale(1.06); }
.float-btn i { font-size: 20px; }
.float-label { font-size: 13px; }

@media (max-width: 480px) {
  .float-btn { padding: 14px; border-radius: 50%; }
  .float-label { display: none; }
}

/* ============================================
   SECTION UTILITIES
============================================ */
.section-pad  { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-light-gray { background: var(--gray-light); }

.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  color: var(--orange); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--black); margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px; color: var(--gray-text);
  max-width: 560px; margin: 0 auto;
}

.divider {
  width: 50px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 4px; margin: 16px auto 30px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px; border: none;
  box-shadow: var(--shadow-sm); transition: all .25s; cursor: pointer;
}
.btn-primary-orange:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--orange);
  padding: 12px 26px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  border: 2px solid var(--orange); transition: all .25s;
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 12px 26px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,.5); transition: all .25s;
  backdrop-filter: blur(4px);
}
.btn-white-outline:hover { background: #fff; color: var(--orange); border-color: #fff; }

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  background: linear-gradient(135deg, #1a0a04 0%, #2d1108 40%, #111 100%);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
  min-height: 90vh; display: flex; align-items: center;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(240,90,36,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240,90,36,.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,90,36,.15); border: 1px solid rgba(240,90,36,.35);
  color: var(--orange); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 1.5s infinite; }

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,.72);
  margin-bottom: 36px; max-width: 520px;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

/* Hero Stats */
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 10px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 28px; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Hero Highlights */
.hero-highlights {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.highlight-item:last-child { border-bottom: none; }
.highlight-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
}
.highlight-text strong { display: block; font-size: 14px; color: #fff; font-weight: 700; }
.highlight-text span  { font-size: 12px; color: rgba(255,255,255,.55); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 18px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; padding: 6px 0;
}
.trust-item i { font-size: 22px; color: var(--orange); }
.trust-item span { font-size: 13.5px; font-weight: 700; color: var(--black); }

/* ============================================
   ABOUT PREVIEW (index)
============================================ */
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--orange-light), #ffe5d8);
  min-height: 400px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--orange); font-size: 70px;
  border: 2px dashed rgba(240,90,36,.3);
}
.about-img-placeholder p { font-size: 14px; font-weight: 600; color: var(--gray-text); margin-top: 12px; }

.about-badge {
  position: absolute; bottom: -10px; right: -10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; border-radius: var(--radius-md); padding: 16px 22px;
  box-shadow: var(--shadow-md); text-align: center;
}
.about-badge .big { font-size: 32px; font-weight: 900; line-height: 1; }
.about-badge .small { font-size: 12px; font-weight: 600; opacity: .85; }

.about-check-list { list-style: none; padding: 0; margin: 20px 0; }
.about-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--gray-mid);
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-list li i { color: var(--orange); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* ============================================
   AMENITY CARDS
============================================ */
.amenity-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-dark); transition: all .3s;
  height: 100%; border: 1px solid transparent;
}
.amenity-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: rgba(240,90,36,.2);
}
.amenity-icon {
  width: 70px; height: 70px; border-radius: 18px;
  background: linear-gradient(135deg, var(--orange-light), #ffe0d0);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--orange); margin: 0 auto 18px;
  transition: all .3s;
}
.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; transform: scale(1.08);
}
.amenity-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.amenity-card p  { font-size: 13.5px; color: var(--gray-text); margin: 0; }

/* ============================================
   ROOM CARDS
============================================ */
.room-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-dark);
  transition: all .3s; height: 100%;
  border: 1px solid var(--gray-mid);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.room-img-placeholder {
  background: linear-gradient(135deg, var(--orange-light), #ffe5d8);
  height: 210px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--orange); font-size: 50px; position: relative;
}
.room-img-placeholder img { width: 100%; height: 210px; object-fit: cover; }
.room-img-placeholder p { font-size: 12px; color: var(--gray-text); margin: 8px 0 0; }

.room-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; letter-spacing: .5px;
}

.room-body { padding: 22px; }
.room-body h5 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.room-body p  { font-size: 14px; color: var(--gray-text); margin-bottom: 16px; }

.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.room-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange-light); color: var(--orange);
  padding: 4px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
}

/* ============================================
   REVIEWS
============================================ */
.rating-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg); padding: 40px 30px; text-align: center; color: #fff;
}
.rating-big { font-size: 72px; font-weight: 900; line-height: 1; color: #fff; }
.rating-stars i { font-size: 28px; color: #ffe066; }
.rating-count { font-size: 15px; opacity: .85; margin-top: 8px; }

.review-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-dark);
  height: 100%; border: 1px solid var(--gray-mid);
  transition: all .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars i { color: var(--orange); font-size: 16px; }
.review-quote { font-size: 32px; line-height: 1; color: var(--orange); margin-bottom: 8px; }
.review-text { font-size: 14.5px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--black); }
.reviewer-role { font-size: 12px; color: var(--gray-text); }

/* ============================================
   GALLERY
============================================ */
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-dark); transition: all .3s;
  cursor: pointer; background: var(--gray-light);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-img-placeholder {
  background: linear-gradient(135deg, var(--orange-light), #ffe5d8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--orange); font-size: 40px;
}
.gallery-img-placeholder p { font-size: 12px; color: var(--gray-text); margin: 8px 0 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }

/* ============================================
   LOCATION
============================================ */
.location-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-dark);
  border-left: 4px solid var(--orange);
}
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-dark); }
.map-frame iframe { width: 100%; height: 420px; border: none; display: block; }

/* ============================================
   CONTACT
============================================ */
.contact-info-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-dark); height: 100%;
}
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-dark);
}
.form-control, .form-select {
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--gray-mid) !important;
  font-size: 14.5px; padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(240,90,36,.12) !important;
}
.form-label { font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 6px; }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, #1a0a04 0%, var(--orange-dark) 60%, var(--orange) 100%);
  padding: 80px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,.05) 0%, transparent 60%);
}
.cta-section h2 { font-size: clamp(26px, 4vw, 44px); color: #fff; margin-bottom: 14px; }
.cta-section p  { font-size: 17px; opacity: .8; max-width: 540px; margin: 0 auto 36px; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2d1108 60%, var(--orange-dark) 100%);
  padding: 70px 0 60px; color: #fff;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 50px); color: #fff; margin-bottom: 10px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,.7); max-width: 560px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; font-size: 13.5px; margin-top: 16px; }
.breadcrumb-custom a { color: var(--orange); }
.breadcrumb-custom span { color: rgba(255,255,255,.5); }
.breadcrumb-custom .current { color: rgba(255,255,255,.8); }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: #0e0e0e; color: rgba(255,255,255,.7); }

.footer-top { padding: 70px 0 40px; }

.footer-brand {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 800; color: #fff;
}
.footer-brand i { color: var(--orange); }
.footer-tagline { color: var(--orange); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 0; }

.footer-rating { display: flex; align-items: center; gap: 10px; }
.footer-rating .stars i { color: #ffe066; font-size: 16px; }
.footer-rating span { font-size: 13px; color: rgba(255,255,255,.55); }

.footer-heading { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-links i { font-size: 11px; margin-right: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-list i { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: var(--orange); }

.footer-action-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-footer-wa, .btn-footer-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; transition: all .2s;
}
.btn-footer-wa   { background: #25D366; color: #fff; }
.btn-footer-call { background: var(--orange); color: #fff; }
.btn-footer-wa:hover   { background: #1da855; color: #fff; transform: translateY(-2px); }
.btn-footer-call:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; }

/* ============================================
   ANIMATIONS
============================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE TWEAKS
============================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-md); padding: 16px;
    margin-top: 12px; border: 1px solid var(--gray-mid);
  }
  .navbar-nav .nav-link { padding: 10px 14px !important; }
  .nav-cta-btn { display: inline-flex; margin-top: 8px; }
  .hero-section { min-height: auto; padding: 70px 0 60px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .about-badge { bottom: 0; right: 0; }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
}
