/* =========================
   ROOT (GOLD THEME)
========================= */
:root {
  --gold: #d4af37;
  --gold-dark: #b8962e;
  --gold-light: #f5e6a7;

  --primary-dark: #0f172a;
  --secondary-dark: #1e293b;

  --text-dark: #1e293b;
  --white: #ffffff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: #f8fafc;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo-image {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.logo-text {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

/* NAV */
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: var(--gold);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 10px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* MOBILE */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--gold);
}

/* =========================
   HERO
========================= */
/* =========================
   HERO BACKGROUND ZOOM
========================= */

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/tmbconsult.jpg') center/cover no-repeat;
  z-index: -2;
  transform: scale(1);
  animation: zoomHero 20s ease-in-out infinite alternate;
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: -1;
}

/* Zoom animation */
@keyframes zoomHero {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/* Hero text */
.hero-content h1 {
  font-size: 3rem;
}

.highlight {
  color: var(--gold);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-content h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 8px;
}

.stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.stat h4 {
  color: var(--gold);
  font-size: 22px;
}

.services-hero {
  padding: 100px 20px;
  background: #0c0b0b;
  color: #fff;
}

/* HEADER AREA */
.hero-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.hero-badge span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(196,154,27,0.15);
  color: gold;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* TITLES */
.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: gold;
}

.section-subtitle {
  color: #cbd5f5;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* SWIPER */
.swiper {
  padding: 40px 0;
}

/* CARD */
.service-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 24px;
  padding: 40px;
  min-height: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* hover glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,215,0,0.08), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* CONTENT LAYOUT */
.slide-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.info-section {
  flex: 1;
  text-align: left;
}

/* TITLE */
.service-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: gold;
  display: flex;
  align-items: center;
}

/* DESCRIPTION */
.service-description {
  color: #cbd5f5;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  background: gold;
  color: #1e1e2a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #e6c200;
  transform: translateY(-3px);
}

/* BIG ICON */
.service-icon-large {
  font-size: 4rem;
  color: rgba(255,255,255,0.08);
}

/* SWIPER NAV */
.swiper-button-next,
.swiper-button-prev {
  color: gold;
}

.swiper-pagination-bullet {
  background: #666;
}

.swiper-pagination-bullet-active {
  background: gold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .info-section {
    text-align: center;
  }

  .service-icon-large {
    font-size: 3rem;
  }
}
/* =========================
   CTA
========================= */
.cta {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 70px 0;
  border-top: 2px solid var(--gold);
}

.cta h2 {
  margin-bottom: 10px;
}

.cta-buttons {
  margin-top: 20px;
}

.btn-call {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 50px 0;
}

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

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
}

.social-links a {
  margin-right: 10px;
  color: var(--gold);
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

/* =========================
   ANIMATIONS
========================= */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

