/* ---------- ESCORT MELAKA | FRESH DESIGN - NO SIMILARITY TO PREVIOUS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --maroon-deep: #4a0e1b;
  --maroon: #6b1d2f;
  --maroon-light: #8e3a4f;
  --green-pale: #e8f3e0;
  --green-mint: #a8d08d;
  --green-forest: #5a7a3a;
  --charcoal: #2c2c2c;
  --cream: #fdf8f0;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--green-pale) 0%, #ffffff 100%);
  color: var(--charcoal);
  line-height: 1.5;
  min-height: 100vh;
}

/* Layout with sidebar (desktop) */
.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR NAVIGATION - unique, not seen before */
.sidebar {
  width: 280px;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  backdrop-filter: blur(10px);
  padding: 40px 24px;
  position: sticky;
  top: 0;
  height: 100vh;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  z-index: 100;
}

.logo-area {
  margin-bottom: 50px;
  text-align: center;
}

.logo-area h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-mint);
  letter-spacing: -0.5px;
}

.logo-area p {
  font-size: 0.65rem;
  color: var(--green-pale);
  letter-spacing: 3px;
  margin-top: 8px;
}

.sidebar-nav {
  flex: 1;
}

.sidebar-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav a {
  text-decoration: none;
  color: #f0e6e6;
  padding: 12px 20px;
  display: block;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.25s;
  font-size: 0.95rem;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(168, 208, 141, 0.25);
  color: var(--green-mint);
  transform: translateX(6px);
}

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--maroon);
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-glass);
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  padding: 40px 48px;
  overflow-x: hidden;
}

/* Hero Section - Split Screen */
.hero-split {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1.2;
}

.hero-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: var(--green-forest);
  border-bottom: 3px solid var(--green-mint);
  display: inline-block;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #4a4a4a;
}

.btn-split {
  background: var(--maroon);
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.25s;
  border: none;
  cursor: pointer;
}

.btn-split:hover {
  background: var(--maroon-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.hero-image {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Stats Cards (unique) */
.stats-row {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  margin: 60px 0;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(107, 29, 47, 0.2);
  border-radius: 24px;
  padding: 25px;
  text-align: center;
  flex: 1;
  transition: 0.25s;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: var(--shadow-large);
}

.stat-card i {
  font-size: 2.2rem;
  color: var(--maroon);
  margin-bottom: 12px;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-forest);
}

/* Two Images Grid (subpages) */
.dual-image {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.dual-image div {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.dual-image img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.dual-image img:hover {
  transform: scale(1.02);
}

/* Price List - Vertical Timeline Style */
.price-timeline {
  background: var(--cream);
  border-radius: 32px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: var(--shadow-large);
  border-left: 6px solid var(--green-mint);
}

.price-timeline h3 {
  font-size: 1.8rem;
  color: var(--maroon);
  margin-bottom: 30px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed #ddd;
  flex-wrap: wrap;
  gap: 15px;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item .service {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.timeline-item .price-tag {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-forest);
}

.timeline-item .duration {
  color: #888;
  font-size: 0.85rem;
}

/* Description Cards (Stacked) */
.description-stack {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 50px 0;
}

.desc-card {
  background: white;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-right: 5px solid var(--green-mint);
  transition: 0.2s;
}

.desc-card:hover {
  transform: translateX(8px);
}

.desc-card strong {
  color: var(--maroon);
  font-size: 1.1rem;
}

/* 3 Image Gallery (Home) */
.gallery-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 50px 0;
}

.gallery-triptych img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-large);
  transition: 0.3s;
}

.gallery-triptych img:hover {
  transform: scale(1.02);
  filter: brightness(0.95);
}

/* Footer */
.footer {
  background: var(--maroon-deep);
  color: var(--green-pale);
  text-align: center;
  padding: 35px;
  border-radius: 30px 30px 0 0;
  margin-top: 60px;
}

/* Back to Top - Circular with pulse */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--green-forest);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  border: none;
  z-index: 99;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--maroon);
  transform: scale(1.1);
}

/* Social Floating - Hexagon shape */
.social-hex {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99999;
}

.hex-btn {
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: 0.25s;
  font-size: 0.7rem;
  font-weight: bold;
  gap: 4px;
}

.hex-btn i {
  font-size: 1.6rem;
}

.hex-btn.telegram {
  background: #26A5E4;
}

.hex-btn:hover {
  transform: translateX(5px) scale(1.05);
  filter: brightness(0.9);
}

/* Responsive */
@media (max-width: 900px) {
  .sidebar {
    position: fixed;
    left: -100%;
    width: 260px;
    transition: 0.3s;
    z-index: 1000;
    height: 100%;
  }
  .sidebar.active {
    left: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  .main-content {
    padding: 80px 20px 30px;
  }
  .hero-split {
    flex-direction: column;
  }
  .gallery-triptych {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-hex {
    bottom: 20px;
    left: 20px;
  }
  .hex-btn {
    width: 55px;
    height: 55px;
  }
  .back-to-top {
    bottom: 90px;
  }
	
	
	
	@media (min-width: 200px) {
  /* Two Images Grid (subpages) */
.dual-image {
  display:grid;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.dual-image div {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.dual-image img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.dual-image img:hover {
  transform: scale(1.02);
}
		
		
		
		
}




