/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2D5BFF;
  --accent-color: #E53935;
  --success-color: #00C853;
  --gold-color: #FFB300;
  --dark-text: #333333;
  --light-text: #666666;
  --bg-light: #F5F5F5;
  --white: #FFFFFF;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  font-size: 1.75rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--success-color);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '🕌';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-lg);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(229, 57, 53, 0.4);
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--light-text);
  margin-bottom: 3rem;
}

/* Packages Section */
.packages-section {
  background: var(--bg-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border: 3px solid var(--gold-color);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold-color);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.package-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-light);
  margin-bottom: 1.5rem;
}

.package-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1rem 0 0.5rem;
}

.package-duration {
  font-size: 1rem;
  color: var(--light-text);
  font-weight: 500;
}

.package-note {
  background: var(--success-color);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: inline-block;
}

.package-features {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.package-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bg-light);
  color: var(--dark-text);
  font-size: 0.95rem;
}

.package-features li:last-child {
  border-bottom: none;
}

.whatsapp-btn {
  background: var(--success-color);
  color: var(--white);
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #00a844;
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: var(--bg-light);
  transition: transform 0.3s;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.trust-card p {
  color: var(--light-text);
  line-height: 1.7;
}

/* What's Included Section */
.included-section {
  background: var(--bg-light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.included-category {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.included-category h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.included-category h3 i {
  font-size: 1.5rem;
}

.included-category ul {
  list-style: none;
}

.included-category li {
  padding: 0.6rem 0;
  color: var(--dark-text);
  border-bottom: 1px solid var(--bg-light);
}

.included-category li:last-child {
  border-bottom: none;
}

/* Booking Process Section */
.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, var(--primary-color), #5b7dff);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
}

.step h3 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--light-text);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: var(--white);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-color);
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-item p {
  margin: 0.5rem 0;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.whatsapp-btn-large {
  background: var(--success-color);
  color: var(--white);
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}

.whatsapp-btn-large i {
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .package-price {
    font-size: 2rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .logo-text {
    display: none;
  }
  
  .package-card {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-btn,
  .whatsapp-btn-large,
  .cta-button {
    display: none;
  }
}
