:root {
  --brand-maroon: #701212;
  /* Core Brand Color */
  --brand-green: #1a4325;
  /* Nature/Forest */
  --brand-gold: #c59d5f;
  /* Wood Accent */
  --text-dark: #111111;
  --text-gray: #555;
  --bg-light: #f9f7f2;
  /* Warm Off-White */
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* --- FIXED FLOATING ICONS CSS --- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Manrope", sans-serif;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid #fff;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Tooltip (Desktop Hover) */
.float-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-weight: 600;
  pointer-events: none;
}

.float-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Icon Colors */
.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
}

.btn-call {
  background-color: var(--brand-maroon);
  border-color: var(--brand-maroon);
}

.btn-email {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  /* Hide tooltip on mobile to avoid screen clutter */
  .float-btn::after {
    display: none;
  }
}

/* --- 1. TOP BAR (Sleek & Minimal) --- */
.top-bar {
  background-color: #0f0f0f;
  /* Pitch Black for contrast */
  color: #ccc;
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1002;
  /* Above Navbar */
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: var(--brand-gold);
}

.sep {
  margin: 0 12px;
  color: #444;
}

/* --- 2. MAIN NAVBAR (Architectural White) --- */
.navbar {
  background-color: #ffffff;
  padding: 0;
  height: 75px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 55px;
  transition: 0.3s;
}

.navbar.scrolled .navbar-brand img {
  height: 45px;
}

/* --- NAV LINKS (THE MARKER SWEEP EFFECT) --- */
.nav-link {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  margin: 0 10px;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

/* The Background Sweep Layer */
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brand-maroon);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
  border-radius: 2px;
}

/* Hover State */
.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Arrow Icon Styling */
.nav-link i {
  font-size: 1rem;
  margin-left: 6px;
  color: var(--brand-maroon);
  transition: color 0.3s;
}

.nav-link:hover i {
  color: #fff;
}

/* Dropdown Menu (Clean Box) */
.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--brand-maroon);
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  margin-top: 25px;
  min-width: 260px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  background: #fff;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  transition: 0.2s;
}

.dropdown-item:hover {
  background-color: #f4f4f4;
  color: var(--brand-maroon);
  padding-left: 30px;
}

/* Quote Button (Elegant) */
.btn-factory {
  background-color: var(--text-dark) !important;
  color: white !important;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 35px;
  border-radius: 0 !important;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: 0.4s;
  border: 1px solid var(--text-dark) !important;
}

.btn-factory:hover {
  background-color: transparent !important;
  color: var(--text-dark) !important;
}

/* --- MOBILE MENU (MAROON & BOLD) --- */
.navbar-toggler {
  border: none;
  padding: 0;
  margin-left: 15px;
}

.ri-menu-line {
  font-size: 2.2rem;
  color: var(--text-dark);
}

.offcanvas {
  background-color: var(--brand-maroon) !important;
  color: white !important;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.offcanvas-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}

.offcanvas .btn-close {
  filter: invert(1) brightness(200%);
  opacity: 1;
}

.offcanvas-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.mobile-nav-link:hover {
  color: var(--brand-gold);
  padding-left: 10px;
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-menu {
  background: rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  padding: 10px;
  border-left: 2px solid var(--brand-gold);
}

.mobile-sub-link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 8px 10px;
  font-size: 1rem;
}

.mobile-sub-link:hover {
  color: white;
}

.mobile-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* --- HERO SECTION (THE ELEGANT FULL-SCREEN EDIT) --- */
.hero-section {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

/* Image Handling */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active .hero-bg-image {
  transform: scale(1.08);
  /* Smoother, less aggressive zoom */
}

/* Refined Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Multistage gradient for better text readability */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

/* Content Area - FIXED ALIGNMENT */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* THIS FIXES THE BUTTON STRETCH */
  padding-left: 6%;
  max-width: 900px;
}

/* Typography */
.hero-label {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
  position: relative;
  padding-left: 50px;
}

/* Decorative Line before Label */
.hero-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: var(--brand-gold);
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
}

.hero-desc {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.7s;
  font-weight: 300;
  line-height: 1.6;
}

/* Button Styling - OPTIMIZED WIDTH */
.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  /* Reduced padding */
  background: #fff;
  color: var(--brand-maroon);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.9rem;
  /* Reduced font size */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
  border: 2px solid #fff;
}

.hero-btn:hover {
  background: transparent;
  color: #fff;
}

.hero-btn i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.hero-btn:hover i {
  transform: translateX(5px);
}

/* Active State */
.carousel-item.active .hero-label,
.carousel-item.active .hero-title,
.carousel-item.active .hero-desc,
.carousel-item.active .hero-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Progress Indicators (Bottom Center) */
.hero-indicators {
  position: absolute;
  bottom: 50px;
  left: 10%;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.indicator-item {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.indicator-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--brand-gold);
  transition: width 0.3s linear;
}

.indicator-item.active::after {
  width: 100%;
}

/* Fixed Socials (Left Side) */
.hero-socials {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--brand-gold);
  transform: scale(1.2);
}

.vertical-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  /* Font size reduced for mobile */
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Added padding to prevent text overflow */
  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-socials {
    display: none;
  }

  .hero-indicators {
    left: 20px;
    bottom: 30px;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }

  .hero-label {
    font-size: 0.8rem;
    margin-bottom: 10px;
    padding-left: 40px;
  }

  .hero-label::before {
    width: 30px;
  }
}

@media (max-width: 401px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

/* --- 5. ABOUT SECTION STYLES (CLEAN & SIMPLE - RESTORED) --- */
.section-padding {
  padding: 100px 0;
  background-color: #fff;
  /* Clean White */
}

.text-gold {
  color: var(--brand-gold);
}

.font-heading {
  font-family: "Syne", sans-serif;
}

/* Image Wrapper (Simple & Strong) */
.about-img-wrapper {
  position: relative;
  padding: 15px;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Subtle Border Accent */
.about-img-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -10px;
  width: 50%;
  height: 80%;
  border-left: 5px solid var(--brand-gold);
  border-bottom: 5px solid var(--brand-gold);
  z-index: 1;
}

/* Floating Badge */
.experience-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--brand-maroon);
  color: white;
  padding: 20px 30px;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(112, 18, 18, 0.4);
  text-align: center;
}

.experience-badge .years {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-gold);
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Feature Item Styling */
.feature-item {
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.feature-item:hover {
  background-color: #f8f9fa;
  /* Subtle grey bg on hover */
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #eee;
  color: var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ICON HOVER ANIMATION: Fill Color & Rotate */
.feature-item:hover .icon-box {
  background: var(--brand-maroon);
  color: #fff;
  transform: rotateY(180deg);
  /* Flip Animation */
  border-color: var(--brand-maroon);
}

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

/* Button Styling (Simple & Solid) */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 35px;
  background-color: transparent;
  color: var(--brand-maroon);
  border: 2px solid var(--brand-maroon);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 10px;
}

.btn-read-more:hover {
  background-color: var(--brand-maroon);
  color: white;
  box-shadow: 0 10px 20px rgba(112, 18, 18, 0.2);
  transform: translateY(-3px);
}

.btn-read-more i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }

  .experience-badge {
    right: 0;
    bottom: 0;
    padding: 15px 20px;
  }

  .about-img-wrapper {
    margin-bottom: 40px;
  }

  .about-img-wrapper::before {
    display: none;
  }
}

/* --- 6. PRODUCTS SECTION (PREMIUM & STYLISH) --- */
.bg-light-gray {
  /* background-color: #f9f9f9; */
  background: url(../images/backgrounds/10916794_516.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* NEW HEADER STYLES */
.section-header-modern {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 30px;
}

.section-header-modern::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  /* Subtle divider line */
}

.header-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--brand-gold);
}

.header-title-large {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0;
}

.header-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
  margin-top: 20px;
}

/* PREMIUM PRODUCT CARD */
.product-card-modern {
  position: relative;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Very subtle border initially */
  overflow: hidden;
}

/* Hover: Lift & Gold Border */
.product-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-gold);
  /* Gold border reveal */
}

/* Image Wrapper */
.prod-img-wrap {
  height: 350px;
  /* Taller for grandeur */
  position: relative;
  overflow: hidden;
  background-color: #eee;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card-modern:hover .prod-img {
  transform: scale(1.15);
  /* Smooth Zoom */
}

/* Dark Overlay on Hover */
.prod-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.product-card-modern:hover .prod-overlay {
  opacity: 1;
}

/* Floating Badge (Gold) */
.prod-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--brand-gold);
  /* Gold Background */
  color: #000;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Action Button (Slides Up) */
.action-btn-wrap {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(100%);
  /* Hidden down */
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 3;
}

.product-card-modern:hover .action-btn-wrap {
  transform: translateY(0);
  opacity: 1;
}

.btn-quick-view {
  display: inline-block;
  background: #fff;
  color: var(--text-dark);
  padding: 12px 30px;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.btn-quick-view:hover {
  background: var(--brand-maroon);
  color: #fff;
}

/* Content Area */
.prod-details {
  padding: 30px 25px;
  text-align: center;
  /* Centered for elegance */
  background: #fff;
  position: relative;
  z-index: 2;
  transition: background 0.3s;
}

/* Slight background change on hover */
.product-card-modern:hover .prod-details {
  background: #fffcf5;
  /* Very subtle warm tint */
}

.prod-cat {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.prod-title {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s;
}

.product-card-modern:hover .prod-title {
  color: var(--brand-maroon);
}

/* Separator Line */
.prod-sep {
  width: 40px;
  height: 2px;
  background: #eee;
  margin: 15px auto 0;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.product-card-modern:hover .prod-sep {
  width: 80px;
  background: var(--brand-gold);
}

@media (max-width: 768px) {
  .prod-img-wrap {
    height: 280px;
  }

  .header-title-large {
    font-size: 2.5rem;
  }

  .prod-details {
    padding: 20px;
  }
}

/* --- 7. COMPACT FEATURE STRIP (RESPONSIVE GRID) --- */
.feature-strip-container {
  padding: 80px 0;
  /* background-color: #fff; */
  background: url(../images/backgrounds/958.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: 1px solid #eee;
  overflow-x: hidden;
}

/* Header Styles */
.feat-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.feat-header-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.feat-header-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Flex container - Now Wraps Responsively */
.feature-flex-row {
  display: flex;
  justify-content: center;
  /* Center items */
  flex-wrap: wrap;
  /* Allow items to wrap to next line if space is low */
  gap: 40px;
  /* Consistent gap */
  padding-bottom: 20px;
}

/* Individual Feature Item */
.feat-tile-item {
  text-align: center;
  flex: 0 0 auto;
  width: 260px;
  /* Default width for Desktop */
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.feat-tile-item:hover {
  transform: translateY(-15px);
}

/* The Image Circle/Box */
.feat-tile-img-box {
  width: 260px;
  height: 260px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f8f8f8;
  padding: 5px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

/* Hover Effect: Border Color & Shadow */
.feat-tile-item:hover .feat-tile-img-box {
  border-color: var(--brand-maroon);
  box-shadow: 0 15px 40px rgba(112, 18, 18, 0.25);
  transform: scale(1.02);
}

/* Actual Image inside */
.feat-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

/* Image Zoom on Hover */
.feat-tile-item:hover .feat-tile-img {
  transform: scale(1.15);
}

/* Text below */
.feat-tile-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px;
  transition: color 0.3s;
}

.feat-tile-item:hover .feat-tile-title {
  color: var(--brand-maroon);
}

/* Underline Animation */
.feat-tile-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--brand-maroon);
  margin: 8px auto 0;
  transition: width 0.3s;
}

.feat-tile-item:hover .feat-tile-title::after {
  width: 50px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Laptop/Tablet (Approx 992px to 1200px) */
@media (max-width: 1200px) {
  .feature-flex-row {
    gap: 30px;
    max-width: 900px;
    /* Restrict width to force wrapping neatly */
    margin: 0 auto;
  }
}

/* Tablet/Mobile (Below 768px) */
@media (max-width: 768px) {
  .feat-header-title {
    font-size: 2rem;
  }

  .feature-flex-row {
    gap: 20px;
    /* Smaller gap on mobile */
  }

  .feat-tile-item {
    width: 45%;
    /* Two items per row (approx) */
    max-width: 150px;
    /* Don't get too big */
    margin-bottom: 20px;
  }

  .feat-tile-img-box {
    width: 130px;
    /* Slightly smaller circle for mobile */
    height: 130px;
  }

  .feat-tile-title {
    font-size: 0.9rem;
  }
}

/* Small Mobile (Below 400px) */
@media (max-width: 400px) {
  .feat-tile-img-box {
    width: 110px;
    height: 110px;
  }
}

/* --- 8. SPLIT CONTENT SECTION (TECH VS NATURE) --- */
.split-section-wrap {
  width: 100%;
  overflow: hidden;
}

/* Left Side: Dark & Techy */
.split-box-left {
  background-color: #1a0505;
  /* Deepest Maroon/Black */
  padding: 100px 80px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Subtle Pattern for Left */
.split-box-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

/* Right Side: Light & Natural */
.split-box-right {
  background-color: #f9f7f2;
  /* Warm Off-White */
  padding: 100px 80px;
  color: var(--text-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.split-sub-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 2;
}

.label-gold {
  color: var(--brand-gold);
}

.label-maroon {
  color: var(--brand-maroon);
}

.split-heading {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.split-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.desc-light {
  color: rgba(255, 255, 255, 0.7);
}

.desc-dark {
  color: #555;
}

/* Icon with Ring */
.split-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.ring-gold {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.ring-maroon {
  border-color: var(--brand-maroon);
  color: var(--brand-maroon);
}

/* Responsive */
@media (max-width: 991px) {
  .split-box-left,
  .split-box-right {
    padding: 60px 30px;
  }

  .split-heading {
    font-size: 2.2rem;
  }
}

/* --- 9. CONTACT SECTION (PURE SPLIT - EQUAL HEIGHT) --- */
.contact-split-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* The Split Container - Flex ensures equal height */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* CRITICAL: Stretches both cols to same height */
  width: 100%;
}

/* LEFT SIDE: Pure Image */
.contact-image-col {
  flex: 0 0 45%;
  position: relative;
  /* High quality vertical wood/interior image */
  background-image: url("../images/backgrounds/contact-side.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 100%;
  /* Ensures it fills height */
}

/* Dark Overlay (Optional - for aesthetics) */
.contact-image-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  /* Very light tint */
}

/* RIGHT SIDE: The Form */
.contact-form-col {
  flex: 0 0 55%;
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.form-header-small {
  color: var(--brand-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.form-heading {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 40px;
}

/* Modern Floating Input Style */
.modern-input-group {
  position: relative;
  margin-bottom: 35px;
}

.modern-input {
  width: 100%;
  padding: 10px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-family: "Manrope", sans-serif;
  transition: border-color 0.3s;
  border-radius: 0;
}

.modern-input:focus {
  outline: none;
  border-bottom-color: var(--brand-maroon);
}

/* Floating Label Logic */
.modern-label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
}

.modern-input:focus ~ .modern-label,
.modern-input:not(:placeholder-shown) ~ .modern-label {
  top: -15px;
  font-size: 0.8rem;
  color: var(--brand-maroon);
  font-weight: 600;
}

/* Animated Submit Button */
.btn-submit-modern {
  padding: 18px 50px;
  background: var(--text-dark);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--brand-maroon);
  transition: width 0.4s ease;
  z-index: 0;
}

.btn-submit-modern span,
.btn-submit-modern i {
  position: relative;
  z-index: 1;
}

.btn-submit-modern:hover::before {
  width: 100%;
}

.btn-submit-modern:hover {
  padding-left: 60px;
  /* Slide effect */
}

/* Responsive */
@media (max-width: 991px) {
  .contact-row {
    flex-direction: column;
  }

  /* On mobile, give image a fixed height */
  .contact-image-col {
    flex: 0 0 350px;
    height: 350px;
    width: 100%;
  }

  .contact-form-col {
    flex: 0 0 auto;
    width: 100%;
    padding: 60px 30px;
  }

  .form-heading {
    font-size: 2.5rem;
  }
}

/* --- GALLERY CSS START --- */
.gallery-section {
  padding: 80px 0;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
}

.gallery-container-wrapper {
  position: relative;
  width: 100%;
}

/* Header Styles */
.gallery-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.gallery-title-main {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.gallery-desc-main {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Scrollable Track */
.gallery-track {
  display: flex;
  gap: 0;
  overflow-x: hidden;
  /* Hide scrollbar completely */
  /* Removed 'scroll-behavior: smooth' to prevent auto-slide loop issues */
  padding: 40px 0;
  align-items: center;
  width: 100%;
  cursor: grab;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track:active {
  cursor: grabbing;
}

/* Gallery Item */
.gallery-item {
  /* DESKTOP: 30vw ensures approx 3 items fit (30% + 30% + 30% + margins) */
  flex: 0 0 28vw;
  max-width: 500px;
  height: 450px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  margin: 0 1.5vw;
  /* Gap to space out the 3 items */

  /* Default State (Side Images) */
  transform: scale(0.9);
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Active Center State (Highlighted) */
.gallery-item.active-center {
  transform: scale(1.15);
  /* Zoomed In Big */
  opacity: 1;
  filter: grayscale(0%);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 4px solid #fff;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(112, 18, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-icon-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-maroon);
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-icon-circle {
  transform: scale(1);
}

/* Navigation Arrows */
.g-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--brand-maroon);
  color: #fff;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.g-nav-btn:hover {
  background: var(--text-dark);
}

.g-prev-btn {
  left: 40px;
}

.g-next-btn {
  right: 40px;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  border: 5px solid #fff;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--brand-gold);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  .gallery-item {
    flex: 0 0 40vw;
    /* 2 items on tablet */
    height: 380px;
  }

  .g-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .gallery-title-main {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Mobile Arrows Visible */
  .g-nav-btn {
    background: rgba(112, 18, 18, 0.9);
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: -50px;
    /* Below slider */
    top: auto;
    transform: none;
  }

  .g-prev-btn {
    left: 20%;
  }

  .g-next-btn {
    right: 20%;
  }

  .gallery-container-wrapper {
    padding-bottom: 60px;
  }

  /* Mobile Item Size - ONE CENTERED IMAGE */
  .gallery-item {
    flex: 0 0 85vw;
    /* Take up 85% width (Almost full) */
    height: 350px;
    margin: 0 7.5vw;
    /* Centering margin */
    transform: scale(0.95);
    opacity: 1;
    /* Keep opacity full on mobile for better view */
    filter: grayscale(0%);
    /* Color always on mobile */
  }

  /* Active center item on mobile */
  .gallery-item.active-center {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
  }
}

/* --- GALLERY CSS END --- */

/* --- TESTIMONIALS CSS --- */
.testi-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* Header (Consistent with other sections) */
.testi-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 15px;
}

.testi-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.testi-desc {
  font-size: 1rem;
  color: #666;
}

/* Slider Window */
.testi-window {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  /* Space for shadows */
}

/* The Moving Track */
.testi-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* Smooth Slide Effect */
  width: 100%;
}

/* Individual Card Wrapper */
.testi-card-wrap {
  flex: 0 0 50%;
  /* 2 Cards per slide on Desktop */
  padding: 0 15px;
  /* Gap between cards */
  box-sizing: border-box;
}

/* The Card Design */
.testi-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(112, 18, 18, 0.08);
  border-color: rgba(197, 157, 95, 0.3);
  /* Gold tint border */
  background: #fff;
}

/* Quote Icon */
.quote-icon {
  font-size: 2.5rem;
  color: rgba(197, 157, 95, 0.2);
  /* Faded Gold */
  position: absolute;
  top: 20px;
  right: 30px;
}

/* Stars */
.testi-stars {
  color: var(--brand-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Text */
.testi-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
}

/* User Profile */
.testi-user {
  display: flex;
  align-items: center;
}

.user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--brand-gold);
}

.user-info h5 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-dark);
}

.user-info span {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Indicators (Dots) */
.testi-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.t-dot.active {
  background: var(--brand-maroon);
  transform: scale(1.2);
}

/* --- BLOG SECTION CSS --- */
.blog-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  /* Distinct background */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 Columns */
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(112, 18, 18, 0.12);
}

.blog-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

/* Date Badge */
.blog-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 60px;
}

.bd-day {
  display: block;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--brand-maroon);
  font-family: "Syne", sans-serif;
  line-height: 1;
}

.bd-month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #555;
  letter-spacing: 1px;
}

.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.blog-title {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--text-dark);
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title a:hover {
  color: var(--brand-maroon);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-link {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #eee;
  padding-bottom: 3px;
  width: fit-content;
}

.blog-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.blog-link:hover {
  color: var(--brand-maroon);
  border-color: var(--brand-maroon);
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .testi-card-wrap {
    flex: 0 0 100%;
  }

  /* 1 Card on Mobile/Tablet */
  .testi-title {
    font-size: 2.2rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FOOTER CSS START (CLEAN BRAND STYLE) --- */
.footer-section {
  background-color: var(--text-dark);
  /* Solid Brand Color */
  color: #fff;
  padding-top: 90px;
  font-size: 0.95rem;
  position: relative;
}

.container {
  position: relative;
  z-index: 2;
}

/* Logo Area */
.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  /* White Logo */
  margin-bottom: 20px;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 320px;
  font-weight: 300;
}

/* Headings */
.footer-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--brand-gold);
  margin-top: 8px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-gold);
  transform: translateX(5px);
}

/* Contact Info */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
  color: var(--brand-gold);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 2px;
}

/* Social Icons */
.social-bar {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  background-color: #70121295;
  /* Slightly darker stripe */
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.728);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding-top: 50px;
  }

  .footer-title {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

/* ===== PREMIUM DROPDOWN ONLY ===== */

.dropdown-menu {
  display: none !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 0 !important;
  background: #fff !important;
  min-width: 230px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important ;
  transform: translateY(15px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  border-top: 3px solid var(--brand-gold) !important;
  margin-top: -12px !important;
}

.dropdown-item {
  padding: 10px 22px !important;
  font-weight: 500 !important;
  color: var(--text-gray) !important;
  transition: all 0.3s ease !important;
}

.dropdown-item:hover {
  background: var(--brand-maroon) !important;
  color: #fff !important;
  padding-left: 28px !important;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
  }
}
