
:root {
  --bg:          #f7f4ef;
  --ink:         #181714;
  --green:       #1a5c40;
  --green-light: #e6f2ec;
  --green-mid:   #2d7a57;
  --gold:        #c0892a;
  --gold-light:  #fdf3de;
  --muted:       #6b6560;
  --border:      #ddd8cf;
  --white:       #ffffff;
  --card-bg:     #ffffff;
  --radius:      5px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 10px rgba(24,23,20,0.07);
  --shadow-md:   0 8px 32px rgba(24,23,20,0.11);
  --shadow-lg:   0 20px 60px rgba(24,23,20,0.15);
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; overflow-x: hidden; padding-top: 64px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 99px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(247,244,239,0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 6%;
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { width: 180px; height: 60px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 2rem; align-items: center; margin: 0 auto; }
.nav-links > li { display: flex; align-items: center; height: 64px; position: relative; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color var(--transition); position: relative; display: flex; align-items: center; height: 100%; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.nav-btn-ghost { font-size: 0.82rem; font-weight: 600; color: var(--ink); padding: 0.48rem 1.1rem; border-radius: var(--radius); border: 1.5px solid var(--border); background: transparent; cursor: pointer; transition: border-color var(--transition), color var(--transition); }
.nav-btn-ghost:hover { border-color: var(--green); color: var(--green); }
.nav-btn { background: var(--ink); color: var(--white); border: none; padding: 0.52rem 1.2rem; font-size: 0.82rem; font-weight: 600; cursor: pointer; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; transition: background var(--transition), transform var(--transition); }
.nav-btn:hover { background: var(--green); transform: translateY(-1px); }



/* Cart Icon */
.cart-icon-nav {
  position: relative;
  color: var(--muted);
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: color var(--transition);
}
.cart-icon-nav:hover { color: var(--green); }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* User Dropdown */
.user-dropdown {
  position: relative;
}
.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
  border: 1px solid var(--border);
}
.user-dropdown:hover .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--ink);
  transition: background var(--transition);
}
.user-dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(247,244,239,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 16px 6% 24px; animation: slideDown 0.25s ease; }
.mobile-menu.active { display: flex; }
.mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--border); font-weight: 500; color: var(--muted); font-size: 0.92rem; }
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu .nav-btn { margin-top: 14px; text-align: center; width: 100%; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* HERO */
.hero {
  min-height: 70vh; display: flex; align-items: center; padding: 70px 6% 50px;
  background: radial-gradient(ellipse 55% 55% at 85% 50%, rgba(26,92,64,0.09) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 8% 40%, rgba(192,137,42,0.07) 0%, transparent 65%), var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,92,64,0.13) 1px, transparent 1px);
  background-size: 38px 38px; animation: gridMove 25s linear infinite; opacity: 0.6; pointer-events: none;
}
@keyframes gridMove { from { background-position: 0 0; } to { background-position: 38px 38px; } }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; align-items: center; width: 100%;
}
.hero-content { animation: fadeUp 0.65s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--green-light); color: var(--green); border: 1px solid rgba(26,92,64,0.2); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.32rem 0.9rem; margin-bottom: 1.6rem; border-radius: 2px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.09; letter-spacing: -0.025em; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub { margin: 1.5rem 0 2.8rem; font-size: 1rem; color: var(--muted); max-width: 460px; font-weight: 300; line-height: 1.8; }
.hero-search { display: flex; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); max-width: 540px; }
.hs-field { display: flex; align-items: center; gap: 9px; padding: 13px 16px; flex: 1; border-right: 1px solid var(--border); }
.hs-field svg { flex-shrink: 0; opacity: 0.45; }
.hs-field input { border: none; outline: none; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--ink); width: 100%; }
.hs-field input::placeholder { color: var(--muted); }
.hs-btn { background: var(--green); color: var(--white); border: none; padding: 13px 22px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem; white-space: nowrap; transition: background var(--transition); letter-spacing: 0.02em; }
.hs-btn:hover { background: var(--green-mid); }
.hero-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; align-items: center; }
.chip-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.chip { font-size: 0.72rem; color: var(--muted); background: var(--white); border: 1px solid var(--border); padding: 0.22rem 0.7rem; border-radius: 999px; cursor: pointer; transition: border-color var(--transition), color var(--transition); }
.chip:hover { border-color: var(--green); color: var(--green); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; animation: fadeUp 0.65s 0.18s ease both; opacity: 0; animation-fill-mode: forwards; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1; color: var(--ink); }
.stat-label { font-size: 0.76rem; color: var(--muted); margin-top: 3px; font-weight: 400; }
.stat-divider { width: 1px; background: var(--border); }

/* Services Quick Section */
/* ===== AUTOSCROLL SLIDERS ===== */
.slider-wrap { display: flex; justify-content: center; align-items: center; }
.v-slider { height: 420px; width: 300px; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-lg); flex-shrink: 0; }
.about-sliders { display: flex; gap: 14px; justify-content: center; align-items: center; }
.about-sliders .v-slider { width: 160px; height: 400px; }
.about-sliders .v-slider img { height: 480px; }
.v-slider img { height: 420px; width: 100%; object-fit: cover; flex-shrink: 0; display: block; }
.track-up { display: flex; flex-direction: column; animation: scrollUp 30s linear infinite; }
.track-down { display: flex; flex-direction: column; animation: scrollDown 30s linear infinite; }
@keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

/* ABOUT */
#about { padding: 110px 6% 80px; background: var(--ink); color: var(--white); overflow: hidden; position: relative; }
#about::before { content: ''; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(26,92,64,0.18), transparent 70%); pointer-events: none; }
#about::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(192,137,42,0.1), transparent 70%); pointer-events: none; }
.about-inner { position: relative; z-index: 1; }
.about-top { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: 80px; }
.about-text .sl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.12; margin-bottom: 1.2rem; }
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p { color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.85; font-size: 0.97rem; }
.about-text p + p { margin-top: 14px; }
.about-cta { margin-top: 2.2rem; display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--ink); padding: 0.82rem 1.8rem; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); font-family: 'DM Sans', sans-serif; }
.about-cta:hover { background: #d4a040; transform: translateY(-2px); }
.about-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ac { padding: 32px 28px; border-radius: var(--radius); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.ac:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(26,92,64,0.4); }
.ac-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.ac-icon.g { background: rgba(26,92,64,0.25); }
.ac-icon.a { background: rgba(192,137,42,0.2); }
.ac-icon.w { background: rgba(255,255,255,0.08); }
.ac h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ac p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }

/* CONTACT */
#contact { padding: 110px 6%; background: var(--ink); color: var(--white); }

/* ===== SERVICES SECTION (NEW - Replaces Jobs) ===== */
#services {
  padding: 100px 6%;
  background: var(--bg);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .sl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.services-header h2 em {
  font-style: italic;
  color: var(--green);
}
.services-header > p {
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.97rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,92,64,0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon.green { background: var(--green-light); color: var(--green); }
.service-icon.gold { background: var(--gold-light); color: var(--gold); }
.service-icon.dark { background: var(--ink); color: var(--gold); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.service-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 15px;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.service-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.service-btn i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.service-btn:hover i {
  transform: translateX(3px);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 70px; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info .sl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; line-height: 1.12; margin-bottom: 1rem; }
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p { color: rgba(255,255,255,0.42); font-weight: 300; margin-bottom: 2.5rem; font-size: 0.97rem; }
.cinfo-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.5rem; }
.cinfo-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; border-radius: var(--radius); flex-shrink: 0; }
.cinfo-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.3); font-weight: 600; }
.cinfo-val { font-size: 0.88rem; font-weight: 500; margin-top: 2px; color: rgba(255,255,255,0.85); }
.cform-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 40px 36px; }
.cform { display: flex; flex-direction: column; gap: 18px; }
.cform label { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: white; font-weight: 600; display: block; margin-bottom: 5px; }
.cform input, .cform textarea, .cform select { width: 100%; border: 1px solid rgba(255,255,255,0.15); color: white; background: rgba(255,255,255,0.05); padding: 0.8rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; border-radius: var(--radius); outline: none; transition: border-color var(--transition); }
.cform input:focus, .cform textarea:focus { border-color: var(--gold); }
.cform textarea { resize: vertical; min-height: 120px; }
.cform .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-btn { background: var(--gold); color: var(--ink); border: none; padding: 0.9rem 2rem; font-weight: 700; font-size: 0.9rem; cursor: pointer; border-radius: var(--radius); transition: background var(--transition), transform var(--transition); font-family: 'DM Sans', sans-serif; letter-spacing: 0.02em; align-self: flex-start; }
.cform-btn:hover { background: #d4a040; transform: translateY(-1px); }
select option { color: black; }
.success-msg { display: none; padding: 2.5rem; text-align: center; background: rgba(26,92,64,0.15); border: 1px solid rgba(26,92,64,0.3); border-radius: var(--radius); }
.success-msg .tick { font-size: 2.5rem; margin-bottom: 10px; }
.success-msg h3 { font-family: 'Playfair Display', serif; color: #7dd3b0; font-size: 1.3rem; margin-bottom: 6px; }
.success-msg p { color: rgba(255,255,255,0.4); font-size: 0.88rem; }

/* FOOTER */
footer { background: #0e0d0b; color: rgba(255,255,255,0.3); padding: 2.5rem 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--white); }
.footer-logo span { color: var(--green); }
footer p { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.social-icon { display: flex; justify-content: center; align-items: center; }
.social-icon a { gap: 1px; width: 60px; }
.social-icon a:hover { color: var(--gold); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.on { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .slider-wrap { order: -1; }
  .about-top { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cform .cf-row { grid-template-columns: 1fr; }
  .cform-box { padding: 28px 22px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .search-bar { flex-direction: column; }
  .search-bar input, .search-bar select { border-right: none; border-bottom: 1px solid var(--border); }
  .jobs-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .services-grid-quick { grid-template-columns: 1fr; }
}


/* ===== SERVICES DROPDOWN (Mega Menu) ===== */
.nav-item-dropdown { position: relative; height: 64px; display: flex; align-items: center; }
.nav-item-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; height: 100%; }
.nav-item-dropdown > a i { font-size: 0.7rem; transition: transform var(--transition); }
.nav-item-dropdown:hover > a i { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 35px;
  min-width: 900px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 400;
  transition: all var(--transition);
  display: block;
  padding: 4px 0;
}
.mega-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
  border-left: 2px solid var(--gold);
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--ink);
}

/* ===== AUTOSCROLL SLIDERS ===== */
.slider-wrap { display: flex; justify-content: center; align-items: center; }
.v-slider { height: 420px; width: 300px; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-lg); flex-shrink: 0; }
.about-sliders { display: flex; gap: 14px; justify-content: center; align-items: center; }
.about-sliders .v-slider { width: 160px; height: 400px; }
.about-sliders .v-slider img { height: 480px; }
.v-slider img { height: 420px; width: 100%; object-fit: cover; flex-shrink: 0; display: block; }
.track-up { display: flex; flex-direction: column; animation: scrollUp 30s linear infinite; }
.track-down { display: flex; flex-direction: column; animation: scrollDown 30s linear infinite; }
@keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }


/* FOOTER */
footer { background: black; color: rgba(255,255,255,0.55); font-family: 'DM Sans', sans-serif; }
.footer-social-bar { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 18px 6%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-social-bar {
  width: 100%;
}
.footer-social-bar p { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-socials { display: flex; gap: 10px; align-items: right; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.95rem; text-decoration: none; transition: color var(--transition), background var(--transition), transform var(--transition); }
.footer-socials a:hover { color: var(--gold); background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.footer-socials a:hover { color: var(--gold); transform: translateY(-2px); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 52px 6% 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #ffffff; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 900; color: #ffffff; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.85; font-weight: 300; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; font-weight: 400; transition: color var(--transition), padding-left var(--transition); display: inline-block; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item .fc-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; font-weight: 400; transition: color var(--transition); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { padding: 22px 6%; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.4); font-weight: 400; }

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .slider-wrap { order: -1; }
  .about-top { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cform .cf-row { grid-template-columns: 1fr; }
  .cform-box { padding: 28px 22px; }
  .about-sliders .v-slider { width: 130px; height: 320px; }
  .about-sliders .v-slider img { height: 320px; }
  .mega-menu { min-width: 600px; grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right .nav-btn-ghost { display: none; }
  .hamburger { display: flex; }
  .search-bar { flex-direction: column; }
  .search-bar input, .search-bar select { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stats { gap: 1.5rem; }
  .v-slider { width: 260px; height: 340px; }
  .v-slider img { height: 340px; }
  .about-sliders .v-slider { width: 110px; height: 280px; }
  .about-sliders .v-slider img { height: 280px; }
  .mega-menu { display: none; }
  .nav-item-dropdown > a i { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
}