/* ═══════════════════════════════════════════
   N.A. Enterprises — Global Styles
   Theme: Dark Blue (#0D1B2A) | Gold (#C9A84C) | White
════════════════════════════════════════════ */

:root {
  --dark-blue: #0D1B2A;
  --navy:      #122338;
  --gold:      #C9A84C;
  --gold-lt:   #E2C97E;
  --gold-dk:   #A07830;
  --white:     #FFFFFF;
  --off-white: #F8F6F1;
  --light-grey:#F2F4F7;
  --text-body: #4A5568;
  --text-dark: #1A202C;
  --border:    #E2E8F0;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Bebas Neue', sans-serif;
  --transition:   0.3s ease;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 48px rgba(0,0,0,.16);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.25; }

/* ── Utility Classes ── */
.text-gold      { color: var(--gold); }
.bg-dark-blue   { background-color: var(--dark-blue); }
.bg-navy        { background-color: var(--navy); }
.bg-gold        { background-color: var(--gold); }
.bg-light-grey  { background-color: var(--light-grey); }
.z-1            { z-index: 1; }
.section-pad    { padding: 90px 0; }

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-gold {
  background: var(--gold);
  color: var(--dark-blue);
  font-weight: 700;
  border: 2px solid var(--gold);
  border-radius: 4px;
  letter-spacing: .4px;
  transition: all var(--transition);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}
.btn-dark-blue {
  background: var(--dark-blue);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--dark-blue);
  border-radius: 4px;
  transition: all var(--transition);
}
.btn-dark-blue:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-dark-blue {
  background: transparent;
  color: var(--dark-blue);
  font-weight: 600;
  border: 2px solid var(--dark-blue);
  border-radius: 4px;
  transition: all var(--transition);
}
.btn-outline-dark-blue:hover {
  background: var(--dark-blue);
  color: #fff;
}

/* ═══════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */
.topbar {
  background: var(--dark-blue);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.3);
}
.topbar-link { color: rgba(255,255,255,.75); }
.topbar-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#mainNav {
  background: var(--dark-blue);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  border-bottom: 2px solid var(--gold);
  transition: all .3s;
}
#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.brand-emblem {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--dark-blue);
  letter-spacing: -2px;
  flex-shrink: 0;
}
.brand-emblem.sm { width: 36px; height: 36px; font-size: 1.1rem; }
.brand-emblem .gold { color: var(--dark-blue); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.brand-tagline {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all var(--transition);
  letter-spacing: .3px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold); }
.navbar-toggler { border: none; background: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a5c 40%, #0a1520 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content:'';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.85) 0%, transparent 70%);
}
.min-vh-section { min-height: 85vh; padding: 80px 0 60px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.gold-text { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-stats { gap: 32px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ═══════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark-blue);
  padding: 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marquee-inner .dot { color: var(--dark-blue); opacity: .5; padding: 0 4px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   SECTION TYPOGRAPHY
════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--gold-lt); }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 580px;
}

/* ═══════════════════════════════════════════
   ABOUT IMAGE GRID
════════════════════════════════════════════ */
.about-img-grid {
  position: relative;
  height: 380px;
}
.img-block {
  border-radius: 12px;
  position: absolute;
}
.img-block--main {
  width: 80%; height: 100%;
  left: 0; top: 0;
}
.img-block--small {
  width: 45%; height: 45%;
  right: 0; bottom: 0;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
.feature-pill {
  background: #f0f4f8;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════════ */
.prod-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 30px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.prod-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.prod-card:hover .prod-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--dark-blue);
}
.prod-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.prod-desc { font-size: .88rem; color: var(--text-body); margin-bottom: 16px; flex-grow: 1; }
.prod-link { font-size: .85rem; font-weight: 600; color: var(--gold); letter-spacing: .3px; }
.prod-link i { transition: transform var(--transition); }
.prod-card:hover .prod-link i { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════ */
.why-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a5c 100%);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.why-card:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-card i {
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.why-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }

/* ═══════════════════════════════════════════
   GALLERY THUMBNAILS
════════════════════════════════════════════ */
.gal-thumb {
  border-radius: 10px;
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.gal-thumb:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gal-thumb--lg { aspect-ratio: 4/3; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: .92rem; color: var(--text-body); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.client-info { display: flex; align-items: center; gap: 12px; }
.client-avatar { font-size: 2.2rem; color: var(--dark-blue); line-height: 1; }
.client-info strong { display: block; font-size: .9rem; color: var(--text-dark); }
.client-info small { font-size: .78rem; color: var(--text-body); }

/* ═══════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 100%);
  padding: 64px 0;
}
.cta-title { font-size: clamp(1.6rem,3vw,2.2rem); color: var(--dark-blue); margin-bottom: 8px; font-weight: 700; }
.cta-sub { color: rgba(13,27,42,.75); font-size: 1rem; margin: 0; }

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.main-footer {
  background: var(--dark-blue);
  padding: 70px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-about { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact i { color: var(--gold); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.5; }
.footer-contact a:hover { color: var(--gold); }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--dark-blue); }
.social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,.25);
  margin-top: 50px;
  padding: 18px 0;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .8rem; }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════════ */
.float-btn {
  position: fixed;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 9999;
  transition: all var(--transition);
}
.whatsapp-float {
  background: #25D366;
  color: #fff;
  bottom: 90px; right: 20px;
}
.call-float {
  background: var(--gold);
  color: var(--dark-blue);
  bottom: 30px; right: 20px;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,.3); color: inherit; }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a5c 100%);
  padding: 80px 0 60px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
}
.page-hero-title { font-size: clamp(2rem,4vw,3rem); color: #fff; font-weight: 700; }
.page-hero-sub { color: rgba(255,255,255,.7); font-size: 1rem; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════
   PRODUCT PAGE CARDS (detailed)
════════════════════════════════════════════ */
.product-detail-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: #fff;
  height: 100%;
  display: flex; flex-direction: column;
}
.product-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold); }
.product-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-img-placeholder i { font-size: 4rem; color: var(--gold); }
.product-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card-title { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.product-card-desc { font-size: .88rem; color: var(--text-body); flex-grow: 1; margin-bottom: 18px; }
.product-card-specs { list-style: none; padding: 0; margin: 0 0 18px; }
.product-card-specs li { font-size: .82rem; color: var(--text-body); padding: 4px 0; border-bottom: 1px dashed #eee; }
.product-card-specs li:last-child { border: none; }
.product-card-specs li i { color: var(--gold); margin-right: 6px; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.vision-card {
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  border-top: 3px solid var(--gold);
}
.vision-card i { font-size: 2rem; color: var(--gold); margin-bottom: 16px; display: block; }
.vision-card h4 { color: #fff; margin-bottom: 12px; }
.vision-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.objective-item {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.obj-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--dark-blue);
  font-weight: 800;
  font-size: .9rem;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.obj-text h5 { font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.obj-text p { font-size: .88rem; color: var(--text-body); margin: 0; }

/* ═══════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════════ */
.gallery-filter { gap: 10px; flex-wrap: wrap; }
.filter-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 7px 20px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark-blue);
  color: var(--gold);
  border-color: var(--dark-blue);
}
.gallery-grid { columns: 3; gap: 16px; }
.gallery-grid .gal-item { break-inside: avoid; margin-bottom: 16px; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-grid .gal-item:nth-child(3n+2) { margin-top: 24px; }
@media(max-width:768px){ .gallery-grid { columns: 2; } }
@media(max-width:480px){ .gallery-grid { columns: 1; } }

/* ═══════════════════════════════════════════
   BLOG PAGE
════════════════════════════════════════════ */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-img i { font-size: 3.5rem; color: var(--gold); }
.blog-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold-dk);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: .87rem; color: var(--text-body); flex-grow: 1; margin-bottom: 16px; }
.blog-meta { font-size: .78rem; color: #999; margin-bottom: 14px; }
.blog-meta i { color: var(--gold); margin-right: 4px; }
.blog-read { font-size: .85rem; font-weight: 600; color: var(--gold); }
.blog-read i { transition: transform var(--transition); }
.blog-card:hover .blog-read i { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  border-radius: 12px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}
.contact-card h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--text-body); margin: 0; }
.contact-card a:hover { color: var(--gold); }
.inquiry-form {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-label { font-weight: 500; font-size: .88rem; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1px solid #dde3eb;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .9rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  outline: none;
}
.map-placeholder {
  background: linear-gradient(135deg, #e8ecf0, #d4dae2);
  border-radius: 12px;
  height: 300px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 10px;
}
.map-placeholder i { font-size: 3rem; color: var(--dark-blue); opacity: .5; }
.map-placeholder p { color: var(--text-body); font-size: .9rem; margin: 0; }

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 991px) {
  .section-pad { padding: 65px 0; }
  .hero-title { font-size: 2.6rem; }
  .about-img-grid { height: 280px; }
  .inquiry-form { padding: 28px 20px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-section { min-height: 80vh; }
  .min-vh-section { padding: 70px 0 50px; }
  .cta-section { padding: 48px 0; }
  .hero-stats { gap: 20px; }
  .about-img-grid { height: 240px; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }