@charset "UTF-8";

/* ── VARIABLES ── */
:root {
  --navy:      #0d1b3e;
  --navy-deep: #07102a;
  --red:       #e02020;
  --red-dark:  #b51818;
  --red-glow:  rgba(224,32,32,0.18);
  --white:     #ffffff;
  --off-white: #f7f8fc;
  --light-grey:#eef0f6;
  --text:      #1a1f3a;
  --text-muted:#6b7490;
  --border:    #e2e5f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --radius:    8px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --pre-h:     40px;
  --main-h:    72px;
  --total-h:   112px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-grey); }
::-webkit-scrollbar-thumb { background: #f69d0b; border-radius: 3px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── PRE-HEADER ── */
.pre-header {
  background: var(--navy);
  height: var(--pre-h);
  display: flex; align-items: center;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.pre-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.pre-header a, .pre-header span {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.pre-header a:hover { color: #fff; }
.pre-header .ph-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.pre-contact { display: flex; align-items: center; gap: 1.25rem; }
.pre-social { display: flex; align-items: center; gap: 1rem; }
.pre-social a { font-size: 0.75rem; }
.ph-icon { width: 16px; height: 16px; fill: #f69d0b; flex-shrink: 0; }

/* ── MAIN HEADER ── */
.main-header {
  background: var(--white);
  height: var(--main-h);
  position: fixed; top: var(--pre-h); left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-txt { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; line-height: 1; }
.logo-sub  { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; color: #f69d0b; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* NAV */
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  color: var(--text); padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: all 0.2s; position: relative; white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: #f69d0b; border-radius: 2px;
  transition: left 0.25s, right 0.25s;
}
.nav a:hover, .nav a.active { color: #f69d0b; background: rgba(224,32,32,0.06); }
.nav a:hover::after, .nav a.active::after { left: 12px; right: 12px; }
.nav-cta {
  background: #f69d0b !important; color: white !important;
  border-radius: 6px !important; padding: 0.5rem 1.25rem !important;
  box-shadow: 0 2px 12px var(--red-glow) !important; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 18px var(--red-glow) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); display: block; transition: all 0.3s; border-radius: 2px; }
.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 nav drawer */
.mobile-nav {
  display: none; position: fixed; top: var(--total-h); left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid #f69d0b;
  padding: 1.5rem 2rem; z-index: 999;
  box-shadow: var(--shadow-lg); flex-direction: column; gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--text); padding: 0.75rem 1rem; border-radius: 6px; transition: all 0.2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: #f69d0b; background: rgba(224,32,32,0.06); }
.mobile-nav .nav-cta { background: #f69d0b !important; color: white !important; margin-top: 0.5rem; text-align: center; }

/* ── PAGE OFFSET ── */
.page-body { margin-top: var(--total-h); }

/* ── HERO SLIDER ── */
.hero { position: relative; overflow: hidden; height: calc(100vh - var(--total-h)); min-height: 560px; }
.slides { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }

.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(7,16,42,0.82) 0%, rgba(7,16,42,0.55) 55%, rgba(7,16,42,0.3) 100%); }

.slide-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.slide-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(224,32,32,0.18); border: 1px solid rgba(224,32,32,0.4); border-radius: 100px; padding: 0.3rem 1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #ff8080; margin-bottom: 1.5rem; }
.slide-badge .blink { width: 6px; height: 6px; border-radius: 50%; background: #f69d0b; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.slide h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; max-width: 700px; }
.slide h1 em { font-style: normal; color: #f69d0b; }
.slide p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 540px; margin-bottom: 2rem; line-height: 1.75; }
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider controls */
.slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all 0.3s; }
.sdot.active { background: #f69d0b; width: 24px; border-radius: 4px; }
.sarrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; transition: all 0.3s; }
.sarrow:hover { background: #f69d0b; border-color: #f69d0b; }
.sarrow.prev { left: 2rem; }
.sarrow.next { right: 2rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em; padding: 0.8rem 1.8rem; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; transition: all 0.25s; white-space: nowrap; }
.btn-red { background: #f69d0b; color: white; box-shadow: 0 2px 14px var(--red-glow); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--red-glow); }
.btn-outline-w { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-w:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-r { background: transparent; color: #f69d0b; border: 2px solid #f69d0b; }
.btn-outline-r:hover { background: #f69d0b; color: white; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 2rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #f69d0b; }
.stat-lbl { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-white { background: var(--white); }
.section-offwhite { background: var(--off-white); }
.section-navy { background: #000; color: white; }
.container { max-width: 1200px; margin: 0 auto; }

.section-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(224,32,32,0.08); border: 1px solid rgba(224,32,32,0.2); border-radius: 100px; padding: 0.25rem 0.9rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #f69d0b; margin-bottom: 0.85rem; }
.section-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #f69d0b; }

.section-title { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-title .accent { color: #f69d0b; }
.section-title-w { color: white; }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }
.section-desc-w { color: rgba(255,255,255,0.72); }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #f69d0b; transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon { width: 52px; height: 52px; background: rgba(224,32,32,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; transition: all 0.3s; }
.card:hover .card-icon { background: rgba(224,32,32,0.14); }
.card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── SERVICE CARDS ── */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; background: var(--light-grey); overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.service-tag { display: inline-block; background: rgba(224,32,32,0.08); border-radius: 4px; padding: 0.2rem 0.6rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f69d0b; margin-bottom: 0.75rem; }

/* ── VENDORS ── */
.vendors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.vendor-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; display: flex; align-items: center; gap: 0.85rem; transition: all 0.25s; }
.vendor-card:hover { border-color: #f69d0b; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vendor-logo { width: 36px; height: 36px; border-radius: 8px; background: var(--light-grey); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; overflow: hidden; }
.vendor-logo img { width: 100%; height: 100%; object-fit: contain; }
.vendor-name { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.vendor-cat { font-size: 0.68rem; color: var(--text-muted); }

/* Scrolling client strip */
.clients-strip { overflow: hidden; padding: 1.5rem 0; -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.clients-inner { display: flex; gap: 1.5rem; align-items: center; animation: marquee 35s linear infinite; width: max-content; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-chip { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 0.5rem 1.25rem; white-space: nowrap; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); transition: all 0.25s; }
.client-chip:hover { border-color: #f69d0b; color: #f69d0b; }

/* ── GALLERY ── */
.gallery-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gf-btn { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.45rem 1.1rem; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); cursor: pointer; transition: all 0.25s; }
.gf-btn.active, .gf-btn:hover { background: #f69d0b; border-color: #f69d0b; color: white; }

.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img, .gallery-item video { width: 100%; display: block; transition: transform 0.5s; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,42,0.8), transparent); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: white; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; background: rgba(224,32,32,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; transition: all 0.3s; }
.gallery-item:hover .play-icon { background: #f69d0b; transform: translate(-50%,-50%) scale(1.1); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-content img, .lb-content video { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lb-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: white; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.lb-nav:hover { background: #f69d0b; }
.lb-nav.prev { left: -56px; }
.lb-nav.next { right: -56px; }
.lb-caption { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.75rem; }

/* ── ABOUT ── */
.about-img { position: relative; border-radius: 12px; overflow: hidden; }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-badge { position: absolute; bottom: -1rem; right: -1rem; background: #f69d0b; color: white; padding: 1.25rem 1.5rem; border-radius: 10px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 0.72rem; font-weight: 600; opacity: 0.9; letter-spacing: 0.08em; text-transform: uppercase; }
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; color: var(--text); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li .check { width: 20px; height: 20px; background: rgba(224,32,32,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feature-list li .check svg { width: 10px; height: 10px; fill: #f69d0b; }

/* ── CONTACT ── */
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; transition: all 0.25s; }
.contact-card:hover { border-color: #f69d0b; box-shadow: var(--shadow-md); }
.cc-icon { width: 44px; height: 44px; background: rgba(224,32,32,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #f69d0b; }
.cc-lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.cc-val { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.cc-val a { color: inherit; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 6px; padding: 0.75rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: border-color 0.25s, box-shadow 0.25s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #f69d0b; box-shadow: 0 0 0 3px rgba(224,32,32,0.08); background: white; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { color: #f69d0b; font-size: 0.78rem; margin-top: 0.25rem; display: none; }
.form-error.show { display: block; }
.alert { padding: 1.25rem 1.5rem; border-radius: 10px; font-size: 0.92rem; margin-bottom: 1.25rem; display: none; font-weight: 500; line-height: 1.6; }
.alert.success {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  color: #14532d;
  box-shadow: 0 4px 20px rgba(34,197,94,0.15);
}
.alert.error {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fef2f2;
  border: 2px solid #f87171;
  color: #7f1d1d;
  box-shadow: 0 4px 20px rgba(239,68,68,0.15);
}
.form-error { display: block; font-size: 0.78rem; color: #f69d0b; margin-top: 0.3rem; font-weight: 600; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M0 60L60 0' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 100%; background: linear-gradient(225deg, rgba(224,32,32,0.15), transparent); clip-path: polygon(100% 0, 100% 100%, 30% 100%, 0 0); }
.page-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-hero .breadcrumb a { color: #f69d0b; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; position: relative; z-index: 1; }
.page-hero h1 span { color: #f69d0b; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0.75rem auto 0; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { background: #000; color: white; padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 280px; }
.footer-address { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #f69d0b; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-contact-row { display: flex; gap: 0.6rem; margin-bottom: 0.6rem; font-size: 0.85rem; align-items: flex-start; }
.fcr-lbl { color: #f69d0b; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; min-width: 52px; margin-top: 2px; }
.fcr-val a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.fcr-val a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 0.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all 0.25s; }
.footer-social a:hover { background: #f69d0b; color: white; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; }
.wa-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; transition: all 0.3s; text-decoration: none; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--navy); color: white; font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.8rem; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy); }
.wa-btn:hover ~ .wa-tooltip { opacity: 1; }

/* ── ADMIN ── */
.admin-body { background: var(--off-white); min-height: 100vh; font-family: var(--font-body); }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy); }
.admin-login-box { background: white; border-radius: 12px; padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.admin-login-box h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.admin-login-box p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }
.admin-sidebar { width: 240px; background: var(--navy); min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 100; padding: 0 0 2rem; }
.admin-sidebar-logo { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar-logo span { font-family: var(--font-head); font-size: 0.9rem; font-weight: 800; color: white; }
.admin-nav { padding: 1rem 0; }
.admin-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.admin-nav a:hover, .admin-nav a.active { color: white; background: rgba(255,255,255,0.07); border-right: 3px solid #f69d0b; }
.admin-nav a svg { width: 18px; height: 18px; opacity: 0.7; }
.admin-content { margin-left: 240px; padding: 2rem; }
.admin-topbar { background: white; border-bottom: 1px solid var(--border); padding: 1rem 2rem; margin: -2rem -2rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h1 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.admin-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.upload-zone { border: 2px dashed var(--border); border-radius: var(--radius); padding: 3rem 2rem; text-align: center; cursor: pointer; transition: all 0.25s; }
.upload-zone:hover { border-color: #f69d0b; background: rgba(224,32,32,0.02); }
.upload-zone input[type=file] { display: none; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { background: var(--off-white); padding: 0.65rem 1rem; text-align: left; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.admin-table tr:hover td { background: var(--off-white); }
.admin-thumb { width: 56px; height: 40px; object-fit: cover; border-radius: 4px; background: var(--light-grey); }
.badge-img { display: inline-flex; align-items: center; gap: 4px; background: rgba(13,27,62,0.08); border-radius: 4px; padding: 0.2rem 0.5rem; font-size: 0.72rem; font-weight: 700; color: var(--navy); }
.badge-vid { background: rgba(224,32,32,0.08); color: #f69d0b; }
.btn-del { background: none; border: 1px solid rgba(224,32,32,0.3); color: #f69d0b; border-radius: 4px; padding: 0.3rem 0.7rem; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-del:hover { background: #f69d0b; color: white; }
.stat-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.stat-card .icon { width: 48px; height: 48px; background: rgba(224,32,32,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.stat-card .num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-card .lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Red strip divider */
.red-strip { height: 4px; background: linear-gradient(90deg, #f69d0b, var(--red-dark)); }

/* Image placeholder */
.img-ph { background: linear-gradient(135deg, var(--light-grey), #d8dce8); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 2.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --pre-h: 36px; --main-h: 64px; --total-h: 100px; }
  .pre-header { height: var(--pre-h); }
  .pre-social { display: none; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { columns: 2; }
  .about-badge { right: 0; bottom: -0.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .grid-4 { grid-template-columns: 1fr; }
  .vendors-grid { grid-template-columns: 1fr 1fr; }
  .slide h1 { font-size: 1.8rem; }
}
