/* ============================================================
   TYUS PROS — MAIN STYLESHEET
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --yellow:   #FFD800;
  --blue:     #0e84b7;
  --dark:     #1a1a1a;
  --dark2:    #222222;
  --dark3:    #2b2b2b;
  --smoke:    #f5f5f5;
  --smoke2:   #efefef;
  --white:    #ffffff;
  --gray:     #74787c;
  --border:   #e0e0e0;
  --heading:  #1a1a1a;
  --manrope:  'Manrope', sans-serif;
  --roboto:   'Roboto', sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --t:        0.3s;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:0 20px 60px rgba(0,0,0,0.16);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--roboto);
  background: var(--white);
  color: var(--gray);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px; /* room for sticky call bar */
}
a { text-decoration: none; color: inherit; transition: color var(--t); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--manrope);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--manrope);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.sub-title::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.sub-title.dark-label { color: var(--dark); }
.sub-title.dark-label::before { background: var(--dark); }

.sec-title {
  font-family: var(--manrope);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
}
.sec-title.text-white { color: var(--white); }

.title-area { margin-bottom: 24px; }
.title-area.text-center { text-align: center; }

.body-text { font-size: 0.95rem; line-height: 1.8; color: var(--gray); }

/* ── BUTTONS ── */
.th-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--manrope);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.th-btn:hover { background: var(--dark); color: var(--yellow); border-color: var(--dark); }
.th-btn.style2 { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.th-btn.style2:hover { background: var(--dark); color: var(--yellow); border-color: var(--dark); }
.th-btn.style3 { background: var(--white); color: var(--dark); border-color: var(--white); clip-path: none; }
.th-btn.style3:hover { background: var(--yellow); border-color: var(--yellow); }
.th-btn.dark-btn { background: var(--dark); color: var(--yellow); border-color: var(--dark); clip-path: none; }
.th-btn.dark-btn:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  transition: background var(--t), box-shadow var(--t);
}
body.scrolled .header { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.menu-area .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.header-logo img { height: 58px; width: auto; }

/* Desktop nav */
.main-menu ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-menu ul li { position: relative; }
.main-menu ul li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  font-family: var(--manrope);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  border-radius: 4px;
  transition: color var(--t), background var(--t);
}
.main-menu ul li > a i { font-size: 0.55rem; opacity: 0.5; transition: transform var(--t); }
.main-menu ul li:hover > a i { transform: rotate(180deg); }
.main-menu ul li > a:hover,
.main-menu ul li.active > a { color: var(--yellow); }

/* Dropdown */
.main-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 220px;
  padding: 8px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 100;
}
.main-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.main-menu li.has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.main-menu .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.main-menu .sub-menu li a i { color: var(--yellow); font-size: 0.8rem; }
.main-menu .sub-menu li a:hover {
  background: rgba(255,216,0,0.08);
  color: var(--dark);
  padding-left: 20px;
}

/* Mobile toggle */
.th-menu-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: border-color var(--t), color var(--t);
}
.th-menu-toggle:hover { border-color: var(--yellow); color: var(--yellow); }

/* Mobile menu overlay */
.th-menu-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 320px;
  height: 100%;
  background: var(--dark);
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
  padding: 30px 24px;
}
.th-menu-wrapper.open { transform: translateX(0); }
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.th-menu-area { padding-top: 10px; }
#mobileClose {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 0;
}
.mobile-logo { margin-bottom: 24px; }
.mobile-logo img { height: 50px; }

.th-mobile-menu > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.th-mobile-menu ul li a {
  display: block;
  padding: 13px 0;
  font-family: var(--manrope);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color var(--t);
}
.th-mobile-menu ul li a:hover { color: var(--yellow); }
.th-mobile-menu .has-children { position: relative; }
.expand-nav {
  position: absolute;
  right: 0; top: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px 8px;
  transition: transform var(--t), color var(--t);
}
.expand-nav.open { transform: rotate(180deg); color: var(--yellow); }
.th-mobile-menu .sub-menu {
  display: none;
  padding: 0 0 8px 16px;
}
.th-mobile-menu .sub-menu.open { display: block; }
.th-mobile-menu .sub-menu li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
}
.mobile-nav-buttons { margin-top: 28px; }
.mobile-nav-buttons .th-btn { width: 100%; justify-content: center; clip-path: none; }

/* ── STICKY CALL BAR ── */
.sticky-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--yellow);
  text-align: center;
}
.sticky-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--dark);
  font-family: var(--manrope);
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--t);
}
.sticky-call-link:hover { background: rgba(0,0,0,0.08); color: var(--dark); }
.sticky-call-link i { font-size: 1rem; animation: ring 2s ease-in-out infinite; }
.sticky-call-link strong { font-weight: 800; font-size: 1.05rem; }

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

/* ── HERO ── */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-slide.active {
  opacity: 1;
  position: relative;
  min-height: 100vh;
}
.th-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.th-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 0 80px;
  width: 100%;
}
.hero-subtitle {
  display: block;
  font-family: var(--manrope);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--manrope);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0 auto 36px;
  max-width: 800px;
}
.slider-arrows { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background var(--t), border-color var(--t), color var(--t);
  font-size: 0.9rem;
  border-radius: 2px;
}
.slider-arrow:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }
.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  padding: 0;
}
.slider-dot.active { background: var(--yellow); transform: scale(1.2); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--yellow); }
.trust-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-cell {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background var(--t);
}
.trust-cell:last-child { border-right: none; }
.trust-cell:hover { background: rgba(0,0,0,0.06); }
.trust-cell i { font-size: 1.4rem; color: var(--dark); flex-shrink: 0; }
.trust-cell strong { display: block; font-family: var(--manrope); font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.trust-cell small { font-size: 0.75rem; color: rgba(0,0,0,0.55); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-desc { font-size: 0.95rem; line-height: 1.8; color: var(--gray); margin-bottom: 32px; }

.img-box3 { position: relative; }
.img-box3 .img-1 {
  width: 68%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.img-box3 .img-2 {
  position: absolute;
  bottom: -30px; right: 0;
  width: 52%;
  border-radius: 8px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.img-box3 .play-btn {
  position: absolute;
  top: 50%; left: 34%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  box-shadow: 0 0 0 14px rgba(255,216,0,0.18);
  transition: transform var(--t), box-shadow var(--t);
}
.img-box3 .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 20px rgba(255,216,0,0.12);
}

/* ── SERVICES SECTION ── */
.services-section { background: var(--dark2); padding: 100px 0; }
.services-section .sub-title { color: var(--yellow); }
.services-section .sec-title { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.service-box {
  background: var(--dark3);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.service-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.service-box:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.service-box:hover::after { transform: scaleX(1); }

.service-box_content { padding: 32px 28px 20px; }
.service-icon { margin-bottom: 20px; }
.service-icon i { font-size: 2.2rem; color: var(--yellow); transition: transform var(--t); }
.service-box:hover .service-icon i { transform: scale(1.1); }
.service-box h3 {
  font-family: var(--manrope);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-box p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.service-thumb { overflow: hidden; height: 190px; position: relative; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.service-box:hover .service-thumb img { transform: scale(1.06); }
.service-thumb-link {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background var(--t);
}
.service-thumb-link:hover { background: var(--white); }

/* ── APPOINTMENT BAND ── */
.appointment-band { background: var(--yellow); padding: 44px 0; }
.appointment-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.appointment-band .sub-title { color: var(--dark); }
.appointment-band .sub-title::before { background: var(--dark); }
.appointment-band .sec-title { color: var(--dark); font-size: 1.8rem; }

/* ── PORTFOLIO ── */
.portfolio-section { padding: 100px 0; }
.filter-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  font-family: var(--manrope);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--smoke);
  color: var(--dark);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--t), color var(--t);
}
.filter-btn.active, .filter-btn:hover { background: var(--yellow); color: var(--dark); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}
.project-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s var(--ease); display: block; }
.project-card:hover img { transform: scale(1.06); }
.project-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
}
.project-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform var(--t);
}
.project-card:hover .project-content { transform: translateY(0); }
.project-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.project-title {
  font-family: var(--manrope);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* ── EXPERIENCE ── */
.experience-section { padding: 100px 0; background: var(--smoke); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.experience-thumb { position: relative; }
.experience-thumb img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-lg); }
.customer-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--yellow);
  padding: 24px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.customer-badge .num {
  font-family: var(--manrope);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.customer-badge .txt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ── TEAM ── */
.team-section { padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-box {
  border-radius: 8px;
  overflow: hidden;
  background: var(--smoke);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.team-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img { overflow: hidden; }
.team-img img { width: 100%; height: 270px; object-fit: cover; object-position: top; transition: transform 0.4s; }
.team-box:hover .team-img img { transform: scale(1.04); }
.team-content { padding: 24px 20px; }
.team-desig {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.team-content h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 14px; }
.th-social { display: flex; gap: 8px; justify-content: center; }
.th-social a {
  width: 34px; height: 34px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: background var(--t), color var(--t);
}
.th-social a:hover { background: var(--yellow); color: var(--dark); }

/* ── COUNTER BAR ── */
.counter-section { background: var(--dark); padding: 60px 0; }
.counters-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}
.counter-card { display: flex; align-items: center; gap: 20px; }
.counter-icon { font-size: 2.8rem; color: var(--yellow); }
.counter-num {
  font-family: var(--manrope);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.counter-label { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ── DARK CTA BAND ── */
.cta-dark {
  padding: 100px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cta-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,20,0.82);
}
.cta-dark .container { position: relative; z-index: 2; text-align: center; }
.cta-dark .sec-title { color: var(--white); margin-bottom: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── BLOG ── */
.blog-section { padding: 100px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img { overflow: hidden; height: 220px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 14px; }
.blog-meta a { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.blog-meta a i { color: var(--yellow); }
.blog-meta a:hover { color: var(--yellow); }
.blog-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 12px; line-height: 1.4; }
.blog-content h3 a:hover { color: var(--yellow); }
.blog-text { font-size: 0.875rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--manrope);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark);
  transition: color var(--t), gap var(--t);
}
.link-btn:hover { color: var(--yellow); gap: 12px; }

/* ── CONTACT ── */
.contact-section { padding: 100px 0; background: var(--smoke); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: transform var(--t), box-shadow var(--t);
}
.contact-feature:last-child { margin-bottom: 0; }
.contact-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.icon-btn {
  width: 52px; height: 52px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-feature_label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-feature_link { display: block; font-family: var(--manrope); font-weight: 600; color: var(--heading); font-size: 0.9rem; }
.contact-feature_link:hover { color: var(--yellow); }

.contact-form-wrap { background: var(--white); border-radius: 8px; padding: 40px; box-shadow: var(--shadow); }
.form-title { margin-bottom: 28px; }
.form-title h3 { font-size: 1.2rem; font-weight: 700; color: var(--heading); }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--roboto);
  font-size: 0.875rem;
  color: var(--heading);
  outline: none;
  transition: border-color var(--t), background var(--t);
}
.form-control:focus { border-color: var(--yellow); background: var(--white); }
textarea.form-control { height: 130px; resize: none; }

/* ── CALL BAND ── */
.call-band { background: var(--dark2); padding: 50px 0; position: relative; overflow: hidden; }
.call-band::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 35%;
  background: linear-gradient(to right, rgba(255,216,0,0.05), transparent);
}
.call-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.call-band-text .sub-title { color: var(--yellow); }
.call-band-text .sec-title { color: var(--white); font-size: 1.8rem; }
.call-now-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--manrope);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--t), transform var(--t);
}
.call-now-btn i { font-size: 1rem; }
.call-now-btn:hover { background: var(--white); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--dark2); }
.footer-main { padding: 80px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr; gap: 50px; }

.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 65px; }
.about-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,216,0,0.06); }

.widget-title {
  font-family: var(--manrope);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--yellow);
}

.footer-menu li { margin-bottom: 10px; }
.footer-menu li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--t), gap var(--t);
}
.footer-menu li a i { color: var(--yellow); font-size: 0.7rem; }
.footer-menu li a:hover { color: var(--yellow); gap: 12px; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item i { color: var(--yellow); font-size: 0.9rem; margin-top: 4px; flex-shrink: 0; }
.contact-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-contact-item p, .footer-contact-item a { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-link { transition: color var(--t); }
.footer-contact-link:hover { color: var(--yellow); }
.emergency-hours { font-size: 0.78rem; color: var(--yellow); margin-top: 2px; }

.copyright-wrap { background: var(--blue); padding: 18px 0; }
.copyright-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.copyright-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.footer-bottom-links { display: flex; gap: 20px; list-style: none; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 76px; right: 24px;
  width: 46px; height: 46px;
  background: var(--yellow);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 990;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── BREADCRUMB ── */
.breadcrumb-wrap {
  background: var(--dark2);
  padding: 60px 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.breadcrumb-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/breadcrumb-bg.jpg') center/cover;
  opacity: 0.15;
}
.breadcrumb-inner { position: relative; z-index: 2; }
.page-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { font-size: 0.875rem; color: rgba(255,255,255,0.35); }
.breadcrumb .current { font-size: 0.875rem; color: var(--yellow); font-weight: 600; }

/* ── INNER PAGE CONTENT ── */
.page-content { padding: 80px 0; }
.page-content h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; margin-top: 40px; }
.page-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; margin-top: 32px; }
.page-content p { margin-bottom: 18px; font-size: 0.95rem; line-height: 1.8; color: var(--gray); }
.page-content ul { margin: 16px 0 24px 0; }
.page-content ul li { padding: 6px 0 6px 24px; position: relative; font-size: 0.95rem; color: var(--gray); }
.page-content ul li::before { content: ''; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }

/* ── FAQ ── */
.faq-wrap { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--manrope);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t);
}
.faq-question:hover { color: var(--yellow); }
.faq-question i { color: var(--yellow); font-size: 0.9rem; transition: transform var(--t); flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 0.95rem; color: var(--gray); line-height: 1.8; }
.faq-answer.open { display: block; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.d-none { display: none !important; }
.d-lg-block { display: none; }
.d-block { display: block; }
@media (min-width: 1025px) { .d-lg-block { display: block; } .d-none-lg { display: none; } }
