:root {
  --primary: #ff7a00;
  --primary-dark: #cc5f00;
  --accent: #ffb347;
  --accent-dark: #ff8a00;
  --text-dark: #1f1f1f;
  --text-body: #5a5a5a;
  --bg-light: #fff5eb;
  --white: #ffffff;
  --border: #ffd5a0;
  --surface: #fff3e6;
  --surface-light: #fff7f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  scroll-behavior: smooth;
}

.site-main {
  background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

a {
  color: inherit;
}

a:hover {
  color: var(--accent);
}

.site-header {
  z-index: 1020;
}

.top-bar {
  background: #122117;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .small {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.primary-nav {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.primary-nav.scrolled {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.nav-link,
.navbar-brand,
.dropdown-item {
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  padding: 0.85rem 1.2rem;
  color: var(--white) !important;
  font-weight: 600;
}

.navbar-nav .nav-link.active {
  color: var(--white) !important;
  border-bottom: 3px solid var(--white);
}

.navbar-nav .nav-link:hover,
.dropdown-item:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

.dropdown-menu {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 122, 0, 0.22);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
  margin-top: 0.5rem;
  min-width: 240px;
}

.dropdown-menu .dropdown-item {
  color: var(--text-dark) !important;
  padding: 0.85rem 1rem;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: rgba(255, 122, 0, 0.18);
  color: var(--text-dark) !important;
}

.hero-banner {
  min-height: 92vh;
  position: relative;
  background: linear-gradient(180deg, #fffdfb 0%, #f3e7db 100%);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-image {
  min-height: 520px;
  background: linear-gradient(135deg, rgba(255,122,0,0.18), rgba(255,255,255,0.85)),
    url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.hero-banner h1 {
  font-size: clamp(3.5rem, 5vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.hero-banner p {
  color: var(--text-body);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  line-height: 1.8;
}

.hero-content .btn {
  min-width: 190px;
  padding: 16px 34px;
}

.consultation-strip {
  background: linear-gradient(90deg, #ff7a00, #ff9c3b);
}

.consultation-strip a {
  color: var(--white);
}

.feature-card,
.team-card,
.info-card,
.sidebar-card,
.contact-box,
.process-card,
.card-image,
.service-card,
.testimonial-card,
.map-placeholder,
.image-placeholder {
  background: var(--surface);
  color: var(--text-dark);
}

.feature-card,
.team-card,
.info-card,
.sidebar-card,
.contact-box,
.process-card,
.service-card,
.testimonial-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 45, 92, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.feature-card:hover,
.team-card:hover,
.info-card:hover,
.sidebar-card:hover,
.contact-box:hover,
.process-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.16);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 0, 0.16);
  border-radius: 18px;
}

.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  color: var(--white);
}

.section-heading::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

.inner-hero {
  min-height: 300px;
  background: var(--primary);
  display: flex;
  align-items: center;
  color: var(--white);
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.8);
}

.btn-accent {
  background: linear-gradient(90deg, #ff7a00, #ff9c3b);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.26);
}

.btn-accent:hover {
  background: linear-gradient(90deg, #ff9c3b, #ff7a00);
  box-shadow: 0 20px 42px rgba(255, 122, 0, 0.34);
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(255, 122, 0, 0.95);
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 700;
}

.btn-accent-outline:hover {
  background: rgba(255, 122, 0, 0.16);
  color: var(--accent);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
  min-width: 220px;
  white-space: normal;
  text-align: center;
}

.btn-phone:hover {
  background: rgba(255, 122, 0, 0.18);
  color: #fff;
}

@media (max-width: 992px) {
  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

  .btn-phone,
  .btn-accent {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .btn-phone {
    flex-direction: column;
    padding: 0.85rem 1rem;
    max-width: 240px;
    width: 100%;
  }

  .btn-phone .fa-phone {
    margin: 0;
  }

  .btn-accent {
    width: 100%;
    max-width: 240px;
  }

  .navbar-brand {
    text-align: center;
    width: 100%;
    margin-bottom: 0.75rem;
  }
}

.service-card .card-image,
.image-placeholder,
.map-placeholder,
.avatar-placeholder {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(255,106,0,0.25), rgba(18,45,84,0.9));
}

.map-placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 600;
}

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: var(--text-body);
}

.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  animation: marquee 20s linear infinite;
}

.marquee-item {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
}

.tab-btn {
  border: none;
  background: transparent;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-bottom: 3px solid transparent;
  font-weight: 600;
}

.tab-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

.testimonial-card {
  background: var(--white);
}

.stat-counter {
  color: var(--accent);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-body);
}

.service-hero {
  background: var(--primary);
  color: var(--white);
}

.tab-panel {
  animation: fadeIn 0.4s ease;
}

.more-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.more-link i {
  margin-left: 0.5rem;
}

.img-gradient,
.card-image {
  background: linear-gradient(135deg, rgba(232,160,32,0.3), rgba(26,60,110,0.9));
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-weight: 700;
}

.bg-accent {
  background: linear-gradient(135deg, #ff7a00, #ff9c3b);
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: rgba(232,160,32,0.15);
}

.footer-top {
  background: #050505;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  margin-bottom: 0.55rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.social-icon {
  color: var(--white);
}

.primary-nav .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand {
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
}

.hero-banner .btn {
  min-width: 180px;
}


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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 70vh;
  }
  .hero-banner h1 {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
  }
  .btn-accent,
  .btn-accent-outline {
    width: 100%;
  }
  .timeline-step {
    flex-direction: column;
  }
  .tab-buttons {
    flex-direction: column;
  }
}
