/* =========================================================
   THE MUSCLES MONSTER GYM — Core Stylesheet
   Dark premium fitness theme with energetic highlights
   ========================================================= */

:root {
  --bg:           #080808;
  --bg-2:         #141414;
  --card:         #1E1E1E;
  --accent:       #FF3B1F;
  --accent-dark:  #c92a12;
  --yellow:       #FFC107;
  --white:        #FFFFFF;
  --muted:        #B5B5B5;
  --line:         rgba(255,255,255,0.08);

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px rgba(0,0,0,0.55);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .btn {
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}

a { text-decoration: none; transition: color .25s var(--ease); }

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

.container { max-width: 1200px; }

::selection { background: var(--accent); color: #fff; }

/* Section rhythm */
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--bg-2); }

.section-head { margin-bottom: 56px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 16px;
}
.section-title .hl { color: var(--accent); }
.section-title .yl { color: var(--yellow); }
.section-sub { color: var(--muted); max-width: 620px; margin: 0; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  padding: 13px 30px;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,59,31,0.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,59,31,0.5);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--bg);
  transform: translateY(-3px);
}
.btn-call {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 9px 22px;
}
.btn-call:hover { background: var(--accent); color: #fff; }
.btn-yellow {
  background: var(--yellow);
  color: #1a1300;
  box-shadow: 0 10px 30px rgba(255,193,7,0.3);
}
.btn-yellow:hover { background: #ffcd38; color: #1a1300; transform: translateY(-3px); }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
  padding: 9px 0;
  color: var(--muted);
}
.topbar i { color: var(--accent); margin-right: 5px; }
.topbar a { color: var(--muted); }
.topbar a:hover { color: var(--white); }
.rating-pill {
  background: rgba(255,193,7,0.12);
  color: var(--yellow) !important;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 500;
}
.rating-pill i { color: var(--yellow); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.navbar { padding: 14px 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.navbar-brand strong { color: var(--accent); }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(255,59,31,0.4);
  transform: rotate(-8deg);
  transition: transform .35s var(--ease);
}
.navbar-brand:hover .brand-mark { transform: rotate(0deg) scale(1.05); }
.brand-text { line-height: 1; }

.navbar-nav .nav-link {
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 16px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.navbar-nav .nav-link:hover { color: var(--accent); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--accent); }

/* Custom hamburger */
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 26px; height: 2.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: all .3s var(--ease);
}

/* logo */
.site-logo {
  height: 58px;
  width: auto;
  display: block;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

@media (max-width: 576px) {
  .site-logo {
    height: 48px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(8,8,8,0.96) 32%, rgba(8,8,8,0.55) 70%, rgba(8,8,8,0.85) 100%),
    url('../img/hero.jpg') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(255,59,31,0.22), transparent 55%);
  pointer-events: none;
}
.hero-streak {
  position: absolute;
  top: 0; right: 8%;
  width: 2px; height: 100%;
  background: linear-gradient(transparent, var(--accent), transparent);
  opacity: .35;
}
.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.3);
  color: var(--yellow);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .82rem;
  margin-bottom: 26px;
}
.hero-flag i { color: var(--yellow); }
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 22px;
}
.hero h1 .line-2 { color: var(--accent); }
.hero h1 .line-3 { color: var(--yellow); }
.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
}
.hl-card {
  background: rgba(30,30,30,0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.hl-card:hover { transform: translateY(-5px); border-color: rgba(255,59,31,0.5); }
.hl-card i { color: var(--accent); font-size: 1.4rem; margin-bottom: 8px; }
.hl-card .hl-val { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.hl-card .hl-lab { color: var(--muted); font-size: .8rem; }

/* =========================================================
   PAGE BANNER (interior pages)
   ========================================================= */
.page-banner {
  position: relative;
  padding: 130px 0 90px;
  background:
    linear-gradient(rgba(8,8,8,0.82), rgba(8,8,8,0.92)),
    url('../img/about.jpg') center/cover no-repeat fixed;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,59,31,0.22), transparent 60%);
}
.page-banner .inner { position: relative; z-index: 2; }
.page-banner h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
}
.page-banner p { color: var(--muted); max-width: 580px; margin: 0 auto; }
.breadcrumb-row {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  color: var(--muted);
}
.breadcrumb-row a { color: var(--accent); }
.breadcrumb-row i { font-size: .65rem; }

/* =========================================================
   ABOUT SHORT
   ========================================================= */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/4.4;
}
.about-img-wrap .frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -14px; bottom: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge .lab { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }

.about-list { list-style: none; padding: 0; margin: 24px 0 30px; }
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--muted);
}
.about-list li i { color: var(--accent); margin-top: 5px; }

/* =========================================================
   SERVICES
   ========================================================= */
.service-grid { --gap: 26px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(255,59,31,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(255,59,31,0.12);
  color: var(--accent);
  font-size: 1.7rem;
  margin-bottom: 24px;
  transition: all .35s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-6deg);
}
.service-card h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); margin: 0 0 18px; }
.service-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
}
.service-link {
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9rem;
  font-weight: 600;
}
.service-link i { transition: transform .3s var(--ease); }
.service-link:hover i { transform: translateX(5px); }

/* Detailed service rows (services.php) */
.service-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.service-row .img-side {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-row .img-side::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(30,30,30,0.4));
}
.service-row .text-side { padding: 44px; }
.service-row .text-side .tag {
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
}
.service-row .text-side h3 { font-size: 2rem; text-transform: uppercase; margin: 8px 0 14px; }
.service-row .feat-list { list-style: none; padding: 0; margin: 18px 0 0; }
.service-row .feat-list li { color: var(--muted); margin-bottom: 8px; }
.service-row .feat-list i { color: var(--yellow); margin-right: 8px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 22px;
  height: 100%;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.why-item:hover { transform: translateY(-6px); border-color: rgba(255,193,7,0.4); }
.why-item .ic {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,193,7,0.12);
  color: var(--yellow);
  font-size: 1.1rem;
}
.why-item p { margin: 0; font-weight: 500; }

/* =========================================================
   COUNTERS
   ========================================================= */
.counters {
  background:
    linear-gradient(rgba(8,8,8,0.92), rgba(8,8,8,0.92)),
    url('../img/gym.jpg') center/cover no-repeat fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counter-box { text-align: center; padding: 20px; }
.counter-box .ic { color: var(--accent); font-size: 1.8rem; margin-bottom: 12px; }
.counter-num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.counter-num .suffix { color: var(--accent); }
.counter-box .lab {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 8px;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative;
  padding: 84px 0;
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "\f44b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 22rem;
  opacity: 0.07;
  right: -30px; top: 50%;
  transform: translateY(-50%);
}
.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-band p { max-width: 600px; margin: 0 auto 28px; color: rgba(255,255,255,0.9); }
.cta-band .btn-yellow { font-size: 1.05rem; padding: 15px 36px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.review-card:hover { transform: translateY(-8px); border-color: rgba(255,193,7,0.4); }
.review-card .quote-ic {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2.4rem;
  color: rgba(255,59,31,0.18);
}
.review-stars { color: var(--yellow); margin-bottom: 16px; letter-spacing: 2px; }
.review-text { color: #e8e8e8; font-style: italic; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}
.review-author .name { font-family: var(--font-head); font-weight: 600; }
.review-author .src { color: var(--muted); font-size: .8rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: #fff; border-color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(8,8,8,0.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .cat {
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
}
.gallery-overlay h4 { margin: 4px 0 0; text-transform: uppercase; font-size: 1.1rem; }
.gallery-overlay .plus {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
}

/* placeholder tiles when no real images present */
.ph-tile {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 12px, #161616 12px, #161616 24px);
  color: rgba(255,255,255,0.25);
  font-size: 2.4rem;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ic {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,59,31,0.12);
  color: var(--accent);
  font-size: 1.2rem;
}
.contact-info-item .lab {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .82rem;
  color: var(--muted);
}
.contact-info-item .val { font-weight: 500; }
.contact-info-item .val a { color: #fff; }
.contact-info-item .val a:hover { color: var(--accent); }

.form-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-control, .form-select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
}
.form-control:focus, .form-select:focus {
  background: var(--bg-2);
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(255,59,31,0.18);
  color: #fff;
}
.form-control::placeholder { color: #6b6b6b; }
.form-select option { background: var(--bg-2); }

.form-alert {
  display: none;
  background: rgba(40,167,69,0.12);
  border: 1px solid rgba(40,167,69,0.4);
  color: #7ee495;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  background: #050505;
  padding: 72px 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 240px;
  background: radial-gradient(circle, rgba(255,59,31,0.18), transparent 70%);
  pointer-events: none;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.footer-brand strong { color: var(--accent); }
.footer-about { color: var(--muted); font-size: .95rem; max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--card);
  color: #fff;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-4px); }

.footer-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  background: var(--accent);
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact li {
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .95rem;
}
.footer-contact i { color: var(--accent); margin-top: 5px; }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { margin: 0; color: var(--muted); font-size: .88rem; }
.footer-credit { color: var(--accent) !important; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }

/* Floating call btn */
.floating-call {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(255,59,31,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,31,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255,59,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,31,0); }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .section { padding: 70px 0; }
  .navbar-collapse {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-top: 14px;
    padding: 14px;
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .btn-call { margin-top: 10px; display: inline-flex; }
  .hero-highlights { grid-template-columns: repeat(2, 1fr); }
  .about-badge { right: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row .img-side { min-height: 240px; }
  .footer-about { max-width: none; }
}

@media (max-width: 575px) {
  .section { padding: 56px 0; }
  .hero { min-height: 88vh; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-card, .contact-card, .service-row .text-side { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brand-text { font-size: 1rem; }
  .cta-band::before { font-size: 14rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
