:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --secondary: #a855f7;
  --accent: #c084fc;
  --dark: #1a1a1a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('/images/umrah-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.package-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.package-header {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.package-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-dates {
  font-size: 1rem;
  opacity: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: var(--gray-50);
}

.price-item {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.price-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.package-details {
  padding: 2rem;
}

.hotel-section {
  margin-bottom: 2rem;
}

.hotel-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.hotel-info {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.includes-section {
  margin-top: 2rem;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary);
}

.includes-list {
  list-style: none;
  padding: 0;
}

.includes-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.includes-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 700;
  font-size: 1.25rem;
}

.excludes-list li:before {
  content: '✗';
  color: #f44336;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.whatsapp-bubble {
  background: var(--white);
  padding: 12px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-bubble {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-text {
  font-size: 0.875rem;
  white-space: nowrap;
}

.whatsapp-line1 {
  font-weight: 600;
  color: var(--dark);
}

.whatsapp-line2 {
  color: var(--gray-600);
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--secondary);
  color: var(--white);
}

.inquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index: 10000;
  pointer-events: none;
  transition: background 0.3s ease;
}

.inquiry-modal.active {
  background: rgba(0,0,0,0.5);
  pointer-events: all;
}

.modal-content {
  position: fixed;
  top: 0;
  right: -65%;
  width: 65%;
  height: 100%;
  background: var(--white);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  overflow-y: auto;
  transition: right 0.3s ease;
}

.inquiry-modal.active .modal-content {
  right: 0;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: var(--white);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.inquiry-form {
  padding: 2.5rem;
}

.selected-package {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border-left: 5px solid var(--secondary);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

.selected-package i {
  color: var(--secondary);
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.form-row-4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

.card-number-group {
  grid-column: span 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 2.5rem 0;
}

.inquiry-form h4 {
  margin-top: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-group label::after {
  content: ' *';
  color: #dc3545;
  font-weight: 700;
}

.form-group label.optional::after {
  content: '';
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fafafa;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: #10b981;
  background-color: #f0fdf4;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2310b981"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  background-color: #fef2f2;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ef4444"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

.card-input-wrapper input.valid,
.card-input-wrapper input.invalid {
  padding-right: 3.5rem;
  background-position: right 1rem center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

.card-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input-wrapper input {
  padding-left: 3.5rem;
}

.card-icon {
  position: absolute;
  left: 1rem;
  width: 40px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.card-icon.visa {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" rx="4" fill="%231434CB"/><text x="24" y="20" font-family="Arial" font-size="12" font-weight="bold" fill="white" text-anchor="middle">VISA</text></svg>');
}

.card-icon.mastercard {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" rx="4" fill="%23EB001B"/><circle cx="20" cy="16" r="8" fill="%23FF5F00"/><circle cx="28" cy="16" r="8" fill="%23F79E1B"/></svg>');
}

.card-icon.amex {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" rx="4" fill="%23006FCF"/><text x="24" y="20" font-family="Arial" font-size="9" font-weight="bold" fill="white" text-anchor="middle">AMEX</text></svg>');
}

.card-icon.discover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" rx="4" fill="%23FF6000"/><text x="24" y="20" font-family="Arial" font-size="7" font-weight="bold" fill="white" text-anchor="middle">DISCOVER</text></svg>');
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.g-recaptcha {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.form-message {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  display: none;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: #d4edda;
  border: 2px solid #c3e6cb;
  color: #155724;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  border: 2px solid #f5c6cb;
  color: #721c24;
}

.form-message i {
  margin-right: 0.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.btn-secondary {
  padding: 0.875rem 2.5rem;
  background: #f5f5f5;
  color: var(--dark);
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

.inquiry-section {
  background: #e0e0e0;
  padding: 5rem 0;
}

.inquiry-section-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.inquiry-section p {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-title {
    font-size: 1.5rem;
  }
  
  .modal-content {
    width: 100%;
    right: -100%;
  }
  
  .modal-header {
    padding: 1.5rem;
  }
  
  .modal-header h3 {
    font-size: 1.5rem;
  }
  
  .inquiry-form {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

