/* =============================================
   ADVT. GALLERY — styles.css
   Light, Clean, Corporate Theme
   Brand: Orange #E84B1A / Yellow #F5A623
   ============================================= */

/* === VARIABLES === */
:root {
  --orange:       #E84B1A;
  --orange-dark:  #C43A12;
  --orange-light: #FFF0EB;
  --yellow:       #F5A623;
  --yellow-light: #FFF8EC;

  --bg:           #FFFFFF;
  --bg-cream:     #FFF8F2;
  --bg-light:     #FFF4EE;

  --text:         #1A1A1A;
  --text-mid:     #444444;
  --text-light:   #777777;

  --border:       #E8E0D8;
  --border-light: #F0EAE4;

  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Outfit', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);

  --transition: all 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* === UTILITIES === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.bg-cream { background: var(--bg-cream); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.text-orange { color: var(--orange); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,75,26,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-1px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  margin-left: 12px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  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); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--bg-cream);
  padding-top: 68px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 64px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.eyebrow-bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-desc strong { color: var(--orange); font-weight: 700; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Card */
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hc-logo {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.hc-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}

.hc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 3px;
}

.hc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.hc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.hc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
}

.hc-item i {
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
  background: var(--orange);
  padding: 22px 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 4px 40px;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.stat span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-desc {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-desc strong { color: var(--orange); font-weight: 700; }

.check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.check-item i {
  color: var(--orange);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* About right cards */
.about-right {
  position: relative;
}

.about-boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abox {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.abox:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.abox-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 1.1rem;
}

.abox h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.abox p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

.est-badge {
  position: absolute;
  bottom: -16px;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-card:hover {
  border-color: #E8D8CF;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.svc-card:hover .svc-icon-wrap {
  background: var(--orange);
  color: #fff;
}

.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.svc-card p {
  font-size: 0.865rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tags li {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid #F5C8B8;
  padding: 3px 10px;
  border-radius: 100px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.why-letter {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.why-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.why-card p {
  font-size: 0.845rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--orange);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1A0F08;
  color: #C0A898;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2D1E14;
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer .logo-mark {
  background: var(--orange);
}

.footer .logo-main {
  color: #fff;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #8A7060;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 0.875rem;
  color: #8A7060;
}

.footer-col ul li a {
  color: #8A7060;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.fp-person {
  margin-bottom: 20px;
}

.fp-person strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.fp-person em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: #665040;
  margin-bottom: 6px;
}

.fp-person a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--yellow);
  transition: color 0.2s;
}

.fp-person a:hover { color: #fff; }
.fp-person a i { font-size: 0.8rem; }

.fp-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #8A7060;
  word-break: break-all;
  transition: color 0.2s;
}

.fp-email:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #5A4030;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #25D366;
  transition: opacity 0.2s;
}

.footer-wa-link:hover { opacity: 0.8; }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-card { max-width: 500px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .est-badge { position: static; display: inline-block; margin-top: 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  .stats-row { gap: 0; }
  .stat { padding: 4px 20px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Navbar mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 68px;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 900;
    border-top: 1px solid var(--border);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Hero */
  .hero-inner { gap: 40px; padding-top: 48px; padding-bottom: 48px; }
  .hero-content h1 { font-size: 2rem; }
  .hc-list { grid-template-columns: 1fr; }

  /* Stats */
  .stats-row { flex-direction: column; gap: 14px; padding: 8px 0; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Buttons */
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; }
  .wa-float { bottom: 18px; right: 18px; }
}