/* ============================================================
   AFRICAN QUEEN OF BRAIDS — MAIN STYLESHEET
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --accent: #7b3f5e;
  --light: #f9f4ef;
  --light-2: #ede8e3;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #888888;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.2);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--light); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: var(--dark); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  animation: plsPulse 1.5s ease-in-out infinite;
}
.preloader-logo img { height: 144px; width: auto; display: block; filter: drop-shadow(0 0 12px rgba(201,168,76,.45)); }
.preloader-bar { width: 180px; height: 2px; background: rgba(201,168,76,.15); border-radius: 2px; overflow: hidden; }
.preloader-bar::after { content: ''; display: block; height: 100%; background: var(--gold); border-radius: 2px; animation: plsLoad 1.8s ease-in-out infinite; }
@keyframes plsLoad { 0%{width:0%;margin-left:0} 50%{width:70%;margin-left:15%} 100%{width:0%;margin-left:100%} }
@keyframes plsPulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 90px;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0 6%;
  height: 72px;
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.nav-logo { display: flex; align-items: center; z-index: 1001; text-decoration: none; }
.nav-logo img { height: 82px; width: auto; display: block; transition: height .3s ease; }
nav.scrolled .nav-logo img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; position: relative; transition: color .2s; }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 26px; border-radius: 50px; font-weight: 700 !important;
}
.nav-links .nav-cta::after { display: none !important; }
.nav-links .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201,168,76,.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; z-index: 1001; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(13,13,13,.98);
  backdrop-filter: blur(20px); z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { color: rgba(255,255,255,.9); font-family: 'Playfair Display', serif; font-size: 2rem; transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-socials { display: flex; gap: 16px; margin-top: 16px; }
.mobile-socials a { width: 46px; height: 46px; border: 1px solid rgba(201,168,76,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; font-family: 'Lato', sans-serif; transition: all .3s; }
.mobile-socials a:hover { background: var(--gold); color: var(--dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 36px; background: var(--gold); color: var(--dark);
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 8px; border: 2px solid var(--gold);
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.12); opacity: 0; transition: opacity .25s; }
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,168,76,.35); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-white { background: #fff; color: var(--dark); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-dark { background: var(--dark); color: var(--gold); border-color: var(--dark); }
.btn-dark:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; } .delay-6 { transition-delay: .6s; }

/* ── SECTION LAYOUT ── */
section { padding: 100px 6%; }
.section-label { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.9rem); color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-title span { color: var(--gold); }
.section-title.light { color: #fff; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; line-height: 1.85; }
.section-sub.center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }
.divider { width: 50px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0 50px; }
.divider.center { margin: 18px auto 50px; }

/* ── HOMEPAGE HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero-bg.png') center/cover no-repeat; transform: scale(1.08); transition: transform 10s ease; }
.hero-bg.loaded { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,.9) 0%, rgba(123,63,94,.55) 55%, rgba(13,13,13,.8) 100%); }
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(201,168,76,.5); animation: particleFloat linear infinite; }
@keyframes particleFloat { 0%{transform:translateY(100vh) scale(0);opacity:0} 10%{opacity:1} 90%{opacity:.6} 100%{transform:translateY(-120px) scale(1);opacity:0} }
.hero-content { position: relative; z-index: 2; padding: 0 6%; max-width: 820px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-size: .78rem; letter-spacing: .32em; text-transform: uppercase; margin-bottom: 26px; opacity: 0; animation: fadeUp .8s ease .3s forwards; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 5.8rem); color: #fff; line-height: 1.06; margin-bottom: 28px; opacity: 0; animation: fadeUp .8s ease .5s forwards; }
.hero h1 em { color: var(--gold); font-style: italic; display: block; }
.hero p { color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 480px; line-height: 1.85; margin-bottom: 44px; opacity: 0; animation: fadeUp .8s ease .7s forwards; }
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; opacity: 0; animation: fadeUp .8s ease .9s forwards; }

/* Hero primary button */
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 38px; background: var(--gold); color: #0d0d0d;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: .88rem;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  border-radius: 8px; border: 2px solid var(--gold);
  transition: all .3s ease; position: relative; overflow: hidden;
}
.hero-btn-primary i { transition: transform .3s ease; }
.hero-btn-primary:hover { background: transparent; color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 16px 40px rgba(201,168,76,.3); }
.hero-btn-primary:hover i { transform: translateX(5px); }

/* Hero ghost button */
.hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 32px; background: transparent; color: rgba(255,255,255,.85);
  font-family: 'Lato', sans-serif; font-weight: 600; font-size: .88rem;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,.22);
  transition: all .3s ease;
}
.hero-btn-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); }

/* Hero trust strip */
.hero-trust { display: flex; align-items: center; gap: 0; flex-wrap: wrap; margin-top: 52px; opacity: 0; animation: fadeUp .8s ease 1.1s forwards; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-trust-item i { color: var(--gold); font-size: .8rem; }
.hero-trust-item span { color: rgba(255,255,255,.6); }
.hero-trust-sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); margin: 0 22px; }

/* ── PAGE HERO ── */
.page-hero { position: relative; height: 56vh; min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 6%; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,.88) 0%, rgba(123,63,94,.65) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2.3rem, 5.5vw, 4rem); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 22px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: .83rem; color: rgba(255,255,255,.45); }
.breadcrumb a { color: var(--gold); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ── STATS ── */
.stats { background: var(--dark-2); padding: 60px 6%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.stat-item { text-align: center; padding: 32px 20px; border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius); transition: var(--transition); }
.stat-item:hover { border-color: var(--gold); background: rgba(201,168,76,.05); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,.45); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }

/* ── SERVICES SECTION (homepage) ── */
.services-section { background: var(--dark); position: relative; overflow: hidden; }
.services-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%); pointer-events: none; }
.services-section .section-title { color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 60px; }
.service-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,168,76,.1); border-radius: var(--radius-lg); padding: 40px 26px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: translateX(-100%); transition: transform .5s ease; }
.service-card:hover::before { transform: translateX(0); }
.service-card:hover { background: rgba(201,168,76,.06); border-color: rgba(201,168,76,.3); transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,.5); }
.service-icon { width: 66px; height: 66px; background: rgba(201,168,76,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 1.7rem; color: var(--gold); transition: var(--transition); }
.service-card:hover .service-icon { background: rgba(201,168,76,.2); transform: scale(1.1) rotate(-5deg); }
.service-card h3 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.75; }
.service-card .price { display: inline-block; color: var(--gold-light); font-weight: 700; font-size: 1rem; margin-top: 18px; padding: 6px 18px; background: rgba(201,168,76,.1); border-radius: 50px; }
.services-footer { text-align: center; margin-top: 56px; }

/* ── WHY US ── */
.why-us { background: var(--light-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image { position: relative; }
.why-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.why-img-main:hover img { transform: scale(1.05); }
.why-badge { position: absolute; bottom: -22px; right: -22px; background: var(--dark); border: 2px solid var(--gold); border-radius: var(--radius); padding: 22px 26px; text-align: center; }
.why-badge .badge-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.why-badge .badge-text { color: rgba(255,255,255,.65); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; }
.why-feat-icon { width: 54px; height: 54px; min-width: 54px; background: rgba(201,168,76,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); transition: var(--transition); }
.why-feature:hover .why-feat-icon { background: var(--gold); color: var(--dark); transform: rotate(-6deg); }
.why-feature h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-feature p { color: var(--text-muted); font-size: .875rem; line-height: 1.65; }

/* ── GALLERY (homepage) ── */
.gallery-home { background: var(--light); }
.gallery-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 60px; }
.gallery-item-home { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item-home:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item-home img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.gallery-item-home:hover img { transform: scale(1.08); }
.gallery-overlay-home { position: absolute; inset: 0; background: rgba(13,13,13,0); display: flex; align-items: center; justify-content: center; transition: background .3s ease; }
.gallery-overlay-home i { color: #fff; font-size: 2rem; opacity: 0; transform: scale(.7); transition: all .3s ease; }
.gallery-item-home:hover .gallery-overlay-home { background: rgba(13,13,13,.4); }
.gallery-item-home:hover .gallery-overlay-home i { opacity: 1; transform: scale(1); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark-2); overflow: hidden; }
.testimonials .section-title { color: #fff; }
.testimonial-slider { position: relative; overflow: hidden; margin-top: 60px; }
.testimonial-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.testimonial-card { min-width: 100%; padding: 0 80px; text-align: center; }
.t-quote { font-family: Georgia, serif; font-size: 5rem; color: var(--gold); opacity: .2; line-height: .8; margin-bottom: 18px; }
.t-text { color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.95; max-width: 700px; margin: 0 auto 26px; font-style: italic; }
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.t-name { color: #fff; font-weight: 700; font-size: 1rem; }
.t-role { color: var(--text-muted); font-size: .84rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,.25); cursor: pointer; transition: all .3s; border: none; }
.t-dot.active { background: var(--gold); transform: scale(1.4); }

/* ── CTA BANNER ── */
.cta-section { position: relative; text-align: center; padding: 110px 6%; overflow: hidden; background: var(--dark); }
.cta-section-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d0d0d 0%, #2a1220 50%, #1a1a1a 100%); }
.cta-section-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,.06) 0%, transparent 65%); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title { color: #fff; margin-bottom: 14px; }
.cta-section .section-sub { color: rgba(255,255,255,.75); margin: 0 auto 44px; text-align: center; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT (homepage) ── */
.about-home { background: var(--dark); }
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -28px; left: -28px; width: 200px; height: 200px; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--dark); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-home-text .section-title { color: #fff; }
.about-home-text p { color: rgba(255,255,255,.6); line-height: 1.9; font-size: .97rem; margin-bottom: 18px; }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--dark-3); padding: 80px 6%; }
.contact-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.c-info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 30px; }
.c-icon { width: 52px; height: 52px; min-width: 52px; background: rgba(201,168,76,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); }
.c-info-item h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.c-info-item p, .c-info-item a { color: rgba(255,255,255,.55); font-size: .95rem; line-height: 1.75; text-decoration: none; transition: color .2s; }
.c-info-item a:hover { color: var(--gold); }
.map-box { border-radius: var(--radius-lg); overflow: hidden; height: 320px; }
.map-box iframe { width: 100%; height: 100%; border: 0; filter: grayscale(25%) contrast(1.05); }

/* ── CONTACT FORM ── */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; color: rgba(255,255,255,.55); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); color: #fff; font-family: 'Lato', sans-serif; font-size: .95rem; transition: border-color .2s; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.07); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.2); }
.contact-form select option { background: var(--dark-2); color: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 72px 6% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 108px; width: auto; display: block; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .875rem; line-height: 1.85; max-width: 280px; margin-bottom: 26px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .9rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.4); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .83rem; }
.footer-bottom a { color: var(--gold); }

/* ── FLOATING ELEMENTS ── */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; z-index: 990; box-shadow: 0 4px 22px rgba(37,211,102,.4); transition: var(--transition); animation: waBounce 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.15); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,.5); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.back-to-top { position: fixed; bottom: 102px; right: 30px; width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 1rem; cursor: pointer; z-index: 990; border: none; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: 0 4px 18px rgba(201,168,76,.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 10000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; opacity: .65; transition: opacity .2s; line-height: 1; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 22px; } .lightbox-next { right: 22px; }

/* ── SERVICES PAGE ── */
.services-page-content { background: var(--dark); }
.category-block { margin-bottom: 80px; }
.category-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 12px; }
.category-title span { color: var(--gold); }
.service-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

/* Card shell */
.service-item {
  background: #131313;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column;
}
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.35);
  border-color: rgba(201,168,76,.35);
}

/* Image area */
.service-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.service-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(transparent, #131313);
  pointer-events: none;
}
.service-item:hover .service-img-wrap img { transform: scale(1.09); }

/* Badge */
.img-badge, .service-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--gold); color: var(--dark);
  font-size: .68rem; font-weight: 700; padding: 5px 14px;
  border-radius: 6px; text-transform: uppercase; letter-spacing: .1em;
}

/* Body */
.service-item-body, .service-body {
  padding: 18px 22px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.service-item-body h3, .service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: #fff; margin-bottom: 10px;
  line-height: 1.3;
}
.service-item-body p, .service-body p {
  color: rgba(255,255,255,.45); font-size: .86rem;
  line-height: 1.75; flex: 1; margin-bottom: 20px;
}

/* Card button */
.service-item-body .btn, .service-body .btn {
  width: 100%; justify-content: center;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.4);
  color: var(--gold); border-radius: 8px;
  padding: 13px 20px; font-size: .8rem; letter-spacing: .1em;
}
.service-item-body .btn:hover, .service-body .btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: #0d0d0d; transform: none;
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}
.service-item-body .btn::after, .service-body .btn::after { display: none; }

/* ── GALLERY PAGE ── */
.gallery-page-content { background: var(--light); }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.filter-btn { padding: 10px 26px; border: 1.5px solid rgba(201,168,76,.3); border-radius: 50px; background: transparent; color: var(--text-muted); font-size: .84rem; letter-spacing: .05em; cursor: pointer; transition: var(--transition); font-family: 'Lato', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-masonry-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; }
.gallery-masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-masonry-item:hover img { transform: scale(1.08); }
.gm-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0); display: flex; align-items: flex-end; padding: 20px; transition: background .3s; }
.gallery-masonry-item:hover .gm-overlay { background: rgba(13,13,13,.45); }
.gm-label { color: #fff; font-weight: 700; font-size: .88rem; opacity: 0; transform: translateY(10px); transition: all .3s; }
.gallery-masonry-item:hover .gm-label { opacity: 1; transform: translateY(0); }

/* ── GALLERY PAGE REDESIGN ── */

/* Slideshow section */
.gallery-slideshow-section { background: var(--dark); }
.gl-slideshow { position: relative; max-width: 920px; margin: 0 auto; padding: 0 36px; }
.gl-slide { display: none; }
.gl-slide.active { display: block; animation: gslFade .65s ease; }
@keyframes gslFade { from { opacity: 0; transform: scale(.975); } to { opacity: 1; transform: scale(1); } }

/* Frame */
.gl-slide-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,.08), 0 40px 100px rgba(0,0,0,.75);
  aspect-ratio: 16/10;
}
/* inner accent border */
.gl-slide-frame::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,76,.22); border-radius: 10px;
  z-index: 2; pointer-events: none;
}
/* bottom gradient */
.gl-slide-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.5) 100%);
  z-index: 1; pointer-events: none;
}
.gl-slide-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Counter */
.gl-counter {
  position: absolute; bottom: 20px; right: 20px; z-index: 3;
  color: rgba(255,255,255,.45); font-size: .75rem; letter-spacing: .18em;
}
.gl-counter strong { color: var(--gold); font-size: .95rem; }

/* Nav arrows */
.gl-prev, .gl-next {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(13,13,13,.72); border: 1.5px solid rgba(201,168,76,.4);
  color: var(--gold); font-size: 1rem; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease; backdrop-filter: blur(10px);
}
.gl-prev { left: -4px; } .gl-next { right: -4px; }
.gl-prev:hover, .gl-next:hover { background: var(--gold); color: var(--dark); box-shadow: 0 6px 28px rgba(201,168,76,.45); }

/* Dots */
.gl-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.gl-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(201,168,76,.2); cursor: pointer; transition: all .3s; border: none; }
.gl-dot.active { background: var(--gold); transform: scale(1.6); }

/* Showcase grid */
.gallery-showcase-section { background: var(--dark-2); }
.gallery-showcase-section .section-title { color: #fff; }
.gl-showcase {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 60px;
}
.showcase-item { cursor: pointer; }
.showcase-item.wide { grid-column: span 2; }

.showcase-frame {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 2px solid rgba(201,168,76,.18); aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.showcase-item.wide .showcase-frame { aspect-ratio: 2/1; }
.showcase-item:hover .showcase-frame {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.13), 0 22px 60px rgba(0,0,0,.6);
  transform: translateY(-5px);
}
.showcase-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.showcase-item:hover .showcase-frame img { transform: scale(1.07); }

/* Gold corner accents */
.showcase-frame::before {
  content: ''; position: absolute; top: 9px; left: 9px;
  width: 20px; height: 20px;
  border-top: 1.5px solid rgba(201,168,76,.5); border-left: 1.5px solid rgba(201,168,76,.5);
  border-radius: 3px 0 0 0; z-index: 2; pointer-events: none;
  transition: border-color .35s;
}
.showcase-frame::after {
  content: ''; position: absolute; bottom: 9px; right: 9px;
  width: 20px; height: 20px;
  border-bottom: 1.5px solid rgba(201,168,76,.5); border-right: 1.5px solid rgba(201,168,76,.5);
  border-radius: 0 0 3px 0; z-index: 2; pointer-events: none;
  transition: border-color .35s;
}
.showcase-item:hover .showcase-frame::before,
.showcase-item:hover .showcase-frame::after { border-color: var(--gold); }

/* Click icon */
.showcase-overlay {
  position: absolute; inset: 0; background: rgba(13,13,13,0);
  display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: background .3s ease;
}
.showcase-overlay i { color: #fff; font-size: 1.6rem; opacity: 0; transform: scale(.4); transition: all .3s ease; }
.showcase-item:hover .showcase-overlay { background: rgba(13,13,13,.3); }
.showcase-item:hover .showcase-overlay i { opacity: 1; transform: scale(1); }

/* Responsive for new gallery */
@media (max-width: 960px) { .gl-showcase { grid-template-columns: repeat(3, 1fr); } .showcase-item.wide { grid-column: span 2; } }
@media (max-width: 768px) { .gl-slideshow { padding: 0 22px; } .gl-prev { left: -6px; } .gl-next { right: -6px; } .gl-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gl-prev, .gl-next { width: 40px; height: 40px; font-size: .85rem; } .gl-prev { left: -2px; } .gl-next { right: -2px; } .gl-showcase { grid-template-columns: 1fr 1fr; gap: 10px; } .showcase-item.wide { grid-column: span 2; } .showcase-frame { aspect-ratio: 1 !important; } }

/* ── ABOUT PAGE ── */
.about-story { background: var(--light); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.about-story-img:hover img { transform: scale(1.05); }
.about-story-text p { color: var(--text-muted); line-height: 1.9; font-size: .97rem; margin-bottom: 18px; }
.values-section { background: var(--dark); }
.values-section .section-title { color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.value-card { background: rgba(255,255,255,.03); border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius-lg); padding: 42px 30px; text-align: center; transition: var(--transition); }
.value-card:hover { background: rgba(201,168,76,.06); border-color: rgba(201,168,76,.3); transform: translateY(-6px); }
.value-icon { font-size: 2.6rem; margin-bottom: 20px; color: var(--gold); }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.value-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.75; }
.team-section { background: var(--light-2); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; margin-top: 60px; }
.team-card { text-align: center; background: #fff; border-radius: var(--radius-lg); padding: 42px 24px; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 3px solid var(--gold); }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 6px; }
.team-card .role { color: var(--gold); font-size: .85rem; font-weight: 700; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: .875rem; line-height: 1.7; }

/* ── BOOKING PAGE ── */
.booking-section { background: var(--light); }
.booking-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.booking-info-panel { background: var(--dark); border-radius: var(--radius-lg); padding: 50px 36px; }
.booking-info-panel h3 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.5rem; margin-bottom: 30px; }
.b-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.b-info-item .b-icon { font-size: 1.3rem; color: var(--gold); margin-top: 2px; }
.b-info-item h4 { color: #fff; font-size: .95rem; margin-bottom: 4px; }
.b-info-item p { color: rgba(255,255,255,.52); font-size: .875rem; line-height: 1.65; }
.booking-form-panel { background: #fff; border-radius: var(--radius-lg); padding: 50px 42px; box-shadow: var(--shadow-lg); }
.booking-form-panel h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--dark); margin-bottom: 32px; }
.b-form .form-group { margin-bottom: 20px; }
.b-form label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: var(--dark); margin-bottom: 8px; }
.b-form input, .b-form select, .b-form textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--light-2); border-radius: var(--radius); font-family: 'Lato', sans-serif; font-size: .95rem; color: var(--text); background: var(--light); outline: none; transition: border-color .2s; }
.b-form input:focus, .b-form select:focus, .b-form textarea:focus { border-color: var(--gold); background: #fff; }
.b-form textarea { min-height: 100px; resize: vertical; }
.b-form select option { background: #fff; }
.wa-note { text-align: center; margin-top: 12px; color: var(--text-muted); font-size: .84rem; }
.wa-note strong { color: #25D366; }

/* ── CONTACT PAGE ── */
.contact-page { background: var(--dark-3); }
.contact-page .section-title { color: #fff; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }

/* ── FORM ROW ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── RESPONSIVE ── */

/* ─ 1100px: Wide tablets / small laptops ─ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .why-grid, .about-home-grid { gap: 50px; }
  .service-items-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
  .about-story-grid { gap: 50px; }
}

/* ─ 960px: Tablets ─ */
@media (max-width: 960px) {
  section { padding: 80px 5% !important; }

  /* Two-column grids → single column */
  .why-grid,
  .about-home-grid,
  .contact-strip-grid,
  .booking-layout,
  .contact-page-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Why Us image: limit height when stacked */
  .why-image { max-width: 480px; margin: 0 auto; }
  .why-badge { bottom: -16px; right: 0; }

  /* About image: limit width when stacked */
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .about-img-accent { display: none; }

  /* Gallery */
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-home:first-child { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Contact strip */
  .contact-strip-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* Booking two-col form rows stay */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.6rem, 8vw, 4.2rem); }
}

/* ─ 768px: Mobile landscape / small tablets ─ */
@media (max-width: 768px) {
  section { padding: 70px 5% !important; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 5%; height: 80px; }
  nav.scrolled { padding: 0 5%; height: 68px; }

  /* Hero */
  .hero-content { padding: 0 5%; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); line-height: 1.1; }
  .hero p { font-size: .97rem; margin-bottom: 36px; }
  .hero-btns { gap: 14px; }
  .hero-btn-primary,
  .hero-btn-ghost { padding: 15px 28px; font-size: .82rem; }
  .hero-trust { margin-top: 36px; gap: 0; }
  .hero-trust-sep { margin: 0 14px; }
  .hero-trust-item { font-size: .72rem; }

  /* Page hero */
  .page-hero { height: 46vh; min-height: 280px; padding: 30px 5%; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 3rem); }
  .cta-section-bg { background-attachment: scroll; }

  /* Services grid: 2 cols on tablet, cards usable */
  .service-items-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

  /* Gallery */
  .gallery-grid-home { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Testimonials */
  .testimonial-card { padding: 0 20px; }
  .t-text { font-size: .97rem; }

  /* Why badge */
  .why-badge { bottom: -12px; right: 10px; }

  /* CTA */
  .cta-section { padding: 80px 5%; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Contact strip */
  .contact-strip-grid { grid-template-columns: 1fr; gap: 0; }
  .c-info-item { margin-bottom: 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Booking form */
  .booking-form-panel { padding: 36px 24px; }

  /* Form rows → single col */
  .form-row { grid-template-columns: 1fr; }
}

/* ─ 480px: Mobile portrait ─ */
@media (max-width: 480px) {
  section { padding: 56px 4% !important; }

  /* Hero */
  .hero-content { padding: 0 4%; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.8rem); margin-bottom: 18px; }
  .hero p { font-size: .92rem; max-width: 100%; margin-bottom: 30px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btn-primary,
  .hero-btn-ghost { width: 100%; justify-content: center; padding: 16px 20px; font-size: .83rem; }
  .hero-trust { margin-top: 28px; flex-wrap: wrap; gap: 12px; }
  .hero-trust-sep { display: none; }
  .hero-trust-item { font-size: .7rem; gap: 6px; }

  /* Page hero */
  .page-hero { height: 42vh; min-height: 240px; }
  .page-hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .page-hero p { font-size: .88rem; }

  /* Nav */
  nav { padding: 0 4%; height: 72px; }
  .nav-logo img { height: 64px; }
  .mobile-menu a { font-size: 1.6rem; }

  /* Services: single column */
  .service-items-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-item-body { padding: 16px 18px 20px; }
  .service-item-body h3 { font-size: 1.1rem; }

  /* Gallery */
  .gallery-grid-home { grid-template-columns: 1fr; gap: 10px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 18px; font-size: .78rem; }

  /* Testimonials */
  .testimonial-card { padding: 0 10px; }
  .t-text { font-size: .9rem; line-height: 1.8; }
  .t-quote { font-size: 3.5rem; }

  /* Section text */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .divider { margin: 14px 0 36px; }
  .divider.center { margin: 14px auto 36px; }

  /* CTA */
  .cta-section { padding: 60px 4%; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Why us */
  .why-features { gap: 20px; }
  .why-feat-icon { width: 46px; height: 46px; min-width: 46px; font-size: 1.1rem; }
  .why-badge { bottom: -10px; right: 0; padding: 16px 20px; }
  .why-badge .badge-num { font-size: 1.9rem; }

  /* About */
  .about-story-grid { gap: 28px; }

  /* Value cards */
  .value-card { padding: 30px 22px; }

  /* Contact strip */
  .c-info-item { gap: 14px; }
  .c-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; }

  /* Map */
  .map-box { height: 220px; }

  /* Booking */
  .booking-form-panel { padding: 28px 18px; }
  .booking-inner-panel { padding: 24px 18px !important; }
  .booking-layout { gap: 28px; }

  /* Footer */
  footer { padding: 52px 4% 24px; }
  .footer-grid { gap: 22px; }
  .footer-logo img { height: 88px; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-bottom { padding-top: 20px; }

  /* Floating buttons */
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 16px; }
  .back-to-top { width: 40px; height: 40px; font-size: .9rem; bottom: 86px; right: 16px; }

  /* Lightbox */
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  /* Contact page booking form inline grids */
  .contact-form .form-group + .form-group { margin-top: 0; }
}

/* ─ 360px: Very small phones ─ */
@media (max-width: 360px) {
  section { padding: 48px 4% !important; }
  .hero h1 { font-size: 1.75rem; }
  .hero-btn-primary,
  .hero-btn-ghost { font-size: .78rem; padding: 14px 16px; }
  .service-items-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .mobile-menu a { font-size: 1.4rem; gap: 24px; }
  .testimonial-card { padding: 0 4px; }
  .t-text { font-size: .86rem; }
}
