/* ---------- ESCORT PENANG | GOLD + LIGHT GREY THEME ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a03d;
  --gold-light: #f2e0b0;
  --gold-dark: #9e7718;
  --grey-light: #f0f0f0;
  --grey-mid: #d4d4d4;
  --grey-dark: #2e2e2e;
  --dark: #1c1c1c;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --radius: 20px;
}

body {
  font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, sans-serif;
  background-color: var(--grey-light);
  color: var(--grey-dark);
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.8rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  color: var(--gold);
  border-left: 5px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 2rem;
}
.section-title {
  text-align: center;
  border-left: none;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

/* Header & Navigation (new style) */
.escort-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gold-light);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 800;
}
.logo-gold {
  color: var(--gold-dark);
}
.logo-light {
  color: var(--grey-dark);
  font-weight: 500;
}
.tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--grey-dark);
  transition: 0.2s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--gold);
  padding: 8px 14px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--gold-dark);
}

/* Hero Section */
.hero {
  background-image:url(../images/hero-image.jpg);
  background-size: cover;
  background-position: center 30%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content {
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(6px);
  padding: 50px 40px;
  border-radius: 40px;
  max-width: 700px;
  border-top: 3px solid var(--gold);
}
.hero-content h1 {
  color: white;
}
.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-3px);
}

/* Why Choose Us Cards */
.why-section {
  padding: 80px 0;
  background: var(--white);
}
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  background: var(--grey-light);
  padding: 30px 24px;
  border-radius: var(--radius);
  flex: 1 1 260px;
  text-align: center;
  transition: 0.2s;
  border-bottom: 3px solid transparent;
}
.card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Two images layout (for subpages) */
.two-images-grid {
  display: flex;
  gap: 30px;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}
.image-left, .image-right {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.image-left img, .image-right img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.image-left img:hover, .image-right img:hover {
  transform: scale(1.02);
}

/* Price list (simple & elegant) */
.price-list-section {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 32px;
  margin: 20px 0 40px;
  box-shadow: var(--shadow-sm);
}
.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.price-item {
  background: var(--grey-light);
  padding: 20px;
  border-radius: 24px;
  flex: 1 1 200px;
  text-align: center;
}
.price-item h4 {
  font-size: 1.3rem;
  color: var(--gold-dark);
}
.price-item .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  margin: 10px 0;
}

/* Description paragraphs (bottom) */
.description-section {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 32px;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
}
.description-section p {
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 32px;
  font-size: 0.85rem;
  border-top: 2px solid var(--gold);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  border: none;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Social buttons – VERTICAL stack, SQUARE-ISH, 30% smaller */
.social-floating {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.social-btn {
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 64px;                /* 30% smaller from 90px */
  height: 64px;
  border-radius: 14px;        /* slightly reduced rounding */
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-size: 0.65rem;
  letter-spacing: 0.2px;
  border: none;
  color: white;
  text-align: center;
}

.social-btn i {
  font-size: 1.4rem;         /* scaled down from 2rem */
}

.social-btn span {
  display: block;
  line-height: 1.1;
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.telegram {
  background: #26A5E4;
}

.social-btn:hover {
  transform: scale(1.03) translateX(3px);
  filter: brightness(0.92);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* On mobile, 30% smaller from 75px → ~52px */
@media (max-width: 680px) {
  .social-floating {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }
  .social-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }
  .social-btn i {
    font-size: 1.2rem;
  }
  .social-btn span {
    font-size: 0.55rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 75%;
    height: calc(100vh - 82px);
    background: white;
    flex-direction: column;
    padding: 40px 30px;
    gap: 25px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .two-images-grid {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .social-floating {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }
  .social-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}