/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000000;
  --dark: #0D0D0D;
  --gold: #C9A84C;
  --gold-light: #e4c06e;
  --white: #FFFFFF;
  --gray: #888888;
  --card-bg: #111111;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-pad { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); }
.section-header p { color: var(--gray); margin-top: 12px; font-size: 1.05rem; }

.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 14px auto;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-gold-sm {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.btn-gold-sm:hover { background: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: var(--black);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(201, 168, 76, 0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: sepia(0.4) saturate(3) hue-rotate(-8deg) brightness(1.1);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.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 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slides-wrapper { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}
.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}
.slide-content h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.slide-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-weight: 300;
}

.slide-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: var(--gold); }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(-100%);
  transition: transform 0.4s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-gold-sm { background: var(--black); color: var(--gold); }
.sticky-cta .btn-gold-sm:hover { background: var(--dark); }

/* ===== SERVICES ===== */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}
.card-img-wrap { height: 200px; overflow: hidden; }
.card-img-wrap img { transition: transform 0.4s; }
.service-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-body { padding: 24px; }
.card-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.why-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.card-body h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.card-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 14px; }

.hover-list {
  border-top: 1px solid #2a2a2a;
  padding-top: 14px;
  display: grid;
  gap: 6px;
}
.hover-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding-left: 14px;
  position: relative;
}
.hover-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== ABOUT ===== */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-real-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 2px solid var(--gold);
  display: block;
}

.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.about-text .gold-line { margin: 0 0 24px; }
.about-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 16px; }
.reg-no { font-size: 0.85rem; color: var(--gold); opacity: 0.8; }

.stat-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #222;
}
.stat { text-align: center; }
.stat .counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
}
.stat span { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); }
.stat p { font-size: 0.8rem; color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== WHY US ===== */
.why-us { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-card {
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.footer-legal-links { margin-top: 16px; display: flex; gap: 8px; align-items: center; }
.footer-legal-links a { color: var(--gray); font-size: 0.82rem; transition: color 0.3s; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links span { color: var(--gray); font-size: 0.82rem; }
.gold-bar { width: 40px; height: 3px; background: var(--gold); margin-bottom: 16px; }
.why-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--white); }
.why-card p { color: var(--gray); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #060606; overflow: hidden; }
.testimonials .section-header .gold-line { margin: 14px auto 0; }

.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
  margin-top: 40px;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  min-width: 340px;
  flex: 0 0 340px;
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  padding: 36px 30px;
  scroll-snap-align: start;
  border-top: 3px solid var(--gold);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.testi-card p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; }
.testi-card span { color: var(--gold); font-size: 0.9rem; font-weight: 600; }

/* ===== CONTACT ===== */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form h2, .contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.contact-form .gold-line, .contact-info .gold-line { margin: 14px 0 28px; }

.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0D0D0D;
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form select option { background: #0D0D0D; }
.contact-form textarea { resize: vertical; }
.contact-form .btn-gold { width: 100%; font-size: 1.1rem; padding: 16px; }

.info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; }
.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-list a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.info-list a:hover { color: var(--gold); }
.info-list span:last-child { color: rgba(255,255,255,0.75); line-height: 1.6; }

.map-placeholder { margin-top: 10px; border: 1px solid #2a2a2a; overflow: hidden; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid #1e1e1e; padding: 70px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: sepia(0.4) saturate(3) hue-rotate(-8deg) brightness(1.1);
}
.footer-tagline { color: var(--gray); line-height: 1.7; font-size: 0.9rem; margin-bottom: 12px; }
.psira-badge { font-size: 0.78rem; color: var(--gold); opacity: 0.7; }

.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-services a:hover { color: var(--gold); }

.footer-contact p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 6px; }
.footer-contact a { color: var(--gray); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 20px;
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.powered-by a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.powered-by a:hover { opacity: 0.75; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px; left: 30px;
  z-index: 1000;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(201,168,76,0.5);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); box-shadow: 0 6px 26px rgba(201,168,76,0.7); }

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s;
    border-left: 1px solid #1e1e1e;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-real-img { height: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-counters { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .testi-card { min-width: 280px; flex: 0 0 280px; }

  .sticky-cta { flex-direction: column; gap: 8px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .slide-content h1 { font-size: 2rem; }
  .stat-counters { grid-template-columns: repeat(2, 1fr); }
}
