/* ============================================================
   SRIEZA GLOBAL — style.css
   Sections:
   1.  Root Variables & Reset
   2.  Scrollbar
   3.  Navbar
   4.  Hero Slider
   5.  About Section
   6.  Services Section
   7.  Vision / Mission / Values + Stats
   8.  Footer
   9.  Scroll Reveal Utilities
   10. Keyframes
   11. Responsive
============================================================ */


/* ============================================================
   1. ROOT VARIABLES & RESET
============================================================ */
:root {
  --gold:    #c9962a;
  --gold-lt: #f0d98a;
  --gold-dk: #a47318;
  --dark:    #0c100f;
  --cream:   #fffcf4;
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  overflow-x: hidden;
  color: #fff;
}


/* ============================================================
   2. CUSTOM SCROLLBAR
============================================================ */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }


/* ============================================================
   SRIEZA GLOBAL — navbar.css
   Drop this into your project and remove ALL old navbar +
   .mobile-menu CSS from style.css.

   Sections:
   1.  Navbar base
   2.  Desktop nav links
   3.  Center logo
   4.  Services dropdown (desktop)
   5.  Hamburger button
   6.  Drawer overlay
   7.  Mobile drawer panel
   8.  Drawer — top header
   9.  Drawer — nav links
   10. Drawer — services accordion
   11. Drawer — footer contact strip
   12. Stagger entrance animation
   13. Responsive breakpoint
============================================================ */


/* ============================================================
   1. NAVBAR BASE
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgb(21 21 11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}
#navbar.scrolled {
  background: rgba(12,16,15,0.97);
  height: 64px;
  border-bottom: 1px solid rgba(201,150,42,0.22);
}


/* ============================================================
   2. DESKTOP NAV LINKS
============================================================ */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s;
  user-select: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  border-radius: 1px;
}
.nav-link:hover { color: var(--gold-lt); }
.nav-link:hover::after { transform: scaleX(1); }


/* ============================================================
   3. CENTER LOGO
============================================================ */
.logo-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.logo-badge:hover .logo-img {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6)) brightness(1.08);
  transform: scale(1.04);
}


/* ============================================================
   4. SERVICES DROPDOWN (desktop)
============================================================ */
.dropdown-wrap    { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 7px; }

.chevron {
  width: 7px; height: 7px;
  border-right: 1.8px solid rgba(255,255,255,0.6);
  border-bottom: 1.8px solid rgba(255,255,255,0.6);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s ease, border-color 0.25s;
  display: inline-block;
  flex-shrink: 0;
}
.dropdown-wrap:hover .chevron,
.dropdown-wrap.open  .chevron {
  transform: rotate(225deg) translateY(-1px);
  border-color: var(--gold);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(8,6,3,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,150,42,0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  min-width: 236px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.dropdown-wrap:hover .dropdown-menu,
.dropdown-wrap.open  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  position: relative;
}
.dropdown-menu a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background: rgba(201,150,42,0.08);
  color: var(--gold-lt);
  padding-left: 24px;
}
.dropdown-menu a:hover::before { opacity: 1; }


/* ============================================================
   5. HAMBURGER BUTTON
============================================================ */
.hamburger {
  /* Hidden on desktop — shown via media query below */
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(201,150,42,0.07);
  border: 1.5px solid rgba(201,150,42,0.22);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
  /* Sit above everything while overlay is open */
  z-index: 400;
  position: relative;
}
.hamburger:hover {
  background: rgba(201,150,42,0.15);
  border-color: rgba(201,150,42,0.45);
}
.hamburger span {
  display: block;
  border-radius: 2px;
  background: rgba(255,255,255,0.85);
  transition:
    transform  0.35s cubic-bezier(.23,1,.32,1),
    opacity    0.25s ease,
    width      0.3s  ease,
    background 0.25s ease;
}

.hamburger span:nth-child(1) { width: 24px; height: 1px; }
.hamburger span:nth-child(2) { width: 24px; height: 1px; } /* short middle bar */
.hamburger span:nth-child(3) { width: 24px; height: 1px; }

/* Animate → × when open */
.hamburger.open {
  background: rgba(201,150,42,0.18);
  border-color: rgba(201,150,42,0.55);
}
.hamburger.open span:nth-child(1) {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}


/* ============================================================
   6. DRAWER OVERLAY
============================================================ */
#drawerOverlay {
  display: none;         /* JS switches to block when drawer opens */
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;       /* clicking overlay closes drawer */
}
#drawerOverlay.open    { display: block; }
#drawerOverlay.visible { opacity: 1; }


/* ============================================================
   7. MOBILE DRAWER PANEL
============================================================ */
#mobileDrawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 300;
  width: min(320px, 85vw);

  /* Layout */
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;

  /* Visual */
  background: #0d0e0a;
  border-left: 1px solid rgba(201,150,42,0.18);
  box-shadow: -16px 0 60px rgba(0,0,0,0.7);

  /* Slide-in animation */
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.23,1,.32,1);
}
#mobileDrawer.open {
  transform: translateX(0);
}

/* Thin gold top accent line */
#mobileDrawer::before {
  content: '';
  display: block;
  width: 100%; height: 3px;
  flex-shrink: 0;
  background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-lt), var(--gold));
}


/* ============================================================
   8. DRAWER — TOP HEADER
============================================================ */
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px;
  border-bottom: 1px solid rgba(201,150,42,0.1);
  flex-shrink: 0;
}

.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-brand-name {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.drawer-brand-name span { color: var(--gold); }

.drawer-brand-sub {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* × close button */
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.drawer-close:hover {
  background: rgba(201,150,42,0.15);
  border-color: rgba(201,150,42,0.45);
  color: var(--gold-lt);
}


/* ============================================================
   9. DRAWER — NAV LINKS
============================================================ */
.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
}

/* Every main link row */
.d-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  cursor: pointer;
  transition:
    color      0.25s ease,
    background 0.25s ease,
    padding-left 0.22s ease;
}
.d-link:last-child { border-bottom: none; }

/* Gold left-edge bar on hover */
.d-link::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 55%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
  border-radius: 0 2px 2px 0;
  transition: transform 0.25s ease;
}
.d-link:hover::before,
.d-link.sub-open::before { transform: translateY(-50%) scaleY(1); }

.d-link:hover,
.d-link.sub-open {
  color: var(--gold-lt);
  background: rgba(201,150,42,0.05);
  padding-left: 26px;
}

/* Square icon badge */
.d-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(201,150,42,0.07);
  border: 1px solid rgba(201,150,42,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.d-link:hover .d-icon,
.d-link.sub-open .d-icon {
  background: rgba(201,150,42,0.18);
  border-color: rgba(201,150,42,0.4);
  color: var(--gold-lt);
}

.d-text { flex: 1; }

/* Right arrow ( → ) */
.d-arr {
  color: rgba(255,255,255,0.2);
  display: flex; align-items: center;
  transition: color 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.d-link:hover .d-arr {
  color: rgba(240,217,138,0.55);
  transform: translateX(4px);
}


/* ============================================================
   10. DRAWER — SERVICES ACCORDION
============================================================ */

/* Down caret on services toggle */
.d-caret {
  color: rgba(255,255,255,0.25);
  display: flex; align-items: center;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(.23,1,.32,1), color 0.25s;
}
.d-toggle.sub-open .d-caret {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Sub-items container — accordion */
.d-sub {
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: max-height 0.42s cubic-bezier(.23,1,.32,1);
}
.d-sub.open { max-height: 380px; }

/* Each sub-item */
.d-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 38px;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
}
.d-sub-link:last-child { border-bottom: none; }

/* Gold dot prefix */
.d-sub-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(201,150,42,0.3);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.d-sub-link:hover {
  color: var(--gold-lt);
  background: rgba(201,150,42,0.04);
  padding-left: 44px;
}
.d-sub-link:hover .d-sub-dot {
  background: var(--gold);
  transform: scale(1.5);
}


/* ============================================================
   11. DRAWER — FOOTER CONTACT STRIP
============================================================ */
.drawer-foot {
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(201,150,42,0.1);
  background: rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.drawer-foot-label {
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(201,150,42,0.65);
  margin-bottom: 14px;
}
.drawer-foot-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.drawer-foot-row:last-child { margin-bottom: 0; }
.drawer-foot-row:hover { color: var(--gold-lt); }
.drawer-foot-row i {
  color: var(--gold);
  font-size: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}


/* ============================================================
   12. STAGGER ENTRANCE ANIMATION
   Links slide in from the right when drawer opens.
============================================================ */
.d-link,
.d-sub-link {
  opacity: 0;
  transform: translateX(18px);
  /* Base transition keeps hover effects working */
  transition:
    color        0.25s ease,
    background   0.25s ease,
    padding-left 0.22s ease,
    opacity      0.34s ease,
    transform    0.34s ease;
}

/* When drawer has .open, animate items in */
#mobileDrawer.open .d-link,
#mobileDrawer.open .d-sub-link {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger each row by 55ms */
#mobileDrawer.open .d-link:nth-child(1)  { transition-delay: 0.06s; }
#mobileDrawer.open .d-link:nth-child(2)  { transition-delay: 0.11s; }
#mobileDrawer.open .d-link:nth-child(3)  { transition-delay: 0.16s; }
#mobileDrawer.open .d-link:nth-child(4)  { transition-delay: 0.21s; }
#mobileDrawer.open .d-link:nth-child(5)  { transition-delay: 0.26s; }
#mobileDrawer.open .d-link:nth-child(6)  { transition-delay: 0.31s; }

/* Sub-items stagger (shorter) */
#mobileDrawer.open .d-sub-link:nth-child(1) { transition-delay: 0.22s; }
#mobileDrawer.open .d-sub-link:nth-child(2) { transition-delay: 0.26s; }
#mobileDrawer.open .d-sub-link:nth-child(3) { transition-delay: 0.30s; }
#mobileDrawer.open .d-sub-link:nth-child(4) { transition-delay: 0.34s; }
#mobileDrawer.open .d-sub-link:nth-child(5) { transition-delay: 0.38s; }
#mobileDrawer.open .d-sub-link:nth-child(6) { transition-delay: 0.42s; }

/* Reset delays when closing (so re-open looks fresh) */
#mobileDrawer:not(.open) .d-link,
#mobileDrawer:not(.open) .d-sub-link {
  transition-delay: 0s !important;
}


/* ============================================================
   13. RESPONSIVE BREAKPOINT
   Below 900px: hide desktop links, show hamburger
============================================================ */
@media (max-width: 900px) {
  #navbar {
    padding: 0 18px;
    height: 58px;
  }
  #navbar.scrolled { height: 62px; }

  .nav-left,
  .nav-right { display: none; }

  .hamburger { display: flex; }

  /* Logo un-centers and sits left of hamburger */
  .logo-badge {
    position: static;
    transform: none;
    margin-right: auto;   /* pushes hamburger to far right */
  }
  .logo-img { height: 42px; }
}

/* ============================================================
   4. HERO SLIDER
============================================================ */
#hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

/* Individual slide */
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

/* Slide background with Ken Burns zoom */
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.slide.active .slide-bg { transform: scale(1); }

/* Dark gradient overlay */
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.50) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.55) 0%, transparent 40%);
}

/* Slide content wrapper */
.slide-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
  padding-top: 64px;
}

.slide-url a{
    color: #ffffff;
    font-size: 10px;
}

/* Text elements hidden until slide becomes active */
.slide-label,
.slide-url,
.slide-title,
.slide-cta { opacity: 0; transform: translateY(28px); }

.slide.active .slide-label { animation: fadeUp 0.65s ease 0.30s forwards; }
.slide.active .slide-url   { animation: fadeUp 0.65s ease 0.48s forwards; }
.slide.active .slide-title { animation: fadeUp 0.70s ease 0.64s forwards; }
.slide.active .slide-cta   { animation: fadeUp 0.65s ease 0.88s forwards; }
.slide.active .slide-divider { animation: scaleIn 0.5s ease 0.76s forwards; }

.slide-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: #f0d98a;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.slide-label::before {
  content: ''; display: block;
  width: 30px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.slide-label::after {
  content: ''; display: block;
  width: 30px; height: 1px;
  background: linear-gradient(to left, transparent, var(--gold));
}

.slide-url {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.slide-title {
  font-size: clamp(36px, 7.5vw, 60px);
  font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff;
  line-height: 1.02;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  max-width: 900px;
}
.slide-title .highlight { color: var(--gold-lt); }

/* Gold divider line */
.slide-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  border-radius: 1px;
  margin: 18px auto;
  opacity: 0;
  transform: scaleX(0);
}

/* CTA pill button */
.slide-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 8px;
  background: linear-gradient(135deg, #c9962a, #ffe2a3, #c9962a);
  background-size: 200% 100%;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px 13px 32px;
  border-radius: 50px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(201,150,42,0.5);
  transition: background-position 0.5s, box-shadow 0.3s, letter-spacing 0.3s, transform 0.25s;
}
.slide-cta:hover {
  background-position: 100% 0;
  box-shadow: 0 12px 40px rgba(201,150,42,0.75);
  letter-spacing: 0.28em;
  transform: translateY(-2px);
}
.cta-arrow {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.slide-cta:hover .cta-arrow { transform: translateX(5px); }
.cta-arrow svg {
  width: 12px; height: 12px;
  fill: none; stroke: #111;
  stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round;
}

/* Prev / Next arrow buttons */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 30;
  width: 50px; height: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; outline: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(201,150,42,0.12);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow svg {
  width: 14px; height: 14px; fill: none;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.3s;
}
.slider-arrow:hover svg { stroke: var(--gold-lt); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Slide counter — bottom right */
.slide-counter {
  position: absolute; bottom: 32px; right: 40px; z-index: 30;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.slide-counter .current {
  font-size: 22px; font-weight: 800;
  color: var(--gold-lt);
}

/* Progress bar — bottom edge */
.progress-bar-track {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 30;
  height: 3px;
  background: rgba(255,255,255,0.08);
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  width: 0%;
  transition: width linear;
}

/* Dot navigation */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 30; display: flex; gap: 10px; align-items: center;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, width 0.3s;
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Scroll hint — bottom left */
.scroll-hint {
  position: absolute; bottom: 28px; left: 40px; z-index: 30;
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint .line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.9s ease-in-out infinite;
}
.scroll-hint span {
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  writing-mode: vertical-rl;
}


/* ============================================================
   5. ABOUT SECTION
============================================================ */
.bg-cream { background: var(--cream); }

/* Italic justified body text */
.about-body-text {
  font-style: italic;
  text-align: justify;
  hyphens: auto;
  line-height: 1.95;
}

/* Gold accent bar */
.gold-bar {
  display: inline-block;
  width: 52px; height: 3px;
  background: linear-gradient(to right, #c9962a, #f0d98a);
  border-radius: 2px;
}

/* Continue Reading link */
.cta-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: #111; text-decoration: none;
  position: relative;
  transition: color .25s, gap .3s;
}
.cta-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s ease;
}
.cta-link:hover { color: var(--gold); gap: 20px; }
.cta-link:hover::after { width: 100%; }
.cta-arrow { font-size: 18px; transition: transform .3s; }
.cta-link:hover .cta-arrow { transform: translateX(6px); }

/* Vertical divider between About left and right columns */
.section-vline {
  width: 1px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
  margin: 48px 0;
}

/* Stat badges */
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(201,150,42,0.18);
  border-radius: 8px; text-align: center;
  flex: 1; min-width: 80px;
}
.stat-item .stat-num   { font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-item .stat-label {
  font-size: 8px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #666; margin-top: 4px;
}

/* CEO / Founder card */
.founder-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.founder-img-wrap {
  position: relative; overflow: hidden;
  height: 220px;
}
.founder-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .65s ease;
  display: block;
}
.founder-card:hover .founder-img-wrap img { transform: scale(1.06); }

/* Gold CEO tag on image */
.founder-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--gold);
  color: #fff; font-size: 8.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
}

.founder-body {
  padding: 20px 20px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.founder-name {
  font-size: 15px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  color: #111; line-height: 1.15; margin-bottom: 3px;
}
.founder-role {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.founder-divider {
  width: 32px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  border-radius: 1px; margin-bottom: 12px;
}
.founder-desc {
  font-size: 12.5px; font-weight: 400;
  color: #555; line-height: 1.7;
  flex: 1; margin-bottom: 18px;
}

/* View Profile button */
.profile-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold-lt); color: #111;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; padding: 10px 20px;
  border-radius: 50px; align-self: flex-start;
  box-shadow: 0 3px 12px rgba(201,150,42,.25);
  transition: background .25s, box-shadow .25s, transform .25s, gap .25s;
}
.profile-btn:hover {
  background: var(--gold); color: #fff;
  box-shadow: 0 8px 24px rgba(201,150,42,.5);
  transform: translateY(-2px); gap: 13px;
}
.profile-btn .arr { font-size: 13px; transition: transform .25s; }
.profile-btn:hover .arr { transform: translateX(4px); }

/* Single horizontal CEO card layout */
.founder-card-single { flex-direction: row; align-items: stretch; border-radius: 12px; }
.founder-img-single  { width: 220px; flex-shrink: 0; height: auto; }
.founder-body-single {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 28px 26px; gap: 14px;
}
.founder-name-lg { font-size: 20px; }
.founder-desc-lg { font-size: 13px; line-height: 1.75; }

/* Industry badges */
.ceo-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.ceo-badge {
  font-size: 9px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201,150,42,.12);
  border: 1px solid rgba(201,150,42,.25);
  padding: 4px 12px; border-radius: 50px;
}


/* ============================================================
   6. SERVICES SECTION
============================================================ */
.svc-card {
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid rgba(201,150,42,0.08);
  transition: border-color .4s;
}
.svc-card:hover { border-color: rgba(201,150,42,0.35); }

/* Background photo with zoom on hover */
.svc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.svc-card:hover .svc-bg { transform: scale(1.09); }

/* Dark-to-gold overlay */
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,16,15,0.25)  0%,
    rgba(12,16,15,0.55) 38%,
    rgba(12,16,15,0.88) 70%,
    rgba(10,10,8,0.97)  100%
  );
  transition: background .5s ease;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(
    180deg,
    rgba(12,16,15,0.10)  0%,
    rgba(120,80,8,0.50)  40%,
    rgba(160,100,5,0.88) 70%,
    rgba(100,65,5,0.97)  100%
  );
}

/* Gold shimmer sweep across top */
.svc-shine {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.svc-card:hover .svc-shine { transform: translateX(100%); }

/* Card text content */
.svc-content { position: relative; z-index: 2; padding: 28px 26px 30px; }

/* Gold icon box */
.svc-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 14px;
  background: rgba(201,150,42,0.10);
  border: 1px solid rgba(201,150,42,0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .35s, border-color .35s, transform .35s, box-shadow .35s;
}
.svc-card:hover .svc-icon-wrap {
  background: rgba(201,150,42,0.20);
  border-color: rgba(240,217,138,0.55);
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(201,150,42,0.25);
}
.svc-icon-wrap svg { width: 34px; height: 34px; transition: filter .3s; }
.svc-card:hover .svc-icon-wrap svg {
  filter: drop-shadow(0 0 6px rgba(240,217,138,0.7));
}

/* Card number badge */
.svc-num {
  position: absolute; top: 20px; right: 22px; z-index: 2;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  color: rgb(12,16,15);
  background: #cdb675;
  padding: 8px; border-radius: 50px;
  transition: color .35s;
}
.svc-card:hover .svc-num { color: rgba(240,217,138,0.65); }

.svc-title {
  font-size: clamp(16px,1.8vw,21px);
  font-weight: 900; letter-spacing: .05em;
  text-transform: uppercase; color: #fff;
  line-height: 1.15; margin-bottom: 11px;
  transition: color .3s;
}
.svc-card:hover .svc-title { color: var(--gold-lt); }

/* Expanding gold underline */
.svc-underline {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 1px; margin-bottom: 13px;
  transition: width .4s ease;
}
.svc-card:hover .svc-underline { width: 54px; }

.svc-desc {
  font-size: 12.5px; font-weight: 400;
  font-style: italic; line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  transition: color .3s;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.9); }

/* Discover More link */
.svc-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,217,138,0.8);
  text-decoration: none; position: relative;
  transition: color .25s, gap .3s;
}
.svc-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold-lt);
  transition: width .35s ease;
}
.svc-link:hover { color: #fff; gap: 16px; }
.svc-link:hover::after { width: 100%; }

.svc-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid rgba(240,217,138,0.4);
  font-size: 13px; line-height: 1;
  transition: transform .3s, border-color .3s, background .3s;
}
.svc-link:hover .svc-arrow {
  transform: translateX(5px);
  border-color: var(--gold-lt);
  background: rgba(240,217,138,0.12);
}


/* ============================================================
   7. VISION / MISSION / VALUES + STATS
============================================================ */

/* Arch-shaped card */
.arch-card {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 44px 28px 32px;
  border-radius: 140px 140px 16px 16px;
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: visible;
}
.arch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Card color variants */
.arch-yellow { background: #f0d98a; border-bottom: 4px solid #ffffff; }
.arch-white  { background: #ffffff; border-bottom: 4px solid #a7ffbc; }
.arch-mint   { background: #d4edda; border-bottom: 4px solid #ffe793; }

/* Sparkle ✦ top right corner */
.arch-star {
  position: absolute; top: -8px; right: 18px;
  font-size: 20px; line-height: 1;
  transition: transform .4s ease;
}
.arch-card:hover .arch-star { transform: rotate(20deg) scale(1.2); }

/* Circle icon container */
.arch-icon {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.45);
  transition: border-color .3s, background .3s, transform .35s;
}
.arch-card:hover .arch-icon {
  border-color: rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.7);
  transform: scale(1.06);
}
.arch-icon svg {
  width: 30px; height: 30px;
  stroke: #1a1a1a; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.arch-title {
  font-size: 17px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  color: #111; margin-bottom: 12px; line-height: 1.1;
}
.arch-divider {
  width: 36px; height: 2px;
  background: rgba(0,0,0,0.2); border-radius: 1px;
  margin: 0 auto 14px;
  transition: width .35s ease;
}
.arch-card:hover .arch-divider { width: 54px; }
.arch-desc { font-size: 13.5px; font-weight: 400; color: #333; line-height: 1.7; }

/* Stats row */
.stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900; color: #fff;
  letter-spacing: .02em; line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.89);
  align-self: stretch; margin: 0 10px;
}
.count-up { display: inline-block; }


/* ============================================================
   8. FOOTER
============================================================ */

/* Footer nav links with animated gold dash */
.footer-link {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .25s, gap .25s;
  position: relative;
}
.footer-link::before {
  content: '';
  width: 5px; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
  flex-shrink: 0;
}
.footer-link:hover { color: var(--gold-lt); gap: 10px; }
.footer-link:hover::before { width: 10px; }

/* Social icon circle buttons */
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(201,150,42,0.28);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: border-color .3s, background .3s, color .3s, transform .3s;
  flex-shrink: 0;
}
.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,150,42,0.14);
  color: var(--gold-lt);
  transform: translateY(-3px);
}
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* Newsletter input + button */
.newsletter-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,150,42,0.22);
  border-radius: 4px 0 0 4px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 500;
  color: #fff; outline: none; width: 100%;
  transition: border-color .3s, background .3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.newsletter-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: none; border-radius: 0 4px 4px 0;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: #111; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: opacity .25s, transform .25s;
}
.newsletter-btn:hover { opacity: .88; transform: scale(1.03); }

/* Brand card pills */
.brand-card {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(201,150,42,0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  text-decoration: none; cursor: pointer;
  transition: border-color .3s, background .3s;
}
.brand-card:hover {
  border-color: rgba(201,150,42,0.4);
  background: rgba(201,150,42,0.07);
}
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  flex-shrink: 0;
}
.brand-card span {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color .3s;
}
.brand-card:hover span { color: var(--gold-lt); }

/* Bottom bar links */
.bottom-link {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.3); text-decoration: none;
  transition: color .25s;
}
.bottom-link:hover { color: var(--gold-lt); }

/* Back to top button */
.back-top {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(201,150,42,0.3);
  background: rgba(201,150,42,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s;
}
.back-top:hover {
  background: rgba(201,150,42,0.2);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.back-top svg {
  width: 14px; height: 14px;
  stroke: var(--gold-lt); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}


/* ============================================================
   9. SCROLL REVEAL UTILITIES
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .75s ease, transform .75s ease;
}

/* Active state — triggered by JS adding .vis or .visible */
.reveal.vis,        .reveal.visible,
.reveal-left.vis,   .reveal-left.visible,
.reveal-right.vis,  .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delay helpers */
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .23s; }
.d4 { transition-delay: .10s; }
.d5 { transition-delay: .19s; }
.d6 { transition-delay: .28s; }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .32s; }
.delay-4 { transition-delay: .44s; }


/* ============================================================
   10. KEYFRAMES
============================================================ */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  0%   { opacity: 0; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(1); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 1; transform-origin: top; }
  50%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}


/* ============================================================
   11. RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .slider-arrow.next { right: 16px; }
}

@media (max-width: 768px) {
  /* Navbar */
  #navbar { padding: 0 20px; }
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .logo-badge { position: static; transform: none; }
  .logo-img { height: 60px; }

  /* Hero */
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .scroll-hint  { display: none; }
  .slide-counter { display: none; }

  /* CEO card — stack on mobile */
  .founder-card-single { flex-direction: column; }
  .founder-img-single  { width: 100%; height: 240px; }
}

 /* ══════════════════════════════════════════════════════
       HERO SECTION
    ══════════════════════════════════════════════════════ */
    .contact-hero {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      padding-bottom: 64px;
    }

    /* Background photo */
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('assest/images/section-bg.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1.04);
      transition: transform 10s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }

    /* Gradient overlay */
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to right,  rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.6) 100%),
        linear-gradient(to top,    rgba(12,16,15,1) 0%, transparent 50%);
    }

    /* Gold diagonal accent shape */
    .hero-accent {
      position: absolute;
      bottom: -2px; right: 0;
      width: 45%;
      height: 100%;
      clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
      background: linear-gradient(135deg, rgba(201,150,42,0.08) 0%, rgba(201,150,42,0.03) 100%);
      border-left: 1px solid rgba(201,150,42,0.15);
      pointer-events: none;
    }

    /* Gold vertical line decoration */
    .hero-vline {
      position: absolute;
      top: 40px; left: 48px;
      width: 2px;
      height: 0;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: growLine 1.2s ease 0.3s forwards;
    }
    @keyframes growLine {
      to { height: 120px; }
    }

    /* Breadcrumb */
    .hero-breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 9px; font-weight: 700;
      letter-spacing: .28em; text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 16px;
    }
    .hero-breadcrumb a { color:rgba(255,255,255,0.35); text-decoration:none; transition:color .2s; }
    .hero-breadcrumb a:hover { color: var(--gold-lt); }
    .hero-breadcrumb .sep { color: var(--gold); font-size: 10px; }
    .hero-breadcrumb .current { color: var(--gold-lt); }

    /* Hero title */
    .hero-title {
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #fff;
      line-height: 1.0;
      text-shadow: 0 4px 40px rgba(0,0,0,0.4);
    }
    .hero-title span { color: var(--gold-lt); }

    /* Hero subtitle */
    .hero-sub {
      font-size: 13px; font-weight: 400;
      font-style: italic;
      color: rgba(255,255,255,0.5);
      margin-top: 14px;
      max-width: 460px;
      line-height: 1.75;
    }

    /* ══════════════════════════════════════════════════════
       CONTACT SECTION LAYOUT
    ══════════════════════════════════════════════════════ */
    .contact-section {
      position: relative;
      background: var(--dark);
      padding: 0 0 80px;
    }

    /* Pulls up from hero bottom */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      margin-top: -40px;
    }

    /* ══════════════════════════════════════════════════════
       LEFT — INFO PANEL
    ══════════════════════════════════════════════════════ */
    .info-panel {
      background: #111309;
      border: 1px solid rgba(201,150,42,0.14);
      border-right: none;
      border-radius: 16px 0 0 16px;
      padding: 52px 40px;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      overflow: hidden;
    }

    /* Subtle gold noise texture overlay */
    .info-panel::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,150,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 100% 100%, rgba(201,150,42,0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Section tag */
    .panel-tag {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 28px;
    }
    .panel-tag-bar {
      width: 36px; height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-lt));
      border-radius: 1px;
    }
    .panel-tag span {
      font-size: 9px; font-weight: 700;
      letter-spacing: .32em; text-transform: uppercase;
      color: var(--gold);
    }

    .panel-title {
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .panel-title span { color: var(--gold-lt); }

    .panel-desc {
      font-size: 13px; font-weight: 400;
      font-style: italic;
      color: rgba(255,255,255,0.42);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    /* Gold divider */
    .panel-divider {
      width: 100%; height: 1px;
      background: linear-gradient(to right, rgba(201,150,42,0.3), transparent);
      margin-bottom: 36px;
    }

    /* Contact info item */
    .c-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }
    .c-item:last-of-type { margin-bottom: 0; }

    .c-icon-box {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(201,150,42,0.09);
      border: 1px solid rgba(201,150,42,0.22);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .3s, border-color .3s, transform .3s;
    }
    .c-item:hover .c-icon-box {
      background: rgba(201,150,42,0.18);
      border-color: rgba(240,217,138,0.4);
      transform: translateY(-2px);
    }
    .c-icon-box i {
      font-size: 15px;
      color: var(--gold);
      transition: color .3s;
    }
    .c-item:hover .c-icon-box i { color: var(--gold-lt); }

    .c-info-label {
      font-size: 8.5px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .c-info-val {
      font-size: 12.5px; font-weight: 500;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      transition: color .25s;
    }
    .c-item:hover .c-info-val { color: rgba(255,255,255,0.85); }
    a.c-info-val { text-decoration: none; display: block; }

    /* Social row */
    .social-row {
      display: flex; gap: 10px;
      flex-wrap: wrap;
    }
    .soc-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(201,150,42,0.22);
      background: rgba(201,150,42,0.06);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      text-decoration: none; font-size: 14px;
      transition: border-color .3s, background .3s, color .3s, transform .3s;
    }
    .soc-btn:hover {
      border-color: var(--gold);
      background: rgba(201,150,42,0.16);
      color: var(--gold-lt);
      transform: translateY(-3px);
    }

    /* ══════════════════════════════════════════════════════
       RIGHT — FORM PANEL
    ══════════════════════════════════════════════════════ */
    .form-panel {
      background: var(--cream);
      border-radius: 0 16px 16px 0;
      padding: 52px 44px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative arc top-right */
    .form-panel::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 260px; height: 260px;
      border-radius: 50%;
      border: 40px solid rgba(201,150,42,0.07);
      pointer-events: none;
    }

    /* Form section tag */
    .form-tag {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 10px;
    }
    .form-tag-bar {
      width: 36px; height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-lt));
      border-radius: 1px;
    }
    .form-tag span {
      font-size: 9px; font-weight: 700;
      letter-spacing: .32em; text-transform: uppercase;
      color: var(--gold);
    }

    .form-title {
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #111;
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .form-title span { color: var(--gold); }

    .form-sub {
      font-size: 12.5px; font-style: italic;
      color: #666;
      margin-bottom: 34px;
      line-height: 1.65;
    }

    /* ── Input / Select / Textarea ─────────────────────── */
    .input-group {
      display: flex; flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }
    .input-group label {
      font-size: 9px; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: #555;
    }

    .f-input,
    .f-select,
    .f-textarea {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 500;
      color: #222;
      background: #fff;
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 13px 16px;
      outline: none;
      width: 100%;
      transition: border-color .3s, box-shadow .3s, background .3s;
    }
    .f-input::placeholder,
    .f-textarea::placeholder { color: rgba(0,0,0,0.25); font-style: italic; }
    .f-input:focus,
    .f-select:focus,
    .f-textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,150,42,0.12);
      background: #fffef9;
    }

    /* Custom select arrow */
    .f-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9962a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      cursor: pointer;
      color: #444;
    }
    .f-select option { color: #222; background: #fff; }

    .f-textarea {
      resize: none;
      min-height: 120px;
      line-height: 1.7;
    }

    /* Two-col row */
    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    /* ── Submit button ──────────────────────────────────── */
    .submit-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt), var(--gold));
      background-size: 250% 100%;
      background-position: 0% 0%;
      border: none; border-radius: 50px;
      padding: 15px 32px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: .22em; text-transform: uppercase;
      color: #111;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(201,150,42,0.4);
      transition: background-position .5s ease, box-shadow .3s, transform .25s, gap .3s;
      margin-top: 8px;
    }
    .submit-btn:hover {
      background-position: 100% 0%;
      box-shadow: 0 14px 44px rgba(201,150,42,0.6);
      transform: translateY(-2px);
      gap: 20px;
    }
    .submit-btn .btn-arrow {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: rgba(0,0,0,0.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: transform .3s;
    }
    .submit-btn:hover .btn-arrow { transform: translateX(4px); }
    .submit-btn .btn-arrow svg {
      width: 12px; height: 12px;
      stroke: #111; fill: none;
      stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round;
    }

    /* ── Success message ────────────────────────────────── */
    .success-msg {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
      padding: 32px 0 16px;
    }
    .success-msg.show { display: flex; }
    .success-check {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(201,150,42,0.12);
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      animation: popIn .5s cubic-bezier(.23,1,.32,1) forwards;
    }
    @keyframes popIn {
      0%   { transform: scale(0); opacity:0; }
      70%  { transform: scale(1.12); opacity:1; }
      100% { transform: scale(1); }
    }
    .success-check svg { width:24px;height:24px;stroke:var(--gold);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round; }
    .success-msg h4 { font-size:18px;font-weight:900;text-transform:uppercase;color:#111;letter-spacing:.05em; }
    .success-msg p  { font-size:12.5px;color:#666;font-style:italic;line-height:1.7; }

    /* ══════════════════════════════════════════════════════
       MAP STRIP
    ══════════════════════════════════════════════════════ */
    .map-section {
      max-width: 1200px;
      margin: 48px auto 0;
      padding: 0 32px;
    }
    .map-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .map-label {
      display: flex; align-items: center; gap: 10px;
    }
    .map-label-bar {
      width: 32px; height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-lt));
      border-radius: 1px;
    }
    .map-label span {
      font-size: 9px; font-weight: 700;
      letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold);
    }
    .map-title {
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #fff;
    }
    .map-title span { color: var(--gold-lt); }

    /* Map frame */
    .map-frame {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(201,150,42,0.18);
      height: 340px;
    }
    .map-frame iframe {
      width: 100%; height: 100%;
      border: none; display: block;
      filter: grayscale(30%) contrast(1.05);
    }
    /* Gold top accent bar */
    .map-frame::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-lt));
      z-index: 2;
    }

    /* Address pill on map */
    .map-pill {
      position: absolute;
      bottom: 20px; left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      background: rgba(12,16,15,0.92);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(201,150,42,0.3);
      border-radius: 50px;
      padding: 10px 22px;
      display: flex; align-items: center; gap: 10px;
      white-space: nowrap;
    }
    .map-pill i { color: var(--gold); font-size: 13px; }
    .map-pill span {
      font-size: 11px; font-weight: 600;
      letter-spacing: .08em;
      color: rgba(255,255,255,0.75);
    }

    /* ══════════════════════════════════════════════════════
       WORKING HOURS STRIP
    ══════════════════════════════════════════════════════ */
    .hours-section {
      max-width: 1200px;
      margin: 48px auto 0;
      padding: 0 32px;
    }
    .hours-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .hours-card {
      background: #111309;
      border: 1px solid rgba(201,150,42,0.1);
      padding: 28px 30px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, background .3s;
    }
    .hours-card:first-child { border-radius: 16px 0 0 16px; }
    .hours-card:last-child  { border-radius: 0 16px 16px 0; }
    .hours-card:hover {
      border-color: rgba(201,150,42,0.3);
      background: #151409;
    }
    /* Gold accent top line on hover */
    .hours-card::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-lt));
      transform: scaleX(0);
      transition: transform .4s ease;
      transform-origin: left;
    }
    .hours-card:hover::after { transform: scaleX(1); }

    .hours-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(201,150,42,0.08);
      border: 1px solid rgba(201,150,42,0.18);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      font-size: 15px; color: var(--gold);
      transition: background .3s, border-color .3s;
    }
    .hours-card:hover .hours-icon {
      background: rgba(201,150,42,0.16);
      border-color: rgba(201,150,42,0.38);
    }
    .hours-day {
      font-size: 10px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .hours-time {
      font-size: 18px; font-weight: 800;
      color: #fff; letter-spacing: .02em;
    }
    .hours-note {
      font-size: 11px; font-style: italic;
      color: rgba(255,255,255,0.3);
      margin-top: 4px;
    }

    /* ══════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; padding: 0 16px; }
      .info-panel   { border-radius: 16px 16px 0 0; border-right: 1px solid rgba(201,150,42,0.14); border-bottom: none; padding: 36px 28px; }
      .form-panel   { border-radius: 0 0 16px 16px; padding: 36px 24px; }
      .form-row-2   { grid-template-columns: 1fr; gap: 0; }
      .map-section, .hours-section { padding: 0 16px; }
      .hours-grid   { grid-template-columns: 1fr; }
      .hours-card:first-child { border-radius: 16px 16px 0 0; }
      .hours-card:last-child  { border-radius: 0 0 16px 16px; }
      .contact-hero { min-height: 320px; padding-bottom: 48px; }
      .hero-vline   { left: 20px; }
    }

    @media (max-width: 600px) {
      .info-panel { padding: 28px 20px; }
      .form-panel { padding: 28px 18px; }
      .hero-accent { display: none; }
    }

    .placeholder-error-color::placeholder {
      color: #1d1d1d!important;
      font-size: 10px!important;
      letter-spacing: 1px!important;
    }


    #customToast {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: Arial, sans-serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

#customToast.show {
  opacity: 1;
  transform: translateY(0);
}

#customToast.success {
  background: #28a745;
}

#customToast.error {
  background: #dc3545;
}