/* =========================
   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);
}



/* =========================
   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;
  }
}


/* ================= HERO ================= */
.hero-section {
  .hero-section {
  width: 100%;
  padding: 100px 0 40px;
}
}

/* SLIDER CONTAINER FULL CONTROL */
.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

/* SLIDER TRACK */
.slider {
  display: flex;
  height: 100%;
}

/* EACH SLIDE */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* 🔥 THIS IS THE KEY FIX */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills container perfectly */
  object-position: center;
  display: block;        /* removes tiny gaps */

   transition: transform 6s ease;
}

/* active zoom */
.slide.active img {
 
    transform: scale(1.08);
}

/* ================= TEXT OVERLAY ================= */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    transparent
  );

  z-index: 5;
  animation: fadeUp 1s ease;
}

.slide-content h2 {
  color: #b8962e;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

/* ================= DOTS ================= */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-content h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 250px;
  }

  .slide-content h2 {
    font-size: 1rem;
  }
}



/* ===== TMB BANNER – LUXURY STYLE ===== */
.tmb-banner {
  max-width: 1300px;
  margin: 80px auto;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #020617);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
}

/* subtle gold glow */
.tmb-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,215,0,0.08), transparent 60%);
  pointer-events: none;
}

/* GRID */
.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* PANELS */
.panel {
  padding: 3rem 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
}

/* LEFT PANEL */
.promise-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-right: 1px solid rgba(255,255,255,0.05);
}

/* RIGHT PANEL */
.partner-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255,215,0,0.1);
  color: #FFD700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* ICON */
.panel-icon {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 10px;
}

/* HEADINGS */
.panel h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* DESCRIPTION */
.description {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #e2e8f0;
  font-size: 0.9rem;
}

.check-list i {
  color: #FFD700;
}

/* PARTNER POINTS */
.partner-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: 0.3s ease;
}

/* hover lift */
.point:hover {
  transform: translateX(5px);
}

.point-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,215,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 1rem;
}

.point-text h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 3px;
}

.point-text p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* QUOTE */
.micro-quote {
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: #cbd5f5;
  display: inline-block;
}

/* HOVER EFFECT FOR WHOLE CARD */
.tmb-banner:hover {
  transform: translateY(-5px);
  transition: 0.4s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

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

  .promise-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .panel {
    padding: 2rem 1.5rem;
  }

  .panel h2 {
    font-size: 1.5rem;
  }
}


/* =========================
   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;
  }
}

/* ===== CTA SECTION – LUXURY STYLE ===== */
.cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle glow background */
.cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.cta h2 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TEXT */
.cta p {
  color: #cbd5f5;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

/* BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta .btn {
  background: #FFD700;
  color: #1e1e2a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255,215,0,0.2);
}

/* hover */
.cta .btn:hover {
  transform: translateY(-4px);
  background: #e6c200;
  box-shadow: 0 15px 35px rgba(255,215,0,0.35);
}

/* CALL BUTTON */
.btn-call {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.btn-call:hover {
  background: #FFD700;
  color: #1e1e2a;
}

/* ICON */
.btn-call i {
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta {
    padding: 70px 20px;
  }

  .cta h2 {
    font-size: 1.9rem;
  }

  .cta p {
    font-size: 0.95rem;
  }
}

