/* ============================================================
   İZMİR TESİSATÇISI — MAIN STYLESHEET
   Google Fonts import variables.css üzerinden gelir.
   ============================================================ */

/* ============================================================
   1. TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-topbar-bg);
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-topbar);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 16px 0 0;
  position: relative;
}

.topbar-item + .topbar-item {
  padding-left: 16px;
}

.topbar-item + .topbar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.topbar-item i {
  color: var(--color-secondary);
  font-size: 11px;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.topbar-social-link:hover {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* ============================================================
   2. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--color-nav-bg);
  box-shadow: var(--shadow-nav);
  height: 70px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.logo-text-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* Menü */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.navbar-menu > li > a {
  display: block;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.navbar-menu > li > a:hover,
.navbar-menu > li.active > a {
  color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown */
.navbar-menu .has-dropdown {
  position: relative;
}

.navbar-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;          /* varsayılan: sola hizala */
  background: var(--color-primary-dark);
  min-width: 240px;
  white-space: nowrap;
  border-radius: 0 0 8px 8px;
  border-top: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: var(--z-dropdown);
}

.has-dropdown:hover .navbar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-fast);
}

.navbar-dropdown a:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.navbar-dropdown a:hover {
  color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 26px;
}

/* Son 2 menü öğesinin dropdown'ı sola taşmasın - sağa hizala */
.navbar-menu > li:nth-last-child(-n+3).has-dropdown .navbar-dropdown {
  left: auto;
  right: 0;
}

/* Sağ taraf */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-nearest {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: 8px 16px;
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-nearest:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

.navbar-phone {
  text-align: right;
}

.navbar-phone-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-phone-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.navbar-phone-number:hover {
  color: var(--color-secondary-hover);
}

/* Hamburger (sadece mobilde) */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0;
}

.navbar-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── Mobil Menü Overlay ──────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  z-index: calc(var(--z-nav) + 1);
  overflow-y: auto;
  padding: 80px 20px 40px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
}

.mobile-menu ul li a:hover {
  color: var(--color-secondary);
}

/* ============================================================
   3. HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 580px;
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  z-index: 0;
}

/* Sol panel */
.hero-left {
  flex: 0 0 58%;
  padding: 80px 60px;
  background: rgba(13, 27, 62, 0.88);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 13px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--color-secondary);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Özellik ikonlar */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-align: center;
}

.hero-feature:hover {
  background: rgba(232, 163, 23, 0.12);
  border-color: rgba(232, 163, 23, 0.3);
}

.hero-feature i {
  font-size: 20px;
  color: var(--color-secondary);
}

.hero-feature span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}

/* CTA butonlar */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 163, 23, 0.5);
  color: var(--color-primary-dark);
}

.btn-hero-secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

/* Sağ panel */
.hero-right {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-brand-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(27, 42, 74, 0.92);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--color-secondary);
  backdrop-filter: blur(4px);
}

.hero-brand-badge-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.hero-brand-badge-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.hero-contact-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 20px;
  flex-shrink: 0;
}

.hero-contact-info {
  display: flex;
  flex-direction: column;
}

.hero-contact-label {
  font-size: 10px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-contact-phone {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
  white-space: nowrap;
}

/* WhatsApp butonu */
.hero-whatsapp-btn {
  position: absolute;
  bottom: 110px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 3;
}

.hero-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active,
.hero-dot:hover {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Slider oklar */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.hero-prev { left: 16px; }
.hero-next { right: 16px; }

.hero-prev:hover,
.hero-next:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary-dark);
}

/* ============================================================
   4. BREADCRUMB & İÇ SAYFA HERO
   ============================================================ */
.page-hero {
  background: var(--color-primary);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 21, 39, 0.9) 0%, rgba(27, 42, 74, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--color-secondary);
}

.breadcrumb-item.active {
  color: var(--color-secondary);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

/* ============================================================
   5. SECTION HEADER (paylaşılan)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: var(--color-secondary);
}

.section-tag::before { right: calc(100% + 8px); }
.section-tag::after  { left:  calc(100% + 8px); }

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-medium);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   6. HİZMETLER SECTION
   ============================================================ */
.services-section {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-secondary);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 163, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(232, 163, 23, 0.2);
  transform: scale(1.05);
}

.service-icon i {
  font-size: 28px;
  color: var(--color-secondary);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.service-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--color-secondary-hover);
}

.service-link i {
  font-size: 12px;
  transition: var(--transition);
}

/* ============================================================
   7. NEDEN BİZ
   ============================================================ */
.why-section {
  overflow: hidden;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.why-left {
  background: var(--color-primary);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-left .section-tag {
  color: var(--color-secondary);
  text-align: left;
  margin-bottom: 12px;
}

.why-left .section-tag::before,
.why-left .section-tag::after {
  display: none;
}

.why-left .section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 12px;
}

.why-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(232, 163, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: rgba(232, 163, 23, 0.25);
}

.why-feature-icon i {
  color: var(--color-secondary);
  font-size: 16px;
}

.why-feature-body {}

.why-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.why-feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Sağ görsel panel */
.why-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.why-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.why-right:hover img {
  transform: scale(1.04);
}

.why-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--color-secondary);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  text-align: center;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(232, 163, 23, 0.4);
  z-index: 2;
}

.why-badge-percent {
  font-size: 30px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.why-badge-text {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-top: 4px;
  font-weight: 700;
}

/* ============================================================
   8. İSTATİSTİKLER
   ============================================================ */
.stats-section {
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--color-bg-light);
}

.stat-icon {
  font-size: 32px;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: block;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   9. CTA BANDI
   ============================================================ */
.cta-band {
  background: var(--color-secondary);
  padding: 36px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-phone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.cta-text {}

.cta-text-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: block;
}

.cta-text-sub {
  font-size: 13px;
  color: rgba(27, 42, 74, 0.7);
  display: block;
  margin-top: 2px;
}

.cta-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-call {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta-call:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-cta-whatsapp {
  background: var(--color-success);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* ============================================================
   10. MÜŞTERİ YORUMLARI
   ============================================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-title-line {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
}

.title-line-sep {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--color-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 56px;
  color: var(--color-secondary);
  opacity: 0.18;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.testimonial-info {}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-dark);
  display: block;
}

.testimonial-location {
  font-size: 12px;
  color: var(--color-text-light);
  display: block;
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--color-secondary);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--color-text-medium);
  line-height: 1.75;
}

/* Navigasyon oklar */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testimonials-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 14px;
}

.testimonials-nav-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: scale(1.08);
}

/* ============================================================
   11. BLOG
   ============================================================ */
.blog-section {
  padding: var(--section-padding);
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.blog-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.07);
}

.blog-category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Kategori renkleri */
.badge-tesisat     { background: rgba(27, 42, 74, 0.85); }
.badge-kombi       { background: rgba(220, 38, 38, 0.85); }
.badge-kalorifer   { background: rgba(245, 158, 11, 0.85); }
.badge-su-tesisati { background: rgba(59, 130, 246, 0.85); }
.badge-elektrik    { background: rgba(37, 211, 102, 0.80); }
.badge-tavsiye     { background: rgba(232, 163, 23, 0.90); }

.blog-card-body {
  padding: 20px;
}

.blog-card-meta {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-meta i {
  color: var(--color-secondary);
  font-size: 10px;
}

.blog-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--color-secondary);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.blog-read-more i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-read-more {
  gap: 8px;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(2px);
}

/* ============================================================
   12. FOOTER (SITE FOOTER STYLES)
   ============================================================ */
.site-footer {
  background: #1B2A4A;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer-top {
  padding: 60px 0 40px 0;
  border-top: 3px solid #E8A317;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 1.5fr;
  gap: 30px;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.footer-col-brand .navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-col-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: #E8A317;
  color: #1B2A4A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.footer-col-brand .logo-text-main {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  display: block;
}
.footer-col-brand .logo-text-sub {
  color: #E8A317;
  font-size: 11px;
  font-weight: 600;
  display: block;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social-link:hover {
  background: #E8A317;
  color: #1B2A4A;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: #E8A317;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-list li {
  margin-bottom: 10px;
}
.footer-link-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.footer-link-list a i {
  color: #E8A317;
  font-size: 10px;
}
.footer-link-list a:hover {
  color: #E8A317;
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-contact-list li i {
  color: #E8A317;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover {
  color: #E8A317;
}
.footer-contact-list address {
  font-style: normal;
  line-height: 1.4;
}

.footer-newsletter-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 15px;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-submit-btn {
  background: #E8A317;
  color: #1B2A4A;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.newsletter-submit-btn:hover {
  background: #d4920f;
}

.newsletter-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.newsletter-privacy i {
  color: #E8A317;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: #0D1B3E;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer-copyright strong {
  color: #E8A317;
}
.footer-bottom-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-nav a:hover {
  color: #E8A317;
}

/* ============================================================
   13. MOBİL BOTTOM BAR
   ============================================================ */
.mobile-bottom-bar {
  display: none; /* Mobilde responsive.css ile açılır */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-bottom-bar);
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-bottom-call,
.mobile-bottom-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
  transition: var(--transition-fast);
  text-align: center;
  cursor: pointer;
}

.mobile-bottom-call {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}

.mobile-bottom-call:hover {
  background: var(--color-secondary-hover);
  color: var(--color-primary-dark);
}

.mobile-bottom-whatsapp {
  background: var(--color-success);
  color: #fff;
}

.mobile-bottom-whatsapp:hover {
  background: #1db954;
  color: #fff;
}

.mobile-bottom-call i,
.mobile-bottom-whatsapp i {
  font-size: 18px;
}

/* ============================================================
   14. COOKIE POPUP
   ============================================================ */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 560px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: var(--z-cookie);
  display: none;
  border-top: 3px solid var(--color-secondary);
  animation: slideUp 0.4s ease;
}

.cookie-popup.active {
  display: block;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-header i {
  font-size: 20px;
  color: var(--color-secondary);
}

.cookie-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-dark);
  font-family: var(--font-display);
}

.cookie-text {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 18px;
  line-height: 1.65;
}

.cookie-text a {
  color: var(--color-secondary);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.btn-cookie-accept:hover {
  background: var(--color-secondary-hover);
}

.btn-cookie-decline {
  background: var(--color-bg-light);
  color: var(--color-text-medium);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.btn-cookie-decline:hover {
  background: var(--color-border);
}

/* ============================================================
   15. FLOATING WhatsApp BUTONU
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 56px;
  height: 56px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: var(--z-bottom-bar);
  transition: var(--transition);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* ============================================================
   16. GENEL BUTON SİSTEMİ
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary-main {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  border-color: var(--color-secondary);
}

.btn-primary-main:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 12px;
}

/* ============================================================
   17. KART GRID (GENİŞ KULLANIM)
   ============================================================ */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

/* ============================================================
   18. PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}

.page-link {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-medium);
  border: 1px solid var(--color-border);
  background: #fff;
  transition: var(--transition-fast);
  cursor: pointer;
}

.page-link:hover,
.page-link.active {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  border-color: var(--color-secondary);
  font-weight: 700;
}

/* ============================================================
   19. ALERT BOX
   ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid;
}

.alert-success {
  background: rgba(37, 211, 102, 0.08);
  color: #15803D;
  border-color: var(--color-success);
}

.alert-danger {
  background: rgba(220, 38, 38, 0.08);
  color: #B91C1C;
  border-color: var(--color-danger);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  color: #B45309;
  border-color: var(--color-warning);
}

.alert-info {
  background: rgba(59, 130, 246, 0.08);
  color: #1D4ED8;
  border-color: var(--color-info);
}

/* ============================================================
   20. İLETİŞİM FORMU (İç Sayfa)
   ============================================================ */
.contact-section {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-col {}

.contact-form-col {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(232, 163, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--color-secondary);
  font-size: 18px;
}

.contact-info-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.contact-info-value {
  font-size: 14px;
  color: var(--color-text-medium);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--input-radius);
  font-size: 14px;
  color: var(--color-text-dark);
  background: #fff;
  transition: var(--transition-fast);
  font-family: var(--font-body);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   21. HARİTA (Google Maps embed)
   ============================================================ */
.map-section {
  height: 380px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   22. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 90px;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  z-index: var(--z-bottom-bar);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   23. MOCKUP PIXEL-PERFECT STYLES
   ============================================================ */
.highlight-gold {
  color: #E8A317;
}

.btn-hero-gold {
  background: #E8A317;
  color: #1B2A4A;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-hero-gold:hover {
  background: #d4920f;
  color: #1B2A4A;
  transform: translateY(-2px);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 11px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.hero-call-card {
  background: #ffffff;
  border-radius: 50px;
  padding: 6px 8px 6px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-top: 40px;
}
.call-card-icon {
  background: #E8A317;
  color: #1B2A4A;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.call-card-body {
  display: flex;
  flex-direction: column;
}
.call-card-label {
  font-size: 10px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
}
.call-card-phone {
  font-size: 18px;
  font-weight: 800;
  color: #1B2A4A;
  text-decoration: none;
}
.call-card-whatsapp {
  background: #25D366;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s;
}
.call-card-whatsapp:hover {
  transform: scale(1.08);
}

/* 6 Card Services Grid */
.section-tag-gold {
  color: #E8A317;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.section-title-dark {
  font-size: 26px;
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 35px;
}
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid-6 { grid-template-columns: 1fr; }
}

.service-card-white {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #E8A317;
}
.service-card-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #E8A317;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A4A;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card-h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 12px;
}
.service-card-p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card-action {
  font-size: 12px;
  font-weight: 700;
  color: #1B2A4A;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.service-card-action:hover {
  color: #E8A317;
}

/* Why Us Section Dark Card */
.why-us-section {
  padding: 50px 0;
}
.why-us-card-dark {
  background: #1B2A4A;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(27, 42, 74, 0.2);
}
@media (max-width: 992px) {
  .why-us-card-dark { grid-template-columns: 1fr; }
}
.why-us-left {
  padding: 45px 50px;
}
.why-us-tag {
  color: #E8A317;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.why-us-h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin: 10px 0 15px 0;
}
.why-us-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.why-us-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-us-item {
  display: flex;
  gap: 12px;
}
.why-us-item i {
  color: #E8A317;
  font-size: 18px;
  margin-top: 3px;
}
.why-us-item h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-us-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

.why-us-right {
  position: relative;
  min-height: 350px;
}
.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.why-us-gold-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #E8A317;
  color: #1B2A4A;
  border-radius: 12px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.why-us-gold-badge i {
  font-size: 28px;
}
.gold-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.gold-badge-text strong {
  font-size: 22px;
  font-weight: 900;
}
.gold-badge-text span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Counter Stats Bar */
.counter-stats-section {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.counter-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .counter-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.counter-stat-item i {
  font-size: 32px;
  color: #1B2A4A;
  margin-bottom: 10px;
}
.counter-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #1B2A4A;
}
.counter-stat-label {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* CTA Gold Bar */
.cta-gold-bar-section {
  background: #E8A317;
  padding: 25px 0;
}
.cta-gold-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cta-gold-bar-inner { flex-direction: column; gap: 20px; text-align: center; }
}
.cta-gold-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-gold-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px dashed #1B2A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A4A;
  font-size: 22px;
}
.cta-gold-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 4px;
}
.cta-gold-text p {
  font-size: 14px;
  color: #1B2A4A;
  font-weight: 500;
}
.cta-gold-bar-right {
  display: flex;
  gap: 15px;
}
.btn-cta-dark-phone {
  background: #1B2A4A;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 1.2;
}
.btn-cta-dark-phone strong {
  font-size: 15px;
  color: #E8A317;
}
.btn-cta-green-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

/* Reviews Grid 4 */
.section-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 35px 0;
}
.divider-line {
  height: 2px;
  width: 60px;
  background: #E8A317;
}
.section-title-divider h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1B2A4A;
  letter-spacing: 1px;
}
.reviews-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .reviews-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid-4 { grid-template-columns: 1fr; }
}

.review-card-white {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1B2A4A;
}
.review-author span {
  font-size: 11px;
  color: #888;
}
.quote-icon {
  position: absolute;
  right: 0;
  top: 0;
  color: #E8A317;
  font-size: 18px;
  opacity: 0.6;
}
.review-stars {
  color: #E8A317;
  font-size: 12px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 12.5px;
  color: #555;
  line-height: 1.6;
}

/* Blog Grid 4 Mockup */
.blog-mockup-section {
  padding-bottom: 60px;
}
.blog-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .blog-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid-4 { grid-template-columns: 1fr; }
}
.blog-card-mockup {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.blog-card-mockup:hover {
  transform: translateY(-4px);
}
.blog-img-wrap {
  position: relative;
  height: 160px;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-tag-badge.gold {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #E8A317;
  color: #1B2A4A;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.blog-content-wrap {
  padding: 18px;
}
.blog-content-wrap h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-content-wrap p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}
.blog-link-gold {
  font-size: 11px;
  font-weight: 700;
  color: #E8A317;
  text-decoration: none;
}

/* ============================================================
   24. REFERENCE HEADER & TOPBAR PIXEL-PERFECT STYLES
   ============================================================ */
.topbar {
  background: #0D1B3E !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-social-link {
  background: #ffffff !important;
  color: #0D1B3E !important;
  width: 26px !important;
  height: 26px !important;
  font-size: 12px !important;
}
.topbar-social-link:hover {
  background: #D48B12 !important;
  color: #ffffff !important;
}

.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}
.navbar-nav-link {
  color: #1B2A4A !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}
.navbar-nav-link:hover {
  color: #E8A317 !important;
}
.navbar-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}
.logo-arches-icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.navbar-logo .logo-text-main {
  color: #10233F !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.3px;
  line-height: 1.1;
  display: block;
}
.navbar-logo .logo-text-sub {
  color: #10233F !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  display: block;
  margin-top: 1px;
}

.topbar-follow-text {
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}

/* Active Nav Underline */
.navbar-nav-item.active .navbar-nav-link {
  color: #10233F !important;
  font-weight: 800 !important;
  position: relative;
}
.navbar-nav-item.active .navbar-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8A317;
  border-radius: 2px;
}

.navbar-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button 1: Filled Gold Button */
.btn-header-gold-filled {
  background: #E8A317;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(232, 163, 23, 0.25);
  transition: all 0.2s ease;
}
.btn-header-gold-filled:hover {
  background: #d48b12;
  color: #ffffff;
  transform: translateY(-1px);
}
.btn-icon-white-circle {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
}

/* Button 2: Gold Outlined Call Box */
.header-call-outlined-box {
  border: 2px solid #E8A317;
  border-radius: 10px;
  padding: 6px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.header-call-outlined-box:hover {
  background: rgba(232, 163, 23, 0.05);
}
.call-box-icon-gold {
  color: #E8A317;
  font-size: 18px;
}
.call-box-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.call-box-tag {
  font-size: 10px;
  font-weight: 800;
  color: #E8A317;
  letter-spacing: 0.5px;
}
.call-box-num {
  font-size: 14px;
  font-weight: 800;
  color: #1B2A4A;
}

/* ============================================================
   25. HERO SLIDER EXACT REFERENCE REPLICA STYLES
   ============================================================ */
.hero-slider-section {
  position: relative;
  background: #061329;
  overflow: hidden;
}
.hero-slide-reference {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-left-diagonal-card {
  position: relative;
  z-index: 10;
  width: 50%;
  background: #061329;
  padding: 50px 60px 50px 70px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  border-right: 3px solid #D48B12;
  box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}
@media (max-width: 992px) {
  .hero-left-diagonal-card {
    width: 100%;
    clip-path: none;
    padding: 40px 30px;
    background: rgba(6, 19, 41, 0.95);
  }
}

.hero-top-tag {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}
.hero-heading-main {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-heading-main .gold-text {
  color: #D48B12;
}
.hero-paragraph {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-badges-row {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-icon-gold {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px dashed #D48B12;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D48B12;
  font-size: 16px;
  flex-shrink: 0;
}
.badge-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.badge-text-stack strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}
.badge-text-stack span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.hero-btn-group {
  display: flex;
  gap: 15px;
}
.btn-gold-solid {
  background: #D48B12;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 139, 18, 0.3);
}
.btn-gold-solid:hover {
  background: #b8780c;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-dark-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background: rgba(6, 19, 41, 0.4);
}
.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Floating Call Pill (Bottom Right) */
.hero-floating-call-pill {
  position: absolute;
  bottom: 35px;
  right: 60px;
  z-index: 20;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 10px 8px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .hero-floating-call-pill {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 30px;
    width: fit-content;
  }
}
.pill-phone-icon-gold {
  background: #D48B12;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pill-text-stack {
  display: flex;
  flex-direction: column;
}
.pill-tag {
  font-size: 10px;
  font-weight: 800;
  color: #061329;
  letter-spacing: 0.5px;
}
.pill-number {
  font-size: 19px;
  font-weight: 900;
  color: #061329;
  text-decoration: none;
}
.pill-whatsapp-green-btn {
  background: #12C055;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s;
}
.pill-whatsapp-green-btn:hover {
  transform: scale(1.08);
}

/* ============================================================
   26. BOTTOM HALF SECTIONS - EXACT REFERENCE REPLICA
   ============================================================ */

/* Section 1: Stats Bar */
.counter-stats-section-ref {
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 24px 0;
}
.counter-stats-grid-ref {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .counter-stats-grid-ref {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.counter-stat-item-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.counter-icon-navy-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #061329;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #061329;
  font-size: 20px;
  flex-shrink: 0;
}
.counter-text-stack {
  display: flex;
  flex-direction: column;
}
.counter-num {
  font-size: 20px;
  font-weight: 900;
  color: #061329;
  line-height: 1.1;
}
.counter-label {
  font-size: 12px;
  color: #666666;
  font-weight: 600;
}

/* Section 2: Dark Navy CTA Band */
.cta-navy-band-section-ref {
  background: #061329;
  padding: 20px 0;
}
.cta-navy-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .cta-navy-band-inner {
    flex-direction: column;
    text-align: center;
  }
}
.cta-navy-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-dashed-phone-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed #D48B12;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D48B12;
  font-size: 22px;
  flex-shrink: 0;
}
.cta-navy-text h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}
.cta-navy-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0;
}
.cta-navy-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-cta-gold-call {
  background: #D48B12;
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.btn-cta-gold-call:hover {
  background: #b8780c;
  color: #ffffff;
}
.btn-cta-gold-icon {
  font-size: 18px;
}
.btn-cta-gold-text {
  display: flex;
  flex-direction: column;
}
.btn-cta-gold-text span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.btn-cta-gold-text strong {
  font-size: 15px;
  font-weight: 900;
}
.btn-cta-green-wa {
  background: #12C055;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.btn-cta-green-wa:hover {
  background: #0ea647;
  color: #ffffff;
}

/* Section 3 & 4: Section Divider Header */
.section-divider-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.gold-line {
  width: 40px;
  height: 2px;
  background: #D48B12;
  display: inline-block;
}
.section-divider-header h2 {
  font-size: 20px;
  font-weight: 900;
  color: #061329;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Reviews Section */
.reviews-section-ref {
  padding: 45px 0;
  background: #fcfcfc;
}
.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.review-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.2s;
}
.review-nav-btn:hover {
  background: #D48B12;
  color: #ffffff;
  border-color: #D48B12;
}
.review-nav-btn.prev { left: -18px; }
.review-nav-btn.next { right: -18px; }

.reviews-grid-4-ref {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}
@media (max-width: 992px) {
  .reviews-grid-4-ref {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .reviews-grid-4-ref {
    grid-template-columns: 1fr;
  }
}

.review-card-white-ref {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.review-card-top-ref {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}
.review-avatar-ref {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author-ref h4 {
  font-size: 14px;
  font-weight: 800;
  color: #061329;
  margin: 0 0 2px;
}
.review-author-ref span {
  font-size: 11px;
  color: #94a3b8;
}
.quote-mark-gold {
  margin-left: auto;
  font-size: 28px;
  color: #D48B12;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars-gold {
  color: #D48B12;
  font-size: 12px;
  margin-bottom: 10px;
  display: flex;
  gap: 3px;
}
.review-body-text {
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Blog Section */
.blog-section-ref {
  padding: 45px 0;
  background: #ffffff;
}
.blog-grid-4-ref {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 992px) {
  .blog-grid-4-ref {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-grid-4-ref {
    grid-template-columns: 1fr;
  }
}

.blog-card-ref {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.2s;
}
.blog-card-ref:hover {
  transform: translateY(-3px);
}
.blog-img-container {
  position: relative;
  height: 150px;
}
.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-badge-gold {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: #D48B12;
  color: #061329;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
}
.blog-card-body-ref {
  padding: 16px;
}
.blog-card-body-ref h3 {
  font-size: 14px;
  font-weight: 800;
  color: #061329;
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-card-body-ref p {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
}
.blog-link-gold-ref {
  font-size: 11px;
  font-weight: 800;
  color: #D48B12;
  text-decoration: none;
}

/* ============================================================
   27. SERVICES SECTION 6-CARD GRID - EXACT REFERENCE REPLICA
   ============================================================ */
.services-section {
  padding: 55px 0 60px;
  background: #ffffff;
}
.section-tag-gold {
  color: #D48B12;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.section-title-dark {
  color: #061329;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 35px;
  letter-spacing: -0.3px;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px;
}
@media (max-width: 1200px) {
  .services-grid-6 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .services-grid-6 {
    grid-template-columns: 1fr !important;
  }
}

.service-card-white {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 28px 16px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.service-card-icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.service-card-white:nth-child(1) .service-card-icon-wrap { color: #061329; }
.service-card-white:nth-child(2) .service-card-icon-wrap { color: #f97316; }
.service-card-white:nth-child(3) .service-card-icon-wrap { color: #061329; }
.service-card-white:nth-child(4) .service-card-icon-wrap { color: #061329; }
.service-card-white:nth-child(5) .service-card-icon-wrap { color: #061329; }
.service-card-white:nth-child(6) .service-card-icon-wrap { color: #061329; }

.service-card-h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: #061329;
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card-p {
  font-size: 11px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card-action {
  font-size: 10.5px;
  font-weight: 800;
  color: #061329;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.service-card-action:hover {
  color: #D48B12;
}

/* ============================================================
   28. WHY US DARK CARD - EXACT REFERENCE REPLICA
   ============================================================ */
.why-us-section {
  padding: 40px 0 50px;
  background: #ffffff;
}
.why-us-card-dark-ref {
  background: #061329;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
@media (max-width: 992px) {
  .why-us-card-dark-ref {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.why-us-left-ref {
  width: 55%;
}
@media (max-width: 992px) {
  .why-us-left-ref {
    width: 100%;
  }
}

.why-us-tag-gold {
  color: #D48B12;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}
.why-us-title-white {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.why-us-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  line-height: 1.55;
  margin-bottom: 25px;
}

.why-us-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px 15px;
}
@media (max-width: 768px) {
  .why-us-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-us-item-ref {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.why-us-icon-gold {
  color: #D48B12;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-us-text-stack h4 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 3px;
}
.why-us-text-stack p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10.5px;
  line-height: 1.4;
  margin: 0;
}

/* Right Column Image & Gold Badge */
.why-us-right-ref {
  width: 45%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
@media (max-width: 992px) {
  .why-us-right-ref {
    width: 100%;
  }
}
.why-us-img-ref {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.why-us-badge-gold-ref {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: #D48B12;
  color: #ffffff;
  padding: 10px 22px 10px 18px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.badge-circle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
}
.badge-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.badge-num-percent {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}
.badge-label-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}






