/* ================================================
   LONDINIUM ELITE CHAUFFEURS LTD.
   style.css — Shared Stylesheet
   Theme: Luxury Black & White
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --charcoal: #1c1c1c;
  --dark-grey: #2e2e2e;
  --mid-grey: #6b6b6b;
  --light-grey: #b8b8b8;
  --off-white: #f5f5f3;
  --white: #ffffff;
  --gold: #c9a96e;
  /* single accent only */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--off-black);
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

ul,
ol {
  list-style-position: inside;
  margin: 0;
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #3e3e3e;
}

/*img { width: 100%; height: auto; display: block; }*/

/* ── Page Load Fade ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease both;
}

.animate-slide-l {
  animation: slideInLeft 0.8s ease both;
}

.animate-slide-r {
  animation: slideInRight 0.8s ease both;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.30s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.60s;
}

.delay-5 {
  animation-delay: 0.75s;
}

.wrapper {
  overflow: hidden;
}

.mx-width-100 {
  max-width: 100% !important;
}

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.navbar {
  background: var(--black) !important;
  padding: 8px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white) !important;
  text-transform: uppercase;
  line-height: 1.2;
}

.navbar .navbar-brand .img-fluid {
  transition: var(--transition);
}

/*.navbar.scrolled .navbar-brand .img-fluid {
  width: 75%;
}*/

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px !important;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: #ffffff;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  left: 18px;
  right: 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white);
}

.dropdown-menu {
  padding: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--off-black);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button in Nav */
.btn-nav-cta {
  background: transparent;
  border: 1px solid #fff;
  color: var(--gold) !important;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 22px !important;
  border-radius: 0;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: #fff;
  color: var(--black) !important;
}

.navbar-nav .nav-link::after .btn-nav-cta:hover {
  display: none;
}

/* ════════════════════════════════════
   HERO BANNER
════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.06);
  animation: heroPan 18s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from {
    transform: scale(1.06) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.7) 100%);
  opacity: 0.2;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #d1d1d1;
  margin-bottom: 15px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 15px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  /*max-width: 520px;*/
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}

.btn-primary-lec {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 0;
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-lec:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn-outline-lec {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-lec:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


.parallax {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.parallax .container,
.parallax .container-xxl,
.parallax .container-fluid,
.parallax .container-auto {
  position: relative;
  z-index: 1;
}

.overlap {
  position: relative;
}

.overlap:before,
.overlap1:before,
.overlap2:before {
  background-color: rgb(9 9 9 / 65%);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlap1:before {
  background-color: rgba(0, 0, 0, 0.7);
}

.overlap2:before {
  background-color: rgb(55 57 60 / 80%);
}

.service_box {
  position: relative;
}

.service_box.style_four .service_content {
  position: relative;
  padding: 0px 20px 20px 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #505050;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.service_box.style_four .service_content .image_box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  top: -20px;
}

.service_box.style_four .service_content .image_box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service_box.style_four .service_content .image_box span {
  position: absolute;
  display: block;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 10px 0px 10px 0px;
  background: #fff;
  font-size: 25px;
  color: #000;
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
  display: none;
}

.service_box.style_four .service_content .image_box::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: rgb(40 40 40 / 70%);
  opacity: 0;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.service_box.style_four .service_content .content_inner {
  position: relative;
  padding: 5px 15px;
}

.service_box.style_four .service_content .content_inner H2 {
  display: block;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 8px;
}

.service_box.style_four .service_content .content_inner p {
  text-transform: uppercase;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
  color: #751132;
  line-height: 22px;
}

.service_box.style_four .service_content:hover .image_box::before {
  bottom: 0;
  opacity: 0.9;
}

.service_box.style_four .service_content:hover .image_box span {
  background: #000;
  color: #fff;
}

.bg-left-red {
  position: relative;
}

.bg-left-red::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 67%;
  height: 100%;
  background-color: #000;
  content: '';
  z-index: -1;
}

.bg-left-red img {
  border: 15px solid #666;
  padding: 9px;
  box-shadow: rgba(0, 0, 0, 0.75) 0px 5px 15px;
}

.site-map-list li {
  border-left: 1px solid #dfdfdf;
  padding: 10px 0 10px 30px;
  position: relative;
  list-style-type: none;
}

.site-map-list li:before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #dfdfdf;
  content: '';
}

.site-map-list li>ul.child-menu {
  margin: 10px 0 10px 20px;
}

/* ════════════════════════════════════
   SECTION STYLES
════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: var(--off-black);
  color: var(--white);
}

.section-grey {
  background: var(--off-white);
}

.section-label {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
}

.section-title.on-dark {
  color: var(--white);
}

.section-body {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.9;
  max-width: 560px;
}

.section-body.on-dark {
  color: rgba(255, 255, 255, 0.6);
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: #505050;
  margin-bottom: 28px;
}

.img-sec {
  padding: 10px;
  border: 15px solid #666;
  box-shadow: rgba(0, 0, 0, 0.75) 0px 5px 15px;
}

/* ════════════════════════════════════
   FEATURE STRIP / STATS
════════════════════════════════════ */
.feature-strip {
  background: var(--black);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.feature-icon {
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════ */
.service-card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-img-wrap {
  overflow: hidden;
  height: 240px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(30%);
}

.service-card:hover .service-img {
  filter: grayscale(0%);
}

.service-card-body {
  padding: 32px 28px;
  border-top: 3px solid var(--black);
}

.service-card:hover .service-card-body {
  border-top-color: #898989;
}

.service-card-icon {
  font-size: 1.6rem;
  color: #282828;
  margin-bottom: 14px;
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card .link-arrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card:hover .link-arrow {
  color: #282828;
  gap: 14px;
}

/* ════════════════════════════════════
   ABOUT / SPLIT SECTION
════════════════════════════════════ */
.split-img-wrap {
  position: relative;
  overflow: hidden;
}

.split-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s ease;
}

.split-img-wrap:hover img {
  transform: scale(1.03);
}

.split-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #505050;
  z-index: 1;
  display: none;
}

/* Stats row */
.stat-item {
  text-align: center;
  padding: 28px 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* ════════════════════════════════════
   AREAS CARDS
════════════════════════════════════ */
.area-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.area-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
  transition: var(--transition);
}

.area-card:hover .area-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.25) 60%);
}

.area-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.area-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.area-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.area-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-6px);
  transition: var(--transition);
}

.area-card:hover .area-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════ */
.testimonial-wrap {
  background: var(--black);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

.testimonial-wrap::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -60px;
  left: 30px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #898989;
}

.star-row {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-form-wrap {
  background: var(--white);
  padding: 50px 50px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.08);
}

.form-control-lec {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: transparent;
  color: var(--off-black);
  transition: var(--transition);
}

.form-control-lec:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--black);
}

.form-label-lec {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid-grey);
  margin-bottom: 4px;
}

.contact-info-card {
  background: var(--off-black);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: var(--white);
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.info-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.6;
}

/* ════════════════════════════════════
   PAGE INNER HERO
════════════════════════════════════ */
.page-hero {
  background: var(--black);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
}

.breadcrumb-lec {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.breadcrumb-lec span {
  color: var(--gold);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 0 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.footer-body {
  font-size: 0.85rem;
  line-height: 1.85;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.45) !important;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
  gap: 12px;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  font-size: 0.78rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
}

.social-link:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* ════════════════════════════════════
   UTILITIES
════════════════════════════════════ */
.gold-text {
  color: var(--gold);
}

.text-italic {
  font-style: italic;
}

.font-display {
  font-family: var(--font-display);
}

.divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.12), transparent);
  margin: 0;
}

/* Hover image zoom container */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-hover-zoom:hover img {
  transform: scale(1.07);
}

.home-page .fixed-top {
  position: fixed ;
}

.fixed-top {
  position: relative;
  transition: all 0.4s ease-in-out;

}

.fixed-top.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: smoothNavbar 0.5s ease forwards;
}

@keyframes smoothNavbar {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.list1 li,
.list2 li,
.areas-list li {
  padding: 0px 0 15px 26px;
  position: relative;
}

.list1 li:before,
.list2 li:before,
.areas-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '\F26D';
  font-family: "bootstrap-icons";
  font-size: 16px;
}

.areas-list li:before {
  content: '\F3E7';
}

.list2 li:before {
  color: #fff;
}
.inner-box{
  padding:20px;
  border:5px double #000
}
.contact-box {
    padding: 20px 20px;
    border-radius: 3px 3px 3px 3px;
    margin: 0 -4px 30px 0;
    text-align: center;
    width: 100%;
    border: 4px solid #898989;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.contact-box .contact-icon {
    font-size: 60px;
    max-width: unset;
    color: #898989;
}

.contact-box .content-text .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0 0 4px;
}

.contact-box .content-text .title {
    color: #000;
}

.contact-box .content-text .title a:hover {
    color: #000;
}

.contact-box .content-text span a {
    color: #898989;
    font-weight: 500;
}

.contact-box .content-text span a:hover {
    color: #898989;
}

.contact-box .content-text .services-txt {
    margin: 0;
    color: #000;
    font-weight: 500;
}

.contact-box .content-text .services-txt a {
    color: #000;
}
.info-box {
    position: relative;
    padding: 30px;
    border: 3px double #000;
    z-index:1;
}

.info-box:before {
    content: '';
    position: absolute;
    left: -14px;
    top: 12px;
    right: -14px;
    bottom: 12px;
    border: 3px double #808080;
    z-index:-1;
}


/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 16px 0;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  .testimonial-wrap {
    padding: 40px 30px;
  }

  .contact-form-wrap {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .split-img-wrap img {
    height: 320px;
  }

  .area-card {
    height: 240px;
  }
}

@media (min-width: 220px) and (max-width:991px) {
  .section {
    padding: 50px 20px;
  }

  .bg-left-red::before {
    width: 100%;
  }

  .fixed-top {
    position: relative;
  }

  .hero-scroll {
    display: none;
  }
  .fixed-top.scrolled{
      position:relative;
  }
  .home-page .fixed-top {
      position: relative ;
    }

}

@media (min-width: 768px) and (max-width:991px) {}

@media (min-width: 220px) and (max-width:767px) {}

@media (min-width: 576px) and (max-width:767px) {}

@media (min-width: 220px) and (max-width:575px) {
  .section {
    padding: 30px 20px;
  }
  .contact-box{
      padding:10px;
  }
  .navbar>.container {
    display: block;
  }

  .navbar-brand img {
    width: 70%;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: 30px;
  }
}

@media (min-width: 992px) and (max-width:1200px) {}

@media (min-width: 1200px) and (max-width:1300px) {
  .hero-eyebrow {
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(3rem, 7vw, 4.0rem);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    margin-bottom: 15px;
  }

  .footer-links a {
    gap: 0px;
  }
}

@media (min-width: 1300px) and (max-width:1400px) {}