/* ============================================================
   FLEXAURA SPORTS AND SPINE PHYSIOTHERAPY CLINIC
   Main Stylesheet — style.css
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif; color: #334155; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === CSS VARIABLES === */
:root {
  --blue:       #1155cc;
  --blue-dark:  #0a3d8f;
  --blue-deep:  #071f5e;
  --teal:       #00c9bb;
  --teal-dark:  #00a99d;
  --teal-light: #e0faf9;
  --white:      #fff;
  --light:      #f0f7ff;
  --gray:       #64748b;
  --gray-lt:    #e2e8f0;
  --dark:       #0f172a;
  --text:       #334155;
  --shadow:     0 4px 24px rgba(10,61,143,.12);
  --shadow-lg:  0 8px 40px rgba(10,61,143,.2);
  --radius:     14px;
  --radius-lg:  22px;
}

/* === LAYOUT UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 82px 0; }
.section-sm { padding: 50px 0; }
.bg-light   { background: var(--light); }
.bg-dark    { background: var(--blue-deep); }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* === TYPOGRAPHY === */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--teal); }
.section-desc { color: var(--gray); font-size: .97rem; max-width: 600px; line-height: 1.8; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: .93rem;
  border: none; cursor: pointer;
  transition: all .3s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,201,187,.35); }
.btn-blue    { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-white { background: #fff; color: var(--blue-dark); }
.btn-white:hover { background: var(--teal); color: #fff; }
.btn-dark-solid { background: var(--blue-deep); color: #fff; }
.btn-dark-solid:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: #475569; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid var(--gray-lt);
  border-radius: 10px; padding: 11px 14px;
  font-size: .9rem; outline: none; transition: .25s;
  background: #f8fafc; color: var(--dark); font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,201,187,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; justify-content: center; border-radius: 10px; padding: 14px; margin-top: 6px; font-size: 1rem; }

/* === TOPBAR === */
.topbar { background: var(--blue-deep); color: #b8cfff; font-size: .8rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #b8cfff; transition: .2s; }
.topbar a:hover { color: var(--teal); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; fill: var(--teal); flex-shrink: 0; }

/* === NAVBAR === */
.navbar { background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.15); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; object-fit: contain; }
.logo-img-fallback {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-img-fallback svg { width: 28px; height: 28px; fill: #fff; }
.logo-text { line-height: 1.15; }
.logo-name { display: block; font-size: 1.1rem; font-weight: 900; color: var(--blue-dark); }
.logo-sub  { display: block; font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 12px; font-size: .89rem; font-weight: 600;
  color: var(--dark); border-radius: 8px; transition: .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px;
  height: 2px; background: var(--teal); transform: scaleX(0); transition: .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta  { margin-left: 6px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue-dark); border-radius: 3px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--gray-lt); padding: 14px 20px; gap: 6px; box-shadow: 0 10px 22px rgba(0,0,0,.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 14px; font-size: .95rem; font-weight: 600; color: var(--dark); border-radius: 8px; border-left: 3px solid transparent; transition: .2s; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--light); border-left-color: var(--teal); color: var(--teal); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 55%, var(--teal-dark) 100%);
  padding: 70px 0 58px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2.5' fill='%23fff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 900; margin-bottom: 10px; position: relative; }
.page-hero p  { font-size: 1rem; color: rgba(255,255,255,.82); position: relative; max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 16px; font-size: .83rem; color: rgba(255,255,255,.65); position: relative; flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb .sep { opacity: .45; }

/* ============ HOME PAGE SECTIONS ============ */

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 42%, #0d5295 100%);
  min-height: 93vh; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-pattern { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2.5' fill='%23fff' fill-opacity='0.03'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='%23fff' fill-opacity='0.03'/%3E%3C/svg%3E"); }
.hero-blob { position: absolute; border-radius: 50%; }
.hero-blob-1 { right: -140px; top: -90px;   width: 480px; height: 480px; background: rgba(0,201,187,.07); }
.hero-blob-2 { left:  -90px;  bottom: -70px; width: 360px; height: 360px; background: rgba(17,85,204,.14); }
.hero .container { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: center; padding: 70px 20px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,201,187,.18); border: 1px solid rgba(0,201,187,.38);
  padding: 7px 16px; border-radius: 50px; font-size: .78rem; font-weight: 700;
  color: var(--teal); letter-spacing: .5px; margin-bottom: 18px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--teal); }
.hero-title { font-size: clamp(1.9rem, 4.5vw, 3.3rem); font-weight: 900; color: #fff; line-height: 1.12; margin-bottom: 18px; }
.hero-title .accent { color: var(--teal); }
.hero-sub { font-size: .97rem; color: rgba(255,255,255,.82); max-width: 500px; margin-bottom: 28px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.hstat {
  text-align: center; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14); padding: 14px 17px;
  border-radius: 12px; min-width: 88px;
}
.hstat-num { display: block; font-size: 1.7rem; font-weight: 900; color: var(--teal); }
.hstat-lbl { display: block; font-size: .68rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-form { background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-lg); }
.hero-form h3 { font-size: 1.25rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 4px; }
.hero-form > p { font-size: .83rem; color: var(--gray); margin-bottom: 20px; }

/* === ANNOUNCE BANNER === */
.announce-banner {
  background: linear-gradient(90deg, #071f5e, #1155cc, #008577, #1155cc, #071f5e);
  background-size: 400% 100%; animation: grad-anim 10s ease infinite;
  padding: 15px 20px; text-align: center; color: #fff; font-size: .9rem; font-weight: 600; line-height: 1.5;
}
.announce-banner strong { color: var(--teal); }
.announce-banner svg { width: 16px; height: 16px; fill: #fbbf24; vertical-align: middle; display: inline; }
@keyframes grad-anim { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* === TICKER === */
.ticker { background: var(--teal); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-block; animation: tick-scroll 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { font-size: .83rem; font-weight: 700; color: #fff; padding: 0 34px; }
.ticker-track span::before { content: '✦  '; color: rgba(255,255,255,.5); font-size: .8rem; }
@keyframes tick-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-ph {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,.45);
}
.about-img-ph svg { width: 80px; height: 80px; fill: rgba(255,255,255,.35); }
.about-badge-box {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--teal); color: #fff; padding: 18px 22px;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); min-width: 120px;
}
.about-badge-box .num { font-size: 2rem; font-weight: 900; display: block; }
.about-badge-box .lbl { font-size: .72rem; line-height: 1.4; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.apoint-icon { width: 34px; height: 34px; min-width: 34px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.apoint-icon svg { width: 16px; height: 16px; fill: var(--teal-dark); }
.apoint-txt h5 { font-size: .9rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 2px; }
.apoint-txt p  { font-size: .83rem; color: var(--gray); }

/* === SERVICES (homepage cards) === */
.services-header { text-align: center; margin-bottom: 42px; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: #fff; border-radius: var(--radius); padding: 28px 22px; border: 1.5px solid var(--gray-lt); transition: .35s; text-align: center; }
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-6px); }
.svc-icon { width: 68px; height: 68px; background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: .3s; }
.service-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-icon svg { width: 30px; height: 30px; fill: #fff; }
.service-card h3 { font-size: 1.02rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.service-card p  { font-size: .84rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.service-card a  { font-size: .84rem; font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 4px; }
.service-card a:hover { text-decoration: underline; }

/* === ACHIEVEMENT / GALLERY === */
.achievement-section { background: var(--blue-deep); color: #fff; }
.achievement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ach-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,201,187,.18); border: 1px solid rgba(0,201,187,.38);
  color: var(--teal); padding: 7px 16px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.achievement-section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
.achievement-section h2 span { color: var(--teal); }
.achievement-section > .container > .achievement-grid > div > p { color: rgba(255,255,255,.8); font-size: .96rem; line-height: 1.85; margin-bottom: 22px; }
.ach-highlights { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.ach-tag {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 9px 14px; border-radius: 8px; font-size: .83rem; color: rgba(255,255,255,.9);
}
.ach-tag svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gal-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: 0 4px 18px rgba(0,0,0,.28); transition: .35s; }
.gal-img:hover { transform: scale(1.04); }
.gal-ph { aspect-ratio: 4/3; border-radius: var(--radius); background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: rgba(255,255,255,.3); font-size: .8rem; }
.gal-ph svg { width: 44px; height: 44px; fill: rgba(255,255,255,.25); }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 760px; margin: 44px auto 0; }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: .35s; text-align: center; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo-wrap { position: relative; background: linear-gradient(180deg, var(--blue-dark) 0%, var(--teal-dark) 100%); aspect-ratio: 3/4; overflow: hidden; }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-photo-wrap.no-photo img { display: none; }
.team-photo-ph { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; }
.team-photo-ph svg { width: 90px; height: 90px; fill: rgba(255,255,255,.3); }
.team-photo-wrap.no-photo .team-photo-ph { display: flex; }
.team-info { padding: 20px 18px 24px; }
.team-info h4 { font-size: 1.1rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 4px; }
.team-info .desig { font-size: .75rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.team-info p { font-size: .84rem; color: var(--gray); line-height: 1.6; }

/* === STATS BANNER === */
.stats-banner { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 58px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.sbox { color: #fff; padding: 20px 10px; }
.sbox .snum { font-size: 2.6rem; font-weight: 900; color: var(--teal); display: block; }
.sbox .slbl { font-size: .8rem; color: rgba(255,255,255,.72); margin-top: 4px; }

/* === TESTIMONIALS === */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 26px; border: 1.5px solid var(--gray-lt); border-top: 4px solid var(--teal); transition: .3s; }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.stars { color: #f59e0b; letter-spacing: 2px; font-size: .9rem; margin-bottom: 10px; }
.testi-text { font-size: .87rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: flex; align-items: center; justify-content: center; font-weight: 900; color: #fff; font-size: 1rem; flex-shrink: 0; }
.testi-author h5 { font-size: .88rem; font-weight: 700; color: var(--blue-dark); }
.testi-author span { font-size: .76rem; color: var(--gray); }

/* === WHY CHOOSE US === */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 22px 18px; border: 1.5px solid var(--gray-lt); transition: .3s; }
.why-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.wc-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.wc-icon svg { width: 22px; height: 22px; fill: #fff; }
.why-card h4 { font-size: .93rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; }
.why-card p  { font-size: .82rem; color: var(--gray); line-height: 1.55; }
.why-right-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-right-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.why-right-ph { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--blue-dark) 0%, var(--teal-dark) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: rgba(255,255,255,.4); }
.why-right-ph svg { width: 80px; height: 80px; fill: rgba(255,255,255,.3); }

/* === FREE CONSULTATION === */
.consult-section { background: linear-gradient(135deg, var(--blue-dark) 0%, #0e62c7 60%, var(--teal-dark) 100%); padding: 82px 0; }
.consult-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.consult-left { color: #fff; }
.consult-left .section-label { color: var(--teal); }
.consult-left .section-title { color: #fff; }
.consult-left > p { color: rgba(255,255,255,.85); margin-bottom: 24px; line-height: 1.8; }
.consult-feats { display: flex; flex-direction: column; gap: 12px; }
.consult-feat { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.9); }
.consult-feat svg { width: 18px; height: 18px; fill: var(--teal); flex-shrink: 0; }
.consult-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; box-shadow: var(--shadow-lg); }
.consult-card h3 { font-size: 1.25rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 4px; }
.consult-card > p { font-size: .83rem; color: var(--gray); margin-bottom: 20px; }

/* === LOCATION === */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.loc-info-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.loc-info-card h4 { font-size: 1.1rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.loc-info-card h4 svg { width: 22px; height: 22px; fill: var(--teal); }
.loc-item { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-lt); align-items: flex-start; }
.loc-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.loc-item svg { width: 20px; height: 20px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.loc-item p { font-size: .88rem; color: var(--text); line-height: 1.6; }
.loc-item a { color: var(--blue); font-weight: 600; }
.loc-item a:hover { color: var(--teal); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* === CTA STRIP === */
.cta-strip { background: var(--teal); padding: 36px 20px; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.cta-strip h2 { font-size: 1.45rem; font-weight: 900; color: #fff; }
.cta-strip h2 span { color: var(--blue-deep); }
.cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: var(--dark); color: #94a3b8; padding: 62px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: .84rem; color: #64748b; line-height: 1.75; margin: 14px 0 20px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.footer-logo-img { height: 46px; width: auto; }
.footer-logo-name { display: block; font-size: 1.05rem; font-weight: 900; color: #fff; }
.footer-logo-sub  { display: block; font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); }
.social-row { display: flex; gap: 9px; flex-wrap: wrap; }
.soc-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: .3s; }
.soc-btn:hover { background: var(--teal); }
.soc-btn svg { width: 15px; height: 15px; fill: #94a3b8; }
.soc-btn:hover svg { fill: #fff; }
.footer-col h5 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--teal); display: inline-block; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: .83rem; color: #64748b; transition: .2s; display: flex; align-items: center; gap: 5px; }
.footer-col li a::before { content: '›'; color: var(--teal); }
.footer-col li a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .83rem; color: #64748b; line-height: 1.6; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #94a3b8; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom { text-align: center; padding: 16px 20px; font-size: .79rem; color: #475569; border-top: 1px solid rgba(255,255,255,.05); margin-top: 0; }
.footer-bottom a { color: var(--teal); }

/* ============ SCROLL TO TOP ============ */
#scrollTop {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; background: var(--teal);
  color: #fff; border-radius: 50%; border: none;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.22); cursor: pointer;
  opacity: 0; pointer-events: none; transition: .3s; z-index: 999;
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--teal-dark); transform: translateY(-3px); }

/* ============ ABOUT PAGE ============ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-story-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-story-ph { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--blue-dark), var(--teal-dark)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; color: rgba(255,255,255,.4); }
.about-story-ph svg { width: 80px; height: 80px; fill: rgba(255,255,255,.35); }
.team-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 780px; margin: 44px auto 0; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-card { background: #fff; border-radius: var(--radius); padding: 22px 18px; text-align: center; border: 1.5px solid var(--gray-lt); transition: .3s; }
.cert-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.cert-icon { width: 52px; height: 52px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.cert-icon svg { width: 24px; height: 24px; fill: var(--teal-dark); }
.cert-card h4 { font-size: .9rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.cert-card p  { font-size: .79rem; color: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; border-radius: var(--radius); padding: 28px 18px; text-align: center; transition: .3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-card svg { width: 36px; height: 36px; fill: var(--teal); margin-bottom: 12px; }
.value-card h4 { font-size: .93rem; font-weight: 800; margin-bottom: 8px; }
.value-card p  { font-size: .79rem; color: rgba(255,255,255,.75); line-height: 1.55; }

/* ============ SERVICES PAGE ============ */
.service-detail { padding: 60px 0; border-bottom: 1px solid var(--gray-lt); }
.service-detail:last-child { border-bottom: none; }
.sd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.sd-grid.reverse { direction: rtl; }
.sd-grid.reverse > * { direction: ltr; }
.sd-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.sd-ph { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: rgba(255,255,255,.4); }
.sd-ph svg { width: 70px; height: 70px; fill: rgba(255,255,255,.35); }
.sd-info .section-title { font-size: 1.9rem; }
.sd-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 22px; }
.sd-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text); }
.sd-list li svg { width: 18px; height: 18px; fill: var(--teal); flex-shrink: 0; }

/* ============ CONTACT PAGE ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-info-card { background: var(--light); border-radius: var(--radius-lg); padding: 32px; }
.contact-info-card h3 { font-size: 1.25rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 22px; }
.cinfo-item { display: flex; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-lt); align-items: flex-start; }
.cinfo-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cinfo-ico { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg, var(--blue-dark), var(--teal)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.cinfo-ico svg { width: 20px; height: 20px; fill: #fff; }
.cinfo-txt h5 { font-size: .88rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 4px; }
.cinfo-txt p  { font-size: .83rem; color: var(--gray); line-height: 1.6; }
.cinfo-txt a  { color: var(--blue); font-weight: 600; }
.cinfo-txt a:hover { color: var(--teal); }
.contact-form-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1.5px solid var(--gray-lt); }
.contact-form-card h3 { font-size: 1.25rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 4px; }
.contact-form-card > p { font-size: .83rem; color: var(--gray); margin-bottom: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero .container      { grid-template-columns: 1fr; gap: 38px; }
  .hero-form            { max-width: 580px; }
  .about-grid, .why-grid, .consult-grid, .location-grid,
  .achievement-grid, .about-story-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .sd-grid, .sd-grid.reverse { grid-template-columns: 1fr; gap: 30px; direction: ltr; }
  .service-cards        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-top           { grid-template-columns: 1fr 1fr; gap: 28px; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .testi-grid           { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid         { grid-template-columns: 1fr 1fr; }
  .team-grid, .team-full-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta  { display: none; }
  .hamburger            { display: flex; }
  .topbar-left          { display: none; }
  .section              { padding: 60px 0; }
  .service-cards        { grid-template-columns: 1fr; }
  .testi-grid           { grid-template-columns: 1fr; }
  .why-cards-grid       { grid-template-columns: 1fr; }
  .cert-grid            { grid-template-columns: 1fr 1fr; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .footer-top           { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title  { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .team-grid, .team-full-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-form, .consult-card, .contact-form-card, .contact-info-card { padding: 22px 16px; }
  .hero-stats  { gap: 12px; }
  .hstat       { min-width: 74px; padding: 12px 12px; }
  .hours-grid  { grid-template-columns: 1fr; }
  .social-links-grid { grid-template-columns: 1fr; }
}

/* ============ ADDITIONAL — SERVICES PAGE ============ */
.services-intro  { text-align: center; padding-bottom: 10px; }
.services-nav    { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 10px; }
.services-nav a  { padding: 9px 20px; border-radius: 50px; font-size: .84rem; font-weight: 700; color: var(--blue-dark); background: #fff; border: 1.5px solid var(--gray-lt); transition: .3s; }
.services-nav a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.service-detail:nth-child(even) { background: var(--light); }
.sd-badge {
  position: absolute; top: -14px; left: -14px;
  background: var(--teal); color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: var(--shadow); z-index: 2;
}
.sd-media { position: relative; }
.sd-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sd-tag  { background: var(--teal-light); color: var(--teal-dark); font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; }

/* ============ ADDITIONAL — ABOUT PAGE ============ */
.team-full-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1.5px solid var(--gray-lt); }
.tfcard-photo { aspect-ratio: 3/4; background: linear-gradient(180deg, var(--blue-dark), var(--teal-dark)); position: relative; overflow: hidden; }
.tfcard-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tfcard-photo.no-photo img { display: none; }
.tfcard-photo-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.tfcard-photo:not(.no-photo) .tfcard-photo-ph { display: none; }
.tfcard-photo-ph svg { width: 90px; height: 90px; fill: rgba(255,255,255,.28); }
.tfcard-info { padding: 22px 20px; }
.tfcard-info h3 { font-size: 1.1rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 4px; }
.tfcard-info .deg { font-size: .75rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.tfcard-info p { font-size: .84rem; color: var(--gray); line-height: 1.65; margin-bottom: 12px; }
.spec-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.spec-tag  { background: var(--teal-light); color: var(--teal-dark); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.ach-detail-box { background: var(--light); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.ach-detail-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ach-det-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.ach-det-ph  { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); flex-direction: column; gap: 8px; font-size: .8rem; }
.ach-det-ph svg { width: 46px; height: 46px; fill: rgba(255,255,255,.3); }
.values-dark { background: var(--blue-deep); padding: 74px 0; }

/* ============ ADDITIONAL — CONTACT PAGE ============ */
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow); margin-bottom: 50px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.hour-item { background: var(--light); border-radius: var(--radius); padding: 16px; text-align: center; border-top: 3px solid var(--teal); }
.hour-item h5 { font-size: .88rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.hour-item p  { font-size: .82rem; color: var(--gray); }
.social-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.social-link-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: #fff; border-radius: var(--radius); border: 1.5px solid var(--gray-lt);
  transition: .3s; color: var(--dark); font-weight: 700; font-size: .9rem;
}
.social-link-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.social-link-card svg { width: 28px; height: 28px; flex-shrink: 0; }
.slc-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.slc-icon svg { width: 26px; height: 26px; }
.slc-info { flex: 1; }
.slc-info strong { display: block; font-size: .92rem; color: var(--dark); }
.slc-info span { font-size: .8rem; color: var(--gray); font-weight: 500; }
.slc-arrow { width: 18px; height: 18px; fill: var(--gray); flex-shrink: 0; }
/* Service image placeholder (alias for sd-ph used inline) */
.sd-img-ph { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: rgba(255,255,255,.4); }
.sd-img-ph svg { width: 70px; height: 70px; fill: rgba(255,255,255,.35); }
.sd-img-ph span { font-size: .85rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .5px; }
@media (max-width: 768px) {
  .ach-detail-box { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .social-links-grid { grid-template-columns: 1fr 1fr; }
}
