/* Umrah Visa Agency - Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.agency-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.agency-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.agency-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,100,0,0.8), rgba(0,50,0,0.6));
  z-index: -1;
}

.agency-hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.agency-hero-badge {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}

.agency-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.agency-highlight {
  color: #ffd700;
}

.agency-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.agency-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.agency-stat-item {
  text-align: center;
}

.agency-stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}

.agency-stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.agency-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.agency-btn-primary, .agency-btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.agency-btn-primary {
  background: #ffd700;
  color: #333;
}

.agency-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.agency-btn-primary:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.agency-btn-secondary:hover {
  background: white;
  color: #333;
}

/* Section Styles */
.agency-services, .agency-why-choose, .agency-locations, .agency-process, .agency-testimonials {
  padding: 80px 0;
}

.agency-services {
  background: #f8f9fa;
}

.agency-locations {
  background: #f8f9fa;
}

.agency-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.agency-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2c5530;
}

.agency-section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.agency-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.agency-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.agency-service-card:hover {
  transform: translateY(-5px);
}

.agency-service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.agency-service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2c5530;
}

.agency-service-card p {
  color: #666;
  margin-bottom: 20px;
}

.agency-service-card ul {
  list-style: none;
  text-align: left;
}

.agency-service-card li {
  padding: 5px 0;
  color: #555;
}

.agency-service-card li:before {
  content: "✓ ";
  color: #2c5530;
  font-weight: bold;
}

/* Features Grid */
.agency-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.agency-feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.agency-feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.agency-feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c5530;
}

/* Locations Grid */
.agency-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.agency-location-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.agency-location-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2c5530;
}

.agency-location-details {
  margin-top: 20px;
}

.agency-location-details p {
  margin: 5px 0;
  color: #666;
}

/* Process Steps */
.agency-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.agency-step-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.agency-step-number {
  width: 60px;
  height: 60px;
  background: #2c5530;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.agency-step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c5530;
}

/* Testimonials */
.agency-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.agency-testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.agency-testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.agency-testimonial-avatar {
  width: 50px;
  height: 50px;
  background: #2c5530;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
}

.agency-testimonial-info h4 {
  margin-bottom: 5px;
  color: #2c5530;
}

.agency-testimonial-date {
  font-size: 0.9rem;
  color: #666;
}

.agency-testimonial-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* FAQ Section */
.agency-faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.agency-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.agency-faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.agency-faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.3s ease;
}

.agency-faq-question:hover {
  background: #f8f9fa;
}

.agency-faq-question h3 {
  color: #2c5530;
  font-size: 1.1rem;
  margin: 0;
}

.agency-faq-toggle {
  font-size: 1.5rem;
  color: #2c5530;
  font-weight: bold;
}

.agency-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.agency-faq-item.active .agency-faq-answer {
  padding: 20px;
  max-height: 300px;
}

.agency-faq-item.active .agency-faq-toggle {
  transform: rotate(45deg);
}

/* Content Sections */
.agency-content, .agency-visa-info, .agency-visa-rules, .agency-documents, .agency-pricing, .agency-process-detailed, .agency-benefits, .agency-service-options {
  padding: 60px 0;
}

.agency-content {
  background: #f8f9fa;
}

.agency-visa-rules {
  background: #f8f9fa;
}

.agency-pricing {
  background: #f8f9fa;
}

.agency-benefits {
  background: #f8f9fa;
}

.agency-content-header h2, .agency-visa-info h2, .agency-visa-rules h2, .agency-documents h2, .agency-pricing h2, .agency-process-detailed h2, .agency-benefits h2, .agency-service-options h2 {
  font-size: 2rem;
  color: #2c5530;
  margin-bottom: 20px;
}

.agency-content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.agency-rules-list {
  margin: 20px 0;
  padding-left: 20px;
}

.agency-rules-list li {
  margin: 10px 0;
  color: #555;
}

.agency-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.agency-doc-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-weight: 500;
}

.agency-options {
  background: #e8f5e8;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.agency-steps-list {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.agency-steps-list li {
  margin: 15px 0;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.agency-method-steps {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.agency-method-steps p {
  margin: 10px 0;
  padding: 8px 0;
}

.agency-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.agency-benefit-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-weight: 500;
}

.agency-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.agency-option-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.agency-option-card h3 {
  color: #2c5530;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.agency-option-card ul {
  list-style: none;
  margin: 20px 0;
}

.agency-option-card li {
  padding: 8px 0;
  color: #555;
}

.agency-option-card li:before {
  content: "✓ ";
  color: #2c5530;
  font-weight: bold;
}

/* CTA Section */
.agency-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5530, #1a3d1f);
  color: white;
  text-align: center;
}

.agency-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.agency-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.agency-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.agency-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.agency-btn-outline:hover {
  background: white;
  color: #2c5530;
}

.agency-trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  font-size: 0.9rem;
}

.agency-trust-item {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .agency-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .agency-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .agency-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .agency-services-grid {
    grid-template-columns: 1fr;
  }
  
  .agency-process-steps {
    grid-template-columns: 1fr;
  }
  
  .agency-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .agency-trust-indicators {
    flex-direction: column;
    gap: 10px;
  }
}