:root {
  --primary: #B76E79; /* Rose Gold */
  --primary-dark: #A35D69;
  --secondary: #2C3E50;
  --accent: #E5C1CD;
  --white: #ffffff;
  --light: #FDF2F4;
  --text: #444444;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.8;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 8%;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 8%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(15px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 55px;
  width: auto;
  max-width: 150px;
  background-color: var(--white);
  padding: 6px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  filter: drop-shadow(0 5px 15px rgba(183, 110, 121, 0.2));
  transition: var(--transition);
  object-fit: contain;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-admin {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(183, 110, 121, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('../khi/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 15%;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease;
  font-weight: 400;
}

.btn-hero {
  background: var(--white);
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  animation: fadeInUp 1.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.btn-hero:hover {
  transform: translateY(-5px);
  background: var(--primary);
  color: var(--white);
}

/* Section General */
section {
  padding: 10rem 10%;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--secondary);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--primary);
  border-radius: 10px;
}

.section-desc {
  font-size: 1.1rem;
  color: #777;
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

/* About Us Section */
.about {
  background-color: var(--white);
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-content {
  flex: 1;
}

.about-content p {
  text-align: justify;
  margin-bottom: 1.5rem;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-img::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary);
  border-radius: 30px;
  z-index: -1;
}

/* Tracking Section */
.tracking {
  background-color: var(--light);
  padding-top: 0;
}

.tracking-card {
  background: var(--white);
  padding: 5rem;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(183, 110, 121, 0.1);
  max-width: 1000px;
  margin: -10rem auto 0;
  position: relative;
  z-index: 10;
  text-align: center;
}

.search-box {
  display: flex;
  gap: 15px;
  margin-top: 3rem;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 25px;
}

.search-box input {
  flex: 1;
  padding: 1.2rem 2rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  outline: none;
}

.btn-check {
  background: var(--primary);
  color: var(--white);
  padding: 0 3rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
}

.btn-check:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

/* Results */
#payment-result {
  margin-top: 4rem;
  padding: 3rem;
  background: #fff;
  border-radius: 25px;
  border: 1px solid #eee;
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px dashed #ddd;
}

.btn-reset:hover {
  color: var(--primary) !important;
}

/* Why Choose Us */
.features {
  background: var(--white);
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-card {
  padding: 3rem 2rem;
  background: var(--light);
  border-radius: 30px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* Packages */
.packages {
  background: #fafafa;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.package-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  transition: var(--transition);
  text-align: left;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 70px rgba(0,0,0,0.1);
}

.package-img {
  height: 200px;
  overflow: hidden;
}

.package-info {
  padding: 2rem;
}

.package-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.btn-book {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: #f0f0f0;
  color: var(--secondary);
  border-radius: 15px;
  margin-top: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.package-card:hover .btn-book {
  background: var(--primary);
  color: var(--white);
}

/* Social */
.social {
  background: var(--light);
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.social-btn {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.social-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--white);
}

/* Location Section */
.location {
  background: var(--white);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.location-label {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.location-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.location-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.address-box {
  display: flex;
  gap: 20px;
  margin-bottom: 3rem;
}

.address-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.address-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
}

.btn-directions:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(183, 110, 121, 0.2);
}

/* Footer */
footer {
  padding: 8rem 10% 3rem;
  background: #111;
  color: #bbb;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 5rem;
}

.f-logo {
  height: 70px;
  background: var(--white);
  padding: 8px;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links i {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  color: white;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .location-container { grid-template-columns: 1fr; gap: 4rem; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
  .tracking-card { padding: 2rem; margin-top: -6rem; }
  .search-box { flex-direction: column; border-radius: 15px; }
  .btn-check { padding: 1rem; width: 100%; border-radius: 15px; }
  .footer-content { grid-template-columns: 1fr; gap: 3rem; }
  .location-title { font-size: 2.5rem; }
  .hamburger {
    display: block !important;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 1001;
  }
  nav.scrolled .hamburger {
    color: var(--primary);
  }
  .nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
  }
  .nav-links.active a {
    font-size: 1.5rem;
  }
}

.hamburger {
  display: none;
}
