

:root {
  --accent-color: #ef0f3a;
  --black-color: #010f34;
  --heading-color: #01133c;
  --body-color: #666666;
  --ternary-color: #88a5ad;
  --gray-color: #f5f7fa;
  --gray2-color: #e8ebee;
  --border-color: #ecf1f5;
  --white-color: #fff;
  --heading-font: 'Archivo', sans-serif;
  --body-font: 'Roboto', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 6px;
  --shadow: 0 15px 40px rgba(1, 15, 52, 0.06);
  --shadow-hover: 0 20px 50px rgba(1, 15, 52, 0.12);
}

/* ── BASE RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--body-font);
  color: var(--body-color);
  background: var(--white-color);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 800;
  line-height: 1.2;
}
p {
  margin-bottom: 15px;
}

/* ── UTILITIES ── */
section {
  padding: 100px 5%;
  position: relative;
}
.bg-dark {
  background: var(--black-color);
  color: rgba(255, 255, 255, 0.8);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 {
  color: var(--white-color);
}
.bg-light {
  background: var(--gray-color);
}
.section-label {
  font-family: var(--heading-font);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 2px;
  background: var(--accent-color);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--heading-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.bg-dark .section-title {
  color: var(--white-color);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--body-color);
  max-width: 650px;
  margin-bottom: 50px;
}
.bg-dark .section-sub {
  color: rgba(255,255,255,0.6);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent-color);
  color: var(--white-color);
  padding: 15px 32px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(239, 15, 58, 0.3);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--black-color);
  color: var(--white-color);
  box-shadow: 0 5px 15px rgba(1, 15, 52, 0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--heading-color);
  padding: 14px 30px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: 2px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.bg-dark .btn-secondary {
  color: var(--white-color);
  border-color: rgba(255,255,255,0.15);
}
.bg-dark .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--black-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 5%;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  gap: 24px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-color);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-social {
  display: flex;
  gap: 12px;
}
.topbar-social a svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.topbar-social a:hover svg {
  fill: var(--accent-color);
}

/* ── HEADER ── */
header {
  background: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ── LOGO ── */
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--black-color);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.header-logo-link span {
  color: var(--accent-color);
}
.logo-icon {
  background: var(--accent-color);
  color: var(--white-color);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 900;
}
.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 4px;
}

/* ── NAVIGATION ── */
nav {
  display: flex;
  gap: 30px;
  height: 100%;
}
nav .nav-link {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;
}
nav .nav-link:hover, nav .nav-link.active {
  color: var(--accent-color);
}
nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition);
}
nav .nav-link:hover::after, nav .nav-link.active::after {
  width: 100%;
}

/* ── DROPDOWNS ── */
.dropdown-holder {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--white-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 10px 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.dropdown-holder:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--gray-color);
  color: var(--accent-color);
  padding-left: 30px;
}
/* ── MEGA MENU (AREAS) ── */
.dropdown-menu.mega-menu {
  min-width: 720px;
  display: flex;
  padding: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  border-top: 4px solid var(--accent-color);
  left: auto;
  right: -150px;
  transform: translateY(15px);
}
.dropdown-holder:hover .dropdown-menu.mega-menu {
  transform: translateY(0);
}
.mega-menu-inner {
  display: flex;
  width: 100%;
}
.mega-menu-left {
  flex: 1.3;
  padding: 25px;
  background: var(--white-color);
}
.mega-menu-title {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: left;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}
.mega-menu-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}
.mega-menu-grid a:hover {
  background: var(--gray-color);
  color: var(--accent-color);
  padding-left: 16px;
}
.mega-menu-grid a svg {
  width: 12px;
  height: 12px;
  fill: var(--body-color);
  transition: var(--transition);
}
.mega-menu-grid a:hover svg {
  fill: var(--accent-color);
}
.mega-menu-right {
  flex: 0.9;
  background: linear-gradient(135deg, var(--black-color) 0%, #031c5c 100%);
  padding: 30px 25px;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.mega-menu-right h4 {
  color: var(--white-color);
  font-size: 1.15rem;
  margin: 10px 0 5px;
  text-transform: uppercase;
  font-weight: 800;
}
.mega-menu-right p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.5;
  text-transform: none;
}
.mega-menu-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-color);
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.mega-menu-cta {
  align-self: flex-start;
  background: var(--white-color);
  color: var(--black-color);
  padding: 10px 20px;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.mega-menu-cta:hover {
  background: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-2px);
}
.nav-link svg {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  fill: currentColor;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-call-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading-color);
}
.btn-call-nav svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
}
.btn-call-nav:hover {
  color: var(--accent-color);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--heading-color);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--border-color);
  z-index: 999;
  flex-direction: column;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav .m-link {
  padding: 15px 5%;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav .m-sub {
  background: var(--gray-color);
  padding-left: 8%;
  display: flex;
  flex-direction: column;
}
.mobile-nav .m-sub a {
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* ── HERO SLIDER ── */
.hero {
  height: 85vh;
  min-height: 550px;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--black-color);
}
.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(1, 15, 52, 0.9) 0%, rgba(1, 15, 52, 0.4) 60%, rgba(1, 15, 52, 0.8) 100%);
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white-color);
  max-width: 800px;
  padding: 0 5%;
}
.slide-badge {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}
.slide h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 25px;
  font-weight: 900;
  letter-spacing: -1px;
}
.slide h1 span {
  color: var(--accent-color);
}
.slide p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  max-width: 600px;
}
.slide-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-control:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.slider-prev {
  left: 20px;
}
.slider-next {
  right: 20px;
}
.slider-control svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 5;
  background: var(--white-color);
  box-shadow: 0 10px 40px rgba(1, 15, 52, 0.06);
  margin-top: -60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-color);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.stat-title {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  letter-spacing: 1px;
}

/* ── ABOUT / INTRO SECTION ── */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(239, 15, 58, 0.3);
  font-family: var(--heading-font);
}
.about-badge-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}
.about-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-text-content ul {
  list-style: none;
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
}
.about-text-content ul li {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-text-content ul li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-color);
  flex-shrink: 0;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img-wrap img {
  transform: scale(1.08);
}
.service-card-icon-tag {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -5px 15px rgba(239, 15, 58, 0.2);
}
.service-card-icon-tag svg {
  width: 26px;
  height: 26px;
  fill: var(--white-color);
}
.service-card-body {
  padding: 30px;
}
.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.service-card-body p {
  font-size: 0.95rem;
  color: var(--body-color);
  margin-bottom: 20px;
}
.service-card-link {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: var(--transition);
}
.service-card:hover .service-card-link svg {
  transform: translateX(5px);
}

/* ── PORTFOLIO SECTION ── */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.portfolio-tab-btn {
  background: var(--gray-color);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.portfolio-tab-btn:hover, .portfolio-tab-btn.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white-color);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 280px;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(1, 15, 52, 0.95) 0%, rgba(1, 15, 52, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.portfolio-card:hover img {
  transform: scale(1.08);
}
.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
  visibility: visible;
}
.portfolio-card-category {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.portfolio-card-title {
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  text-transform: uppercase;
}

/* ── PRICING SECTION ── */
.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.pricing-toggle {
  background: var(--gray2-color);
  border-radius: 50px;
  padding: 6px;
  display: flex;
  gap: 5px;
}
.pricing-toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 24px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-toggle-btn.active {
  background: var(--accent-color);
  color: var(--white-color);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 50px 35px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(1, 15, 52, 0.08);
}
.pricing-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.pricing-header h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}
.price-currency {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--heading-color);
  font-weight: 800;
  align-self: flex-start;
}
.price-value {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}
.pricing-features {
  list-style: none;
  margin-bottom: 35px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.95rem;
  color: var(--body-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-color);
  flex-shrink: 0;
}
.pricing-card .btn-primary {
  width: 100%;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* ── PROCESS TIMELINE ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}
.process-item {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-num {
  width: 80px;
  height: 80px;
  background: var(--white-color);
  border: 4px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-color);
  transition: var(--transition);
}
.process-item:hover .process-num {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--white-color);
  box-shadow: 0 5px 15px rgba(239, 15, 58, 0.3);
}
.process-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process-item p {
  font-size: 0.9rem;
  color: var(--body-color);
  max-width: 220px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 35px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
}
.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--body-color);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gray2-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
}
.testimonial-name {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}
.testimonial-loc {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
}

/* ── WHY CHOOSE US / FEATURES ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
}
.bg-dark .why-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.bg-dark .why-card:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}
.why-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.bg-dark .why-card h3 {
  color: var(--white-color);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--body-color);
  margin-bottom: 0;
  line-height: 1.6;
}
.bg-dark .why-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* ── BOOKING SECTION ── */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.booking-info h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.booking-info-item {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.booking-info-item:hover {
  border-color: var(--accent-color);
}
.booking-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gray-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-color);
}
.booking-info-item h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.booking-info-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.booking-form-wrap {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-hover);
  padding: 50px;
  border-radius: var(--radius);
}
.booking-form-wrap h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.booking-form-wrap > p {
  font-size: 0.95rem;
  margin-bottom: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  background: var(--gray-color);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--heading-color);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-color);
  background: var(--white-color);
  box-shadow: 0 0 0 3px rgba(239, 15, 58, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
}

/* ── COVERAGE / MAP ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 15px;
  margin-bottom: 50px;
}
.area-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  color: var(--heading-color);
  transition: var(--transition);
}
.area-card:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 15, 58, 0.25);
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── FOOTER ── */
footer {
  background: var(--black-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 5% 30px;
  border-top: 5px solid var(--accent-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand .header-logo-link {
  color: var(--white-color);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-color);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social-links a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
}
.footer-social-links a:hover {
  background: var(--accent-color);
}
.footer-social-links a:hover svg {
  fill: var(--white-color);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom-links a {
  margin-left: 15px;
}
.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* ── SUBPAGES BREADCRUMB & HERO ── */
.page-hero {
  background: var(--black-color);
  color: var(--white-color);
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5%;
}
.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(1, 15, 52, 0.9) 0%, rgba(1, 15, 52, 0.5) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}
.breadcrumb {
  background: var(--gray-color);
  padding: 18px 5%;
  border-bottom: 1px solid var(--border-color);
}
.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--body-color);
}
.breadcrumb a {
  color: var(--heading-color);
}
.breadcrumb a:hover {
  color: var(--accent-color);
}
.breadcrumb span {
  color: var(--ternary-color);
}

/* ── STICKY CALL ACTION BARS ── */
.desktop-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black-color);
  color: var(--white-color);
  border-top: 3px solid var(--accent-color);
  padding: 12px 5%;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
  box-shadow: 0 -5px 25px rgba(1, 15, 52, 0.15);
}
.desktop-cta-bar p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.desktop-cta-bar span {
  color: var(--accent-color);
}
.desktop-cta-bar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.desktop-cta-bar .d-call {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: var(--radius);
}
.desktop-cta-bar .d-call:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.desktop-cta-bar .d-book {
  background: var(--accent-color);
  color: var(--white-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(239, 15, 58, 0.3);
}
.desktop-cta-bar .d-book:hover {
  background: var(--white-color);
  color: var(--heading-color);
  box-shadow: none;
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--white-color);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--border-color);
  padding: 10px 4%;
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.mobile-bar .call-btn {
  background: var(--gray-color);
  color: var(--heading-color);
  border: 1px solid var(--border-color);
}
.mobile-bar .book-btn {
  background: var(--accent-color);
  color: var(--white-color);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 80px;
  left: 30px;
  max-width: 450px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#cookie-banner p {
  font-size: 0.85rem;
  color: var(--body-color);
  margin-bottom: 0;
}
#cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-accept {
  background: var(--accent-color);
  color: var(--white-color);
  border: none;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius);
  cursor: pointer;
}
.cookie-decline {
  background: transparent;
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 5%;
}
.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.legal-content .meta {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 40px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.legal-content p, .legal-content ul {
  font-size: 0.95rem;
  color: var(--body-color);
  line-height: 1.8;
  margin-bottom: 20px;
}
.legal-content ul {
  padding-left: 20px;
}

/* ── UTILITY PAGES (404/THANK YOU) ── */
.thankyou-wrap, .notfound-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  text-align: center;
  background: var(--gray-color);
}
.thankyou-box, .notfound-box {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
}
.thankyou-box h1, .notfound-box h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.notfound-box h1 span {
  font-size: 5rem;
  display: block;
  color: var(--accent-color);
  line-height: 1.1;
  margin-bottom: 10px;
}
.thankyou-box p, .notfound-box p {
  color: var(--body-color);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE DESIGN ── */
@media (min-width: 1001px) {
  body {
    padding-bottom: 60px; /* space for desktop sticky bar */
  }
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }
  .header-ctas {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .topbar {
    display: none;
  }
  .desktop-cta-bar {
    display: none;
  }
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 65px; /* space for mobile sticky bar */
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
    padding: 30px 20px;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    height: 380px;
  }
  .booking-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-text-content ul {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom-links a {
    margin: 0 8px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    position: static;
    margin-top: 20px;
    padding: 20px;
  }
  .booking-form-wrap {
    padding: 30px 20px;
  }
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 70px;
    max-width: none;
  }
}
