/* ===============================================
   UMRAH PACKAGES CYPRUS - PROFESSIONAL STYLES
   =============================================== */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

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

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2d5bff 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  background-color: #E53935;
  color: white;
  padding: 18px 50px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  background-color: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
}

/* === SECTION TITLES === */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1e3c72;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2d5bff, #E53935);
  border-radius: 2px;
}

/* === PACKAGES SECTION === */
.packages-section {
  padding: 80px 20px;
  background-color: #F5F5F5;
}

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

.package-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-color: #2d5bff;
}

.package-card.featured {
  border: 3px solid #2d5bff;
  transform: scale(1.02);
}

.package-card.luxury {
  border: 3px solid #FFD700;
  background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #E53935;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.4);
}

.package-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.package-name {
  font-size: 1.8rem;
  color: #1e3c72;
  margin-bottom: 8px;
  font-weight: 700;
}

.package-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.package-price {
  font-size: 3rem;
  color: #E53935;
  font-weight: 700;
  margin: 15px 0;
}

.package-price::before {
  content: '€';
  font-size: 1.5rem;
  vertical-align: super;
}

.package-duration {
  font-size: 1rem;
  color: #2d5bff;
  font-weight: 600;
}

.package-note {
  font-size: 0.9rem;
  color: #00A651;
  font-weight: 600;
  margin-top: 5px;
}

.package-features {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.package-features li {
  padding: 12px 0;
  font-size: 1rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.package-features li:hover {
  padding-left: 10px;
  color: #2d5bff;
}

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

.package-button {
  display: block;
  width: 100%;
  background-color: #25D366;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.package-button:hover {
  background-color: #1faa52;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* === WHY CHOOSE US SECTION === */
.why-choose-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

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

.trust-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: #F5F5F5;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.trust-item h3 {
  font-size: 1.4rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 700;
}

.trust-item p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/* === WHAT'S INCLUDED SECTION === */
.included-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.included-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.included-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.included-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.included-item h3 {
  font-size: 1.4rem;
  color: #1e3c72;
  margin-bottom: 20px;
  font-weight: 700;
}

.included-item ul {
  list-style: none;
  padding: 0;
}

.included-item ul li {
  padding: 10px 0;
  color: #333;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

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

/* === BOOKING PROCESS SECTION === */
.process-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

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

.process-step {
  text-align: center;
  padding: 30px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2d5bff 0%, #1e3c72 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(45, 91, 255, 0.3);
}

.process-step h3 {
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e3c72 0%, #2d5bff 100%);
  color: white;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.contact-icon {
  font-size: 2rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.contact-button {
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.call-button {
  background-color: #E53935;
  color: white;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.call-button:hover {
  background-color: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
  background-color: #1faa52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === FOOTER === */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  margin: 10px 0;
  opacity: 0.9;
}

/* === SMOOTH SCROLLING === */
html {
  scroll-behavior: smooth;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .trust-grid,
  .included-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .package-price {
    font-size: 2.5rem;
  }

  .cta-button,
  .contact-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* === PRINT STYLES === */
@media print {
  .cta-button,
  .package-button,
  .contact-buttons {
    display: none;
  }
}
