:root {
  --primary: #1a1a2e;
  --accent: #e8530a;
  --accent2: #f5a623;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --light-gray: #edeae4;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-light: #8a8a9a;
  --shadow: 0 8px 40px rgba(26,26,46,0.10);
  --shadow-hover: 0 20px 60px rgba(26,26,46,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
img { max-width: 100%; }

.announce-bar {
  background: linear-gradient(135deg, var(--accent), #c44508);
  padding: 11px 20px;
  text-align: center;
  position: relative;
  z-index: 101;
}
.announce-bar p {
  color: white; font-size: 13px; font-weight: 700;
  font-family: var(--font-body); line-height: 1.5;
}

nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248,246,241,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,46,0.08);
  box-shadow: 0 2px 20px rgba(26,26,46,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900; color: var(--primary);
}
.nav-logo span { color: var(--accent); }
.nav-right {
  display: flex; align-items: center; gap: 12px;
}
.nav-phone {
  font-size: 14px; font-weight: 600;
  color: var(--primary); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
}
.nav-phone svg { flex-shrink: 0; }
.nav-cta {
  background: var(--accent); color: white;
  padding: 9px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232,83,10,0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: #c44508; transform: translateY(-2px); }

.hero {
  background: var(--primary);
  position: relative; overflow: hidden;
  padding: 72px 24px 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(232,83,10,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(135deg, #0d0d1a, #1a1a2e 50%, #12122a);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,83,10,0.15); border: 1px solid rgba(232,83,10,0.4);
  color: #ff7a45; padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #ff7a45; box-shadow: 0 0 8px #ff7a45;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px); font-weight: 900; line-height: 1.25;
  color: white; margin-bottom: 18px;
}
.hero-title .hl {
  color: var(--accent); position: relative; display: inline-block;
}
.hero-title .hl::after {
  content: ''; position: absolute;
  bottom: 1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.9;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; padding: 15px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 800;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(232,83,10,0.4);
  transition: all 0.3s ease; font-family: var(--font-body);
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,83,10,0.52); }
.btn-secondary {
  background: rgba(255,255,255,0.09); color: white;
  padding: 15px 26px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s ease;
  font-family: var(--font-body); white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
}
.stat-item {
  flex: 1; text-align: center; padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-item:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 900;
  color: white; display: block; line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 5px; display: block; }

.hero-visual { animation: fadeInLeft 0.8s ease 0.2s both; }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }
.office-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
}
.office-img {
  width: 100%; height: 240px; border-radius: 12px;
  background: #0d0d1a; overflow: hidden; margin-bottom: 20px;
}
.office-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pricing-pill {
  display: inline-flex; align-items: baseline; gap: 5px;
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; padding: 8px 18px; border-radius: 50px; margin-bottom: 16px;
}
.price-big { font-family: var(--font-display); font-size: 22px; font-weight: 900; }
.price-sm { font-size: 12px; opacity: 0.85; }
.card-features { display: flex; flex-direction: column; gap: 10px; }
.card-feat {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500;
}
.card-feat-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(232,83,10,0.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #ff7a45;
}
.float-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--accent2); color: var(--primary);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 800;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 8px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-mid); font-size: 13px; font-weight: 600;
  padding: 8px 16px;
}
.trust-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(232,83,10,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.trust-divider { width: 1px; height: 30px; background: var(--light-gray); }

section { padding: 72px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: rgba(232,83,10,0.1); color: var(--accent);
  padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px); font-weight: 900;
  color: var(--primary); line-height: 1.3; margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px; color: var(--text-mid); line-height: 1.85;
  max-width: 640px;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease; position: relative;
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232,83,10,0.2);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(232,83,10,0.09);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--accent);
}
.service-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: var(--primary); margin-bottom: 10px;
}
.service-title a { text-decoration: none; color: #000; }
.service-desc {
  font-size: 13px; color: var(--text-mid); line-height: 1.8;
}

.features-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 22px; border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(232,83,10,0.15); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(232,83,10,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--accent);
}
.feature-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  color: var(--primary); margin-bottom: 8px;
}
.feature-desc { font-size: 13px; color: var(--text-mid); line-height: 1.8; }

.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: start; margin-top: 52px;
}
.pricing-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px 26px; border: 1px solid var(--light-gray);
  transition: all 0.3s ease; position: relative; overflow: visible;
}
.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(26,26,46,0.22);
  transform: scale(1.04);
  z-index: 2;
}
.pricing-card:not(.featured):hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.featured-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent2); color: var(--primary);
  padding: 4px 16px; border-radius: 50px;
  font-size: 11px; font-weight: 800; white-space: nowrap;
}
.off-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; font-size: 12px; font-weight: 800;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 8px;
}
.plan-name {
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: var(--primary); margin-bottom: 14px;
}
.featured .plan-name { color: rgba(255,255,255,0.85); }
.plan-from { font-size: 11px; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 14px; }
.featured .plan-from { color: rgba(255,255,255,0.45); }
.plan-price {
  font-family: var(--font-display); font-size: 38px; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.featured .plan-price { color: var(--white); }
.plan-period { font-size: 13px; color: var(--text-light); margin-bottom: 22px; }
.featured .plan-period { color: rgba(255,255,255,0.45); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.plan-feature {
  font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px;
}
.plan-feature::before {
  content: '';
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(232,83,10,0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23e8530a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 1px;
}
.featured .plan-feature { color: rgba(255,255,255,0.75); }
.featured .plan-feature::before { background-color: rgba(232,83,10,0.25); }
.plan-btn {
  display: block; width: 100%; padding: 13px;
  border-radius: 50px; text-align: center;
  font-size: 14px; font-weight: 800;
  text-decoration: none; transition: all 0.3s ease;
  font-family: var(--font-body);
  background: var(--off-white); color: var(--primary);
  border: 1.5px solid var(--light-gray);
}
.featured .plan-btn {
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; border-color: transparent;
  box-shadow: 0 8px 24px rgba(232,83,10,0.4);
}
.plan-btn:hover { transform: translateY(-2px); }
.featured .plan-btn:hover { box-shadow: 0 12px 32px rgba(232,83,10,0.52); }

.offer-section {
  background: linear-gradient(135deg, #0d0d1a, #1a1a2e 50%, #12122a);
  position: relative; overflow: hidden; padding: 72px 24px;
}
.offer-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(232,83,10,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(245,166,35,0.1) 0%, transparent 55%);
}
.offer-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; }
.offer-header { text-align: center; margin-bottom: 44px; }
.offer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4);
  color: #f5c842; padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
.offer-title {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; color: white; line-height: 1.3; margin-bottom: 10px;
}
.offer-title .gold { color: var(--accent2); }
.offer-subtitle { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.offer-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 700px; margin: 0 auto 32px;
}
.offer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 34px 26px;
  text-align: center; position: relative; backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.offer-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-5px); border-color: rgba(245,166,35,0.35); }
.offer-card.featured-offer {
  background: linear-gradient(135deg, rgba(232,83,10,0.2), rgba(245,166,35,0.12));
  border-color: rgba(245,166,35,0.5); box-shadow: 0 20px 60px rgba(232,83,10,0.25);
}
.offer-card-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; padding: 4px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 800; white-space: nowrap;
}
.offer-duration { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.offer-percent {
  font-family: var(--font-display); font-size: 68px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 4px;
}
.offer-label { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: white; margin-bottom: 12px; }
.offer-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.offer-cta {
  display: inline-block; padding: 11px 26px;
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; border-radius: 50px; font-size: 13px; font-weight: 700;
  text-decoration: none; font-family: var(--font-body);
  box-shadow: 0 6px 20px rgba(232,83,10,0.4);
  transition: all 0.3s ease;
}
.offer-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,83,10,0.5); }
.countdown-wrap { margin-top: 14px; }
.countdown-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.countdown-timer { display: flex; gap: 6px; justify-content: center; align-items: center; font-family: var(--font-display); }
.cd-box { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 7px 10px; text-align: center; }
.cd-num { font-size: 20px; font-weight: 900; color: white; line-height: 1; }
.cd-unit { font-size: 9px; color: rgba(255,255,255,0.45); }
.cd-sep { font-size: 18px; font-weight: 900; color: rgba(255,255,255,0.35); }

.branches-section { background: var(--off-white); }
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.branch-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 22px;
  border: 1px solid var(--light-gray); transition: all 0.3s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.branch-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(232,83,10,0.2); }
.branch-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 900; flex-shrink: 0;
}
.branch-name { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--primary); }
.branch-address { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.branch-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--accent); font-size: 13px; font-weight: 700;
  text-decoration: none; margin-top: 4px;
}

.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.testi-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--light-gray); transition: all 0.3s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { color: var(--accent2); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-size: 14px; font-weight: 800;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.author-title { font-size: 12px; color: var(--text-light); }

.faq-section { background: var(--off-white); }
.faq-contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 52px; align-items: start; margin-top: 52px;
}
.form-col { position: sticky; top: 90px; }
.faq-col .section-title { margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--light-gray); overflow: hidden;
}
.faq-question {
  padding: 16px 20px; font-size: 14px; font-weight: 700; color: var(--primary);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: all 0.3s ease; user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.active { color: var(--accent); background: rgba(232,83,10,0.03); }
.faq-arrow { font-size: 20px; transition: transform 0.3s ease; flex-shrink: 0; line-height: 1; }
.faq-question.active .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 13px; color: var(--text-mid); line-height: 1.9; padding: 0 20px;
}
.faq-answer.open { max-height: 240px; padding: 0 20px 16px; }

.booking-box {
  background: linear-gradient(135deg, var(--primary), #12122a);
  border-radius: var(--radius-lg); padding: 36px 32px;
  color: white; position: sticky; top: 80px;
}
.booking-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  margin-bottom: 6px; color: white;
}
.booking-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 24px; line-height: 1.7; }
.booking-field { margin-bottom: 12px; }
.booking-field label {
  display: block; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.55); margin-bottom: 6px; letter-spacing: 0.3px;
}
html {
  scroll-behavior: smooth;
}
.booking-field input,
.booking-field select {
   
  width: 100%; padding: 12px 16px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: white;
  font-size: 14px; font-family: var(--font-body); outline: none;
  transition: all 0.3s ease; appearance: none;
}
.booking-field input::placeholder { color: rgba(255,255,255,0.35); }
.booking-field input:focus,
.booking-field select:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.booking-field select option { background: #1a1a2e; color: white; }
.booking-submit {
  width: 100%; padding: 14px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), #c44508);
  color: white; font-size: 15px; font-weight: 800;
  font-family: var(--font-body); border: none; cursor: pointer;
  margin-top: 8px; box-shadow: 0 8px 24px rgba(232,83,10,0.4);
  transition: all 0.3s ease;
}
.booking-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,83,10,0.52); }
.booking-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0; color: rgba(255,255,255,0.3); font-size: 12px;
}
.booking-divider::before, .booking-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.12);
}
.booking-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; border-radius: 50px;
  background: #25D366; color: white;
  font-size: 14px; font-weight: 700; text-decoration: none;
  font-family: var(--font-body); transition: all 0.3s ease;
}
.booking-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.form-success {
  background: #27ae60; border-radius: 10px; padding: 12px 16px;
  text-align: center; font-size: 14px; font-weight: 700;
  color: white; display: none; margin-top: 8px;
}

.cta-section { background: var(--white); padding: 72px 24px; }
.cta-inner {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, #12122a 100%);
  border-radius: 28px; padding: 60px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,83,10,0.18), transparent 70%);
}
.cta-inner .section-title { color: white; position: relative; z-index: 1; }
.cta-inner .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.wa-btn {
  background: #25D366; color: white;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 800;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: all 0.3s ease; font-family: var(--font-body); white-space: nowrap;
}
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.45); }

footer { background: #1a1a1f; color: white; padding: 0; }
.footer-inner { max-width: 1260px; margin: 0 auto; }
.footer-brand-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-wrap { flex: 0 0 auto; }
.footer-logo-img { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-text { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: white; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; }
.footer-handle { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--accent); margin-top: 18px; display: block; }
.footer-social-icons { display: flex; gap: 10px; margin-top: 18px; }
.social-icon-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid rgba(232,83,10,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); text-decoration: none; transition: all 0.3s ease;
}
.social-icon-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.social-icon-btn svg { width: 18px; height: 18px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-title { font-family: var(--font-display); font-size: 14px; font-weight: 800; margin-bottom: 18px; color: white; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-about-band {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.9;
}
.footer-about-band strong { color: rgba(255,255,255,0.75); font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; padding: 20px 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 13px; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  text-decoration: none; z-index: 99; animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1) translateY(-4px); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.gallery-section { background: var(--white); padding: 72px 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-column: span 2; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gallery-upload-note {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: var(--text-light);
  background: rgba(232,83,10,0.06); border: 1px dashed rgba(232,83,10,0.25);
  border-radius: var(--radius); padding: 14px 20px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-row { flex-wrap: wrap; gap: 28px; }
}
@media (max-width: 768px) {
  section { padding: 52px 16px; }
  nav { padding: 12px 16px; }
  .nav-phone { display: none; }
  .hero { padding: 56px 16px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .offer-cards { grid-template-columns: 1fr; max-width: 360px; }
  .branches-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-col { position: static; }
  .cta-inner { padding: 40px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-row { flex-direction: column; padding: 32px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .hero-title { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
}
.lang-btn {
  padding: 5px 14px; border-radius: 50px;
  border: none; background: transparent; cursor: pointer;
  font-size: 12px; font-weight: 700; color: var(--text-mid);
  transition: all 0.25s ease; font-family: 'DM Sans', sans-serif;
}
.lang-btn.active { background: var(--primary); color: white; } 
.lang-toggle {
    display: flex;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 3px;
}

/* ── CLIENTS SECTION ── */
.clients-section { background: var(--white); padding: 52px 24px; }
.clients-header { text-align: center; margin-bottom: 36px; }
.clients-label { font-size: 13px; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track { display: flex; gap: 32px; animation: marquee 28s linear infinite; width: max-content; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-logo {
  height: 38px; display: flex; align-items: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800;
  color: var(--text-light); white-space: nowrap; padding: 0 20px;
  border: 1px solid var(--light-gray); border-radius: 50px;
  background: var(--off-white); flex-shrink: 0;
}
.clients-stats { display: flex; justify-content: center; gap: 0; margin-top: 40px; }
.cstat-item { flex: 1; max-width: 200px; text-align: center; padding: 16px 12px; }
.cstat-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--primary); display: block; }
.cstat-num span { color: var(--accent); }
.cstat-lbl { font-size: 12px; color: var(--text-mid); margin-top: 4px; display: block; }
.cstat-div { width: 1px; background: var(--light-gray); margin: 16px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-row { flex-wrap: wrap; gap: 28px; }
}

@media (max-width: 768px) {
  section { padding: 52px 16px; }
  nav { padding: 12px 16px; }
  .nav-phone { display: none; }
  .hero { padding: 56px 16px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: row; }
  .stat-item { padding: 0 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .offer-cards { grid-template-columns: 1fr; max-width: 360px; }
  .branches-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-col { position: static; }
  .cta-inner { padding: 40px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-row { flex-direction: column; padding: 32px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .clients-stats { flex-wrap: wrap; }
  .cstat-div { display: none; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat-num { font-size: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .hero-title { font-size: 28px; }
  .hero-badge { font-size: 12px; padding: 6px 13px; }
  .hero-subtitle { font-size: 14px; }
  .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 14px; }
}

/* ── OFFICE GALLERY ── */
.gallery-section { background: var(--white); padding: 72px 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--light-gray), #ddd8d0);
  color: var(--text-light); font-size: 13px; font-weight: 600;
  text-align: center; padding: 20px;
}
.gallery-placeholder svg { opacity: 0.4; }
.gallery-upload-note {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: var(--text-light);
  background: rgba(232,83,10,0.06); border: 1px dashed rgba(232,83,10,0.25);
  border-radius: var(--radius); padding: 14px 20px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
}
/* ── CLIENTS ── */
.clients-section {
  background: var(--white);
  padding: 72px 48px;
  overflow: hidden;
}
.clients-inner { 
    /*max-width: 1200px;*/
margin: 0 auto; }
.clients-header { text-align: center; margin-bottom: 52px; }
.clients-header .section-subtitle { margin: 0 auto; }

.clients-marquee-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

[dir="rtl"] .clients-track {
  animation-name: marquee-scroll-rtl;
}
@keyframes marquee-scroll-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
  border-right: 1px solid var(--light-gray);
}
.client-logo-item:last-child { border-right: none; }

.client-logo-box {
  /*height: 64px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  /*background: var(--off-white);*/
  border-radius: 14px;
  border: 1px solid rgba(26,26,46,0.07);
  transition: all 0.3s ease;
  /*min-width: 130px;*/
  white-space: nowrap;
}
.client-logo-box:hover {
  background: var(--white);
  box-shadow: 0 8px 28px rgba(26,26,46,0.1);
  border-color: rgba(232,83,10,0.2);
  transform: translateY(-3px);
}
.client-logo-box img {
  /*max-height: 44px;*/
  max-width: 143px;
  width: auto;
  object-fit: contain;
  /*filter: grayscale(80%) opacity(0.7);*/
  transition: all 0.35s ease;
}
.client-logo-box:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* Text-only fallback logos */
.client-logo-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.client-logo-box:hover .client-logo-text { color: var(--primary); }

.clients-count-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
  flex-wrap: wrap;
}
.clients-count-item { text-align: center; }
.clients-count-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 900;
  color: var(--primary); display: block;
}
.clients-count-num span { color: var(--accent); }
.clients-count-label { font-size: 13px; color: var(--text-light); margin-top: 3px; display: block; }
.clients-count-divider { width: 1px; height: 44px; background: var(--light-gray); }
.clients-count-bar{
    display:none;
}


