/* =====================================================
   PIONEER HOLIDAYS - PREMIUM HOMEPAGE STYLES
   Color Theme: Blue (#1a365d), Green (#48bb78), White
   ===================================================== */

/* HERO SECTION */
.home-hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.80) 50%, rgba(26, 54, 93, 0.88) 100%),
              url('/images/taj-mahal-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/taj-mahal-hero.jpg') center/cover no-repeat;
  opacity: 0.55;
  z-index: 0;
}

.home-hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(72, 187, 120, 0.2);
  border: 1px solid rgba(72, 187, 120, 0.5);
  color: #68d391;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.home-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.home-hero .hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 35px;
  font-weight: 300;
  color: #fff;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(72, 187, 120, 0.4);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(72, 187, 120, 0.5);
}

.hero-cta .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
}

.hero-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #68d391;
}

.hero-stat-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 5px;
}

/* TRUST BAR */
.trust-bar {
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5568;
  font-size: 15px;
}

.trust-item svg {
  color: #48bb78;
  flex-shrink: 0;
}

/* SECTION BASE */
.home-section {
  padding: 60px 20px;
}

.home-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ebf8ff, #e6fffa);
  color: #1a365d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid #bee3f8;
}

.section-header h2 {
  font-size: 38px;
  color: #1a365d;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-header p {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.7;
}

/* ABOUT SECTION */
.about-intro {
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

.experience-badge .years {
  font-size: 42px;
  font-weight: 700;
  display: block;
  color: #68d391;
}

.experience-badge .text {
  font-size: 14px;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 36px;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2d3748;
}

.about-feature svg {
  color: #48bb78;
  flex-shrink: 0;
}

/* POPULAR TOURS */
.popular-tours {
  background: #f7fafc;
}

.tour-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tour-category-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.tour-category-card:hover {
  transform: translateY(-8px);
  border-color: #48bb78;
}

.tour-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-category-card:hover .tour-card-image img {
  transform: scale(1.1);
}

.tour-card-content {
  padding: 25px;
}

.tour-card-content h3 {
  font-size: 20px;
  color: #1a365d;
  margin-bottom: 10px;
  font-weight: 600;
}

.tour-card-content p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tour-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #48bb78;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.tour-category-card:hover .tour-card-link {
  gap: 12px;
}

/* WHY CHOOSE US */
.why-choose {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  color: #fff;
}

.why-choose .section-header h2 {
  color: #fff;
}

.why-choose .section-header p {
  color: rgba(255,255,255,0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card h3 {
  color: #fff;
}

.why-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
  color: #e2e8f0;
}

/* TOUR TYPES */
.tour-types {
  background: #fff;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.type-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #f7fafc;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.type-card:hover {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border-color: #48bb78;
}

.type-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ebf8ff, #e6fffa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.type-icon svg {
  width: 32px;
  height: 32px;
  color: #1a365d;
}

.type-content h3 {
  font-size: 18px;
  color: #1a365d;
  margin-bottom: 8px;
  font-weight: 600;
}

.type-content p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.testimonial-stars {
  color: #f6ad55;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.author-info h4 {
  font-size: 15px;
  color: #1a365d;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 13px;
  color: #718096;
}

/* OFFICES */
.local-presence {
  background: #f7fafc;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.office-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.office-card:hover {
  border-color: #48bb78;
}

.office-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ebf8ff, #e6fffa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.office-icon svg {
  width: 28px;
  height: 28px;
  color: #1a365d;
}

.office-card h3 {
  font-size: 20px;
  color: #1a365d;
  margin-bottom: 10px;
}

.office-card p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
}

/* CTA SECTION */
.home-cta {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/cta-pattern.png') center/cover;
  opacity: 0.05;
}

.home-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.home-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.home-cta p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 35px;
  line-height: 1.7;
  color: #e2e8f0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(72, 187, 120, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(72, 187, 120, 0.5);
}

.cta-buttons .btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* RESPONSIVE - TABLET LANDSCAPE */
@media (max-width: 1024px) {
  .tour-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE - TABLET */
@media (max-width: 768px) {
  .home-hero {
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 30px 16px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 18px;
  }
  
  .home-hero h1 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  
  .home-hero .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding-top: 20px;
  }
  
  .hero-stat-number {
    font-size: 24px;
  }
  
  .hero-stat-label {
    font-size: 12px;
  }
  
  .trust-bar {
    padding: 18px 0;
  }
  
  .trust-items {
    gap: 18px;
  }
  
  .trust-item {
    font-size: 13px;
  }
  
  .trust-item svg {
    width: 18px;
    height: 18px;
  }
  
  .home-section {
    padding: 45px 16px;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
  
  .section-header h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .about-content p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .about-features {
    gap: 10px;
    margin-top: 20px;
  }
  
  .about-feature {
    font-size: 13px;
  }
  
  .about-image .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 18px 22px;
  }
  
  .experience-badge .years {
    font-size: 32px;
  }
  
  .experience-badge .text {
    font-size: 12px;
  }
  
  .tour-categories {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .tour-card-image {
    height: 160px;
  }
  
  .tour-card-content {
    padding: 18px;
  }
  
  .tour-card-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .tour-card-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .tour-card-link {
    font-size: 13px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .why-card {
    padding: 25px 20px;
  }
  
  .why-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  
  .why-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .why-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .why-card p {
    font-size: 13px;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .type-card {
    padding: 22px;
    gap: 18px;
  }
  
  .type-icon {
    width: 55px;
    height: 55px;
  }
  
  .type-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .type-content h3 {
    font-size: 16px;
  }
  
  .type-content p {
    font-size: 13px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-stars {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  
  .author-info h4 {
    font-size: 14px;
  }
  
  .author-info span {
    font-size: 12px;
  }
  
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .office-card {
    padding: 25px;
  }
  
  .office-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .office-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .office-card h3 {
    font-size: 17px;
  }
  
  .office-card p {
    font-size: 13px;
  }
  
  .home-cta {
    padding: 60px 16px;
  }
  
  .home-cta h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .home-cta p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 480px) {
  .home-hero {
    min-height: 55vh;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  
  .home-hero h1 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .home-hero .hero-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding-top: 18px;
  }
  
  .hero-stat-number {
    font-size: 22px;
  }
  
  .hero-stat-label {
    font-size: 11px;
  }
  
  .trust-bar {
    padding: 14px 0;
  }
  
  .trust-items {
    flex-direction: column;
    gap: 10px;
  }
  
  .trust-item {
    font-size: 12px;
  }
  
  .trust-item svg {
    width: 16px;
    height: 16px;
  }
  
  .home-section {
    padding: 35px 14px;
  }
  
  .section-header {
    margin-bottom: 28px;
  }
  
  .section-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 10px;
  }
  
  .section-header h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 14px;
  }
  
  .about-content h2 {
    font-size: 20px;
  }
  
  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .about-feature {
    font-size: 12px;
  }
  
  .about-image .experience-badge {
    padding: 14px 18px;
  }
  
  .experience-badge .years {
    font-size: 28px;
  }
  
  .experience-badge .text {
    font-size: 11px;
  }
  
  .tour-card-image {
    height: 140px;
  }
  
  .tour-card-content {
    padding: 14px;
  }
  
  .tour-card-content h3 {
    font-size: 15px;
  }
  
  .tour-card-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .tour-card-link {
    font-size: 12px;
  }
  
  .why-card {
    padding: 20px 16px;
  }
  
  .why-icon {
    width: 50px;
    height: 50px;
  }
  
  .why-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .why-card h3 {
    font-size: 15px;
  }
  
  .why-card p {
    font-size: 12px;
  }
  
  .type-card {
    flex-direction: column;
    text-align: center;
    padding: 18px;
    gap: 14px;
  }
  
  .type-icon {
    width: 50px;
    height: 50px;
  }
  
  .type-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .type-content h3 {
    font-size: 15px;
  }
  
  .type-content p {
    font-size: 12px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-stars {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .testimonial-text {
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  
  .author-info h4 {
    font-size: 13px;
  }
  
  .author-info span {
    font-size: 11px;
  }
  
  .office-card {
    padding: 20px;
  }
  
  .office-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }
  
  .office-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .office-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .office-card p {
    font-size: 12px;
  }
  
  .home-cta {
    padding: 45px 14px;
  }
  
  .home-cta h2 {
    font-size: 20px;
  }
  
  .home-cta p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 12px 28px;
    font-size: 14px;
  }
}
