:root {
  --gold: #D4AF37;
}

body {
  margin:0;
  background:#000;
  color:#fff;
  font-family:'Poppins',sans-serif;
}

/* HEADER */
.main-header {
  display:flex;
  justify-content:space-between;
  padding:15px 40px;
}

.nav-menu a {
  color:#fff;
  margin-left:20px;
}
.nav-menu a:hover {
  color:var(--gold);
}

/* HERO */
.hero {
  height:80vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero h1 {
  color:var(--gold);
}

/* LIVE STRIP */
.live-strip {
  background:var(--gold);
  color:#000;
  text-align:center;
  padding:10px;
}

/* FOOTER */
.footer {
  background:#000;
  padding:40px;
}
.footer h3 {
  color:var(--gold);
}
.footer {
  background: #000;
  padding: 40px;
  border-top: 1px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-box {
  width: 30%;
  min-width: 220px;
}

.footer-logo {
  height: 40px;
  filter: brightness(2);
  margin-bottom: 10px;
}

.footer h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.footer p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #222;
  color: #777;
  font-size: 13px;
}

@media(max-width:768px){
  .footer-container {
    flex-direction: column;
  }

  .footer-box {
    width: 100%;
  }
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
              url('/images/dubai-bg.webp') center/cover;
  padding: 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 15px;
}

.hero p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  font-weight: bold;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.hero-stats {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #aaa;
  font-size: 14px;
}

.price-bar {
  background: var(--gold);
  color: #000;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  font-weight: bold;
}

/* ===== TRUST SECTION ===== */
.trust {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;

  padding: 70px 20px;
  background: #111;
  text-align: center;
}

/* Each Box */
.trust-box {
  flex: 1;
  min-width: 220px;
  padding: 25px;
  border-radius: 10px;

  background: #0f0f0f;
  border: 1px solid #222;

  transition: 0.3s ease;
}

/* Hover Effect */
.trust-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

/* ICON */
.trust-icon {
  font-size: 60px;   /* 🔥 ICON SIZE INCREASED */
  color: gold;
  margin-bottom: 15px;
  display: block;

  transition: 0.3s ease;
}

/* Icon Hover */
.trust-box:hover .trust-icon {
  transform: scale(1.2);
  color: #ffd700;
}

/* Heading */
.trust-box h3 {
  color: gold;
  font-size: 18px;
  margin-top: 10px;
}

/* Optional small description (if you add later) */
.trust-box p {
  color: #ccc;
  font-size: 14px;
  margin-top: 8px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 768px) {

  .trust {
    flex-direction: column;
    padding: 50px 15px;
  }

  .trust-box {
    width: 100%;
    max-width: 300px;
  }

  .trust-icon {
    font-size: 45px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* TABLET */
@media(max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.cta {
  text-align: center;
  padding: 60px 20px;
  background: #111;
}

/* TITLE */
.cta h2 {
  color: #D4AF37;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* BUTTON */
.cta a {
  display: inline-block;
  background: #D4AF37;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.cta a:hover {
  background: #FFD700;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .cta {
    padding: 40px 15px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta a {
    width: 100%;
    max-width: 300px;
    padding: 14px;
    font-size: 16px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: #25D366;
  color: #fff;

  padding: 14px 18px;
  border-radius: 50px;

  font-weight: bold;
  text-decoration: none;

  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  transition: 0.3s;
}

/* hover effect */
.whatsapp-float:hover {
  transform: scale(1.05);
  background: #20ba5a;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;

    padding: 12px 14px;
    font-size: 14px;
  }
}

/* VERY SMALL MOBILE */
@media(max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}
.lead-form {
  text-align: center;
  padding: 60px 20px;
  background: #111;
}

.lead-form input,
.lead-form select {
  display: block;
  width: 300px;
  margin: 10px auto;
  padding: 10px;
}

.lead-form button {
  background: var(--gold);
  color: #000;
  padding: 10px 25px;
  border: none;
  font-weight: bold;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 50px;

  /* Glass + Gold Gradient */
  background: linear-gradient(90deg, #D4AF37, #FFD700, #B8860B);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* subtle shine animation */
.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* LOGO */
.logo img {
  height: 42px;
  filter: brightness(2);
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: #000;
  margin-left: 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

/* animated underline */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #fff8b0;
  text-shadow: 0 0 10px rgba(255,215,0,0.9);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.nav-menu a.active {
  color: #fff;
}

/* MOBILE MENU ICON */
.menu-toggle {
  font-size: 26px;
  color: #000;
  cursor: pointer;
  display: none;
}
/* GOLD LUXURY LINE */
.main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    #D4AF37,
    #FFD700,
    #B8962E,
    #D4AF37
  );

  opacity: 0.8;
}

/* LOGO */
.logo img {
  height: 42px;
  filter: brightness(2); /* makes logo black */
}

.logo img:hover {
  transform: scale(1.05);
}

/* MENU */
.nav-menu a {
  color: #000;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

/* GOLD UNDERLINE ANIMATION */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #fff8b0; /* bright golden yellow */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ACTIVE STATE (optional) */
.nav-menu a.active {
  color: #D4AF37;
}

/* MOBILE ICON */
.menu-toggle {
  color: #000;
  font-size: 24px;
  cursor: pointer;
}

.services-section {
  padding: 80px 40px;
  text-align: center;
  background: #0a0a0a;
}

.section-title {
  color: #D4AF37;
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID: 3 COLUMNS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD DESIGN */
.service-card, .trust-box {
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #D4AF37;
  margin-bottom: 10px;
}

.service-card p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

@media(max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-header {
    padding: 12px 20px;
  }
}
@media(max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #000;
    cursor: pointer;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: linear-gradient(90deg, #D4AF37, #FFD700);
    flex-direction: column;

    display: none;
    padding: 20px 0;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    margin: 15px 0;
    color: #000;
  }

  .nav-menu.active {
    display: flex;
  }
}

.trust {
  display: flex;
  justify-content: space-around;
  padding: 80px 20px;
  text-align: center;
  background: #0a0a0a;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-box {
  width: 30%;
  min-width: 220px;
  padding: 20px;
  transition: 0.3s;
}

/* MOBILE */
@media(max-width: 768px) {
  .trust {
    flex-direction: column;
    align-items: center;
  }

  .trust-box {
    width: 100%;
    max-width: 350px;
  }
}

.services-section {
  padding: 80px 40px;
  text-align: center;
  background: #0a0a0a;
}

.section-title {
  color: #D4AF37;
  font-size: 32px;
  margin-bottom: 40px;
}

/* DEFAULT (DESKTOP - 3 COLUMN GRID) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD STYLE */
.service-card {
  background: #111;
  border: 1px solid #222;
  padding: 20px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37;
  box-shadow: 0 10px 25px rgba(212,175,55,0.15);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 6px;
}

.service-card h3 {
  color: #D4AF37;
  margin-bottom: 10px;
}

.service-card p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

@media(max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 180px;
  }

  .section-title {
    font-size: 24px;
  }
}


.lead-form {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.lead-form h2 {
  color: #D4AF37;
  margin-bottom: 25px;
  font-size: 32px;
}

/* FORM CONTAINER */
.lead-form form {
  max-width: 500px;
  margin: auto;
}

/* INPUT FIELDS */
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}

/* FOCUS EFFECT */
.lead-form input:focus,
.lead-form select:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 8px rgba(212,175,55,0.3);
}

/* BUTTON */
.lead-form button {
  width: 100%;
  padding: 12px;
  background: #D4AF37;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.lead-form button:hover {
  background: #FFD700;
}

/* MOBILE RESPONSIVE */
@media(max-width: 600px) {
  .lead-form {
    padding: 50px 15px;
  }

  .lead-form h2 {
    font-size: 24px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form button {
    font-size: 14px;
    padding: 10px;
  }
}