/* ═══════════════════════════════════════════
   Interlay Interiors — Global Stylesheet
   ═══════════════════════════════════════════ */

/* ── Base ── */
* {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.top-bar {
  background-color: #1b2a4a;
  padding: 8px 0;
  font-size: 13px;
  color: #cdd5e0;
}
.top-bar a {
  color: #cdd5e0;
  text-decoration: none;
  transition: color .2s;
}
.top-bar a:hover { color: #f5a623; }

.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-bar .contact-item i {
  color: #f5a623;
  font-size: 14px;
}
.top-bar .divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .2);
  margin: 0 16px;
}

/* Social icons */
.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  color: #cdd5e0;
  font-size: 13px;
  margin-left: 6px;
  transition: background .2s, color .2s, border-color .2s;
}
.top-bar .social-icons a:hover {
  background: #f5a623;
  border-color: #f5a623;
  color: #fff;
}

/* ══════════════════════════════════════════
   MAIN NAVBAR
══════════════════════════════════════════ */
.main-navbar {
  background-color: #f0f0f0;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.main-navbar .navbar-brand {
  padding: 10px 0;
}
.logo-img {
  height: 62px;
  width: auto;
}

/* Nav links */
.main-navbar .nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1b2a4a !important;
  padding: 28px 14px !important;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active-link {
  color: #f5a623 !important;
}
.main-navbar .nav-link.active-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: #f5a623;
}

/* Dropdown */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  min-width: 200px;
  padding: 8px 0;
}
.main-navbar .dropdown-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #1b2a4a;
  padding: 9px 20px;
  text-transform: uppercase;
}
.main-navbar .dropdown-item:hover {
  background: #f5a623;
  color: #fff;
}

/* CTA button */
.btn-lets-talk {
  background-color: #1b2a4a;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 0;
  border: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-lets-talk:hover {
  background-color: #f5a623;
  color: #fff !important;
}

/* Nested submenu */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-toggle::after {
  display: inline-block;
  margin-left: auto;
  float: right;
  margin-top: 6px;
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropdown-submenu-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border-radius: 0;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  display: none;
  position: absolute;
  min-width: 180px;
  padding: 8px 0;
  background: #fff;
  z-index: 1000;
}
.dropdown-submenu:hover > .dropdown-submenu-menu,
.dropdown-submenu.open > .dropdown-submenu-menu {
  display: block;
}
.dropdown-submenu-menu .dropdown-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #1b2a4a;
  padding: 9px 20px;
  text-transform: uppercase;
}
.dropdown-submenu-menu .dropdown-item:hover {
  background: #f5a623;
  color: #fff;
}

/* Hamburger */
.navbar-toggler { border-color: #1b2a4a; }
.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='%231b2a4a' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════
   UTILITY / BRAND COLORS
══════════════════════════════════════════ */
:root {
  --color-navy:  #1b2a4a;
  --color-gold:  #f5a623;
  --color-light: #f0f0f0;
  --color-white: #ffffff;
  --color-text:  #333333;
}

.text-gold  { color: var(--color-gold) !important; }
.text-navy  { color: var(--color-navy) !important; }
.bg-navy    { background-color: var(--color-navy) !important; }
.bg-gold    { background-color: var(--color-gold) !important; }

.btn-primary-custom {
  background-color: var(--color-navy);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  padding: 12px 30px;
  transition: background .2s;
}
.btn-primary-custom:hover { background-color: var(--color-gold); color: #fff; }

.btn-outline-custom {
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  background: transparent;
  padding: 12px 30px;
  transition: all .2s;
}
.btn-outline-custom:hover {
  background-color: var(--color-navy);
  color: #fff;
}

/* Section spacing */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* Section title */
.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
}
.section-title span { color: var(--color-gold); }

.section-subtitle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #777;
  margin-top: 10px;
}

/* Gold underline accent */
.title-underline {
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin: 14px 0 30px;
}
.title-underline.center { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */

/* Force true full-width — break out of any ancestor padding */
.hero-slider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* Each slide is a full-viewport background panel */
.carousel-item {
  height: 90vh;
  min-height: 520px;
}

/* Background-image approach — never shows gray/broken */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07);
  transition: transform 6s ease;
}
.carousel-item.active .hero-img {
  transform: scale(1);
}

/* Slide-in from left animation for the whole carousel item */
.carousel-item {
  transition: transform 0.75s ease-in-out !important;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 40, 0.78) 0%,
    rgba(10, 20, 40, 0.40) 55%,
    rgba(10, 20, 40, 0.10) 100%
  );
  display: flex;
  align-items: center;
  padding-left: 8%;
  z-index: 2;
}

/* Hero text */
.hero-content {
  max-width: 560px;
  opacity: 0;
  transform: translateX(-70px);
}
.hero-content.slide-in {
  animation: heroSlideIn 0.85s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-title span { color: var(--color-gold); }

/* Dot indicators */
.hero-slider .carousel-indicators {
  bottom: 30px;
  gap: 8px;
  z-index: 5;
}
.hero-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  background: transparent;
  opacity: .8;
  transition: all .35s;
  padding: 0;
}
.hero-slider .carousel-indicators button.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  width: 30px;
  border-radius: 6px;
  opacity: 1;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15) !important;
  border: 2px solid rgba(255,255,255,.45) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
  opacity: 1 !important;
  z-index: 5;
}
.hero-arrow:hover {
  background: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
}
.hero-arrow i { font-size: 20px; color: #fff; }
.carousel-control-prev.hero-arrow { left: 28px; }
.carousel-control-next.hero-arrow { right: 28px; }

/* ══════════════════════════════════════════
   VIDEO EMBED SECTION
══════════════════════════════════════════ */
.video-embed-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #000;
  padding: 0;
}

/* Responsive 16:9 wrapper — fills full viewport width */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Transparent overlay — blocks all clicks/links (incl. YouTube logo) */
.video-click-blocker {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
  background: transparent;
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.services-section {
  padding: 80px 0 90px;
  background: #fff;
}

.services-heading {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-top: 10px;
}

/* Card */
.service-card {
  border: 1.5px solid var(--color-gold);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.service-card:hover {
  box-shadow: 0 12px 36px rgba(245, 166, 35, 0.18);
  transform: translateY(-5px);
}

/* Image */
.service-card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

/* Body */
.service-card-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.service-link {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 600;
}
.service-link:hover { color: var(--color-navy); }

/* Button */
.btn-service {
  background-color: var(--color-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 0;
  border: 2px solid var(--color-gold);
  align-self: flex-start;
  transition: background .2s, color .2s;
}
.btn-service:hover {
  background: transparent;
  color: var(--color-gold);
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  background: rgba(10, 20, 40, 0.65);
  padding: 90px 20px;
}

.cta-heading {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 18px;
  text-transform: none;
}

.cta-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  letter-spacing: .3px;
}

.btn-cta {
  background-color: var(--color-gold);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 16px 48px;
  border-radius: 0;
  border: 2px solid var(--color-gold);
  transition: background .2s, color .2s;
}
.btn-cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-section {
  padding: 70px 0 60px;
  background: #fff;
}

.why-heading {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin: 10px 0 22px;
}

.why-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   FEATURES — DARK GRID
══════════════════════════════════════════ */
.features-section {
  background-color: #2b2b2b;
  padding: 80px 0 70px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* re-center container inside full-bleed section */
.features-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

/* Gold outline square icon */
.feature-icon {
  flex-shrink: 0;
  margin-top: 4px;
  width: 44px;
  height: 44px;
  border: 2.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 22px;
  transition: background .25s, color .25s;
}
.feature-item:hover .feature-icon {
  background: var(--color-gold);
  color: #fff;
}

.feature-body {}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════
   DESIGN IDEAS GALLERY (5-panel)
══════════════════════════════════════════ */
.design-ideas-section {
  background: #fff;
  padding-bottom: 0;
}

.design-ideas-heading {
  padding: 70px 20px 36px;
}
.design-ideas-heading .intro-label {
  margin-bottom: 10px;
}
.design-ideas-heading h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

/* 5 equal-width panels that expand on hover */
.gallery-wrap {
  display: flex;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.gallery-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  text-decoration: none;
  display: block;
  min-width: 0;
  transition: flex 0.7s cubic-bezier(.77, 0, .18, 1);
}

/* When any panel in the row is hovered, non-hovered panels shrink */
.gallery-wrap:hover .gallery-panel {
  flex: 0.55;
}
/* The hovered panel expands */
.gallery-wrap .gallery-panel:hover {
  flex: 3.5;
}

.gallery-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease, filter .4s ease;
  filter: brightness(.85);
}
.gallery-panel:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

/* Dark gradient at the bottom for text legibility */
.gallery-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.30) 35%,
    rgba(0,0,0,0)    65%
  );
  pointer-events: none;
}

/* Caption pinned bottom-left */
.panel-caption {
  position: absolute;
  bottom: 30px;
  left: 28px;
  z-index: 3;
  color: #fff;
  transition: transform .4s ease;
}
.gallery-panel:hover .panel-caption {
  transform: translateY(-4px);
}

.panel-caption h5 {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(255,255,255,0.8);
  transition: color .25s, border-color .25s, gap .25s;
}
.panel-link i { font-size: 14px; }
.gallery-panel:hover .panel-link {
  color: var(--color-gold);
  border-color: var(--color-gold);
  gap: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-wrap {
    flex-wrap: wrap;
    height: auto;
  }
  .gallery-panel {
    flex: 0 0 50%;
    height: 320px;
  }
  .gallery-panel:last-child { flex: 0 0 100%; }
}
@media (max-width: 575px) {
  .gallery-panel,
  .gallery-panel:last-child { flex: 0 0 100%; height: 280px; }
}

/* ══════════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════════ */
.team-section {
  padding: 70px 0 60px;
  background: #fff;
}

.team-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #111;
  margin-top: 6px;
  margin-bottom: 0;
}

/* Square nav buttons top-right */
.team-nav-btns {
  display: flex;
  gap: 8px;
  align-self: center;
  margin-top: 6px;
}
.team-nav-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid #ccc;
  background: transparent;
  color: #555;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.team-nav-btn.active,
.team-nav-btn:hover {
  background: #2e6b4f;
  border-color: #2e6b4f;
  color: #fff;
}

/* Slider viewport — clips overflow */
.team-viewport {
  overflow: hidden;
  width: 100%;
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each card */
.team-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  text-align: center;
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  background: #eee;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease, filter .4s ease;
  filter: none;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }

.team-img-wrap.grayscale img { filter: grayscale(100%); }
.team-card:hover .team-img-wrap.grayscale img { filter: grayscale(0%); }

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Dot indicators */
.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.team-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #aaa;
  background: transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.team-dot.active {
  background: #2e6b4f;
  border-color: #2e6b4f;
}

/* Responsive */
@media (max-width: 991px) {
  .team-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 575px) {
  .team-card { flex: 0 0 100%; }
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-section {
  padding: 80px 0 90px;
  background: #fff;
}

/* Main heading */
.contact-main-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.contact-main-sub {
  font-size: 15px;
  color: #444;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card */
.contact-card {
  border: 1.5px solid var(--color-gold);
  border-radius: 12px;
  padding: 36px 36px 30px;
  background: #fff;
}
.contact-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  text-align: center;
}
.contact-card-sub {
  font-size: 14px;
  color: #444;
  text-align: center;
  margin-bottom: 28px;
}

/* Inputs */
.contact-field {
  position: relative;
  margin-bottom: 18px;
}
.contact-input {
  width: 100%;
  border: 1.5px solid var(--color-gold);
  border-radius: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  outline: none;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-input::placeholder { color: #aaa; }
.contact-input:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.08);
}

.contact-textarea {
  height: 110px;
  resize: vertical;
}

/* Char count */
.char-count {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: #aaa;
}

/* Checkboxes */
.contact-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  color: #333;
  cursor: pointer;
}
.contact-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-gold);
  cursor: pointer;
  flex-shrink: 0;
}

/* Submit button */
.btn-submit {
  background: var(--color-gold);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 50px;
  border-radius: 30px;
  border: 2px solid var(--color-gold);
  transition: background .2s, color .2s;
  width: 60%;
}
.btn-submit:hover {
  background: transparent;
  color: var(--color-gold);
}

/* Right video */
.contact-video-wrap {
  width: 100%;
  height: 540px;
  overflow: hidden;
  background: #111;
}
.contact-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════
   END TO END SECTION
══════════════════════════════════════════ */
.end-section {
  padding: 70px 0 60px;
  background: #fff;
}
.end-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 24px;
}
.end-text {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 100%;
}

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.faq-section {
  padding: 20px 0 80px;
  background: #fff;
}

.faq-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #111;
  margin-top: 8px;
}
.faq-dot {
  color: var(--color-gold);
  font-size: 1.1em;
}

/* Outer wrap — single border box around all items */
.faq-wrap {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

/* Each FAQ row */
.faq-item {
  border-bottom: 1px solid #e8e8e8;
}
.faq-item:last-child { border-bottom: none; }

/* Question button */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  gap: 16px;
  transition: background .2s;
}
.faq-question:hover { background: #fffdf7; }

/* Gold square toggle icon */
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-gold);
  position: relative;
  transition: background .25s;
}
.faq-question:not(.collapsed) .faq-icon {
  background: var(--color-gold);
}
/* Plus / minus lines inside the icon */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s, transform .2s;
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; }

/* When open — hide vertical bar (show minus) */
.faq-question:not(.collapsed) .faq-icon::before { background: #fff; }
.faq-question:not(.collapsed) .faq-icon::after  { opacity: 0; }

/* Answer */
.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-main {
  background-color: #ebebeb;
  padding: 60px 0 50px;
}

/* Logo */
.footer-logo {
  margin-bottom: 22px;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* Tagline */
.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.4;
  margin-bottom: 16px;
}

/* Description */
.footer-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* Column title */
.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #111;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s, gap .2s;
}
.footer-links a::before {
  content: '\F285'; /* bi-chevron-right */
  font-family: 'bootstrap-icons';
  font-size: 14px;
  color: var(--color-gold);
  font-weight: 700;
  transition: transform .2s;
}
.footer-links a:hover {
  color: var(--color-gold);
  gap: 14px;
}
.footer-links a:hover::before {
  transform: translateX(2px);
}

/* Contact items */
.footer-contact-item {
  margin-bottom: 0;
  font-size: 15px;
  color: #333;
}
.footer-contact-item a {
  color: #333;
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-item a:hover { color: var(--color-gold); }

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid #888;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.footer-socials a i {
  line-height: 1;
}
.footer-socials a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Copyright bar */
.footer-bottom {
  background-color: var(--color-navy);
  padding: 16px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin: 0;
  letter-spacing: .3px;
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  bottom: 28px;
}
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
  color: #fff;
}
.float-whatsapp {
  left: 24px;
  background: #25d366;
}
.float-phone {
  right: 24px;
  background: var(--color-navy);
}

/* ══════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════ */
.intro-section {
  padding: 80px 0 70px;
  background: #fff;
}

.intro-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro-heading {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 28px;
}

.intro-text {
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 1.85;
  margin-bottom: 40px;
}

.intro-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-intro {
  background-color: var(--color-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 0;
  border: 2px solid var(--color-gold);
  transition: background .2s, color .2s;
}
.btn-intro:hover {
  background: transparent;
  color: var(--color-gold);
}

/* Responsive: smaller hero on mobile */
@media (max-width: 767px) {
  .hero-img { height: 60vh; min-height: 340px; }
  .hero-overlay { padding-left: 5%; }
}
