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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ================================
   TYPOGRAPHY - Warm & Friendly
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1B4B8C;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #555;
}

blockquote {
  border-left: 4px solid #F4D03F;
  padding: 20px 24px;
  margin: 32px 0;
  background-color: #FFF;
  border-radius: 8px;
  font-style: italic;
  color: #1B4B8C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background-color: #FFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #1B4B8C;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #FFF8F0;
  color: #E8530F;
  transform: translateY(-2px);
}

/* ================================
   MOBILE MENU - Hamburger Navigation
   ================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #E8530F;
  color: #FFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 83, 15, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C74709;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1B4B8C;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E8530F;
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #C74709;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #FFF;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #F4D03F;
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================================
   HERO SECTION - Warm & Inviting
   ================================ */
.hero {
  background: linear-gradient(135deg, #1B4B8C 0%, #2E6BA8 100%);
  color: #FFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-bottom: 60px;
}

.hero h1 {
  color: #FFF;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #FFF8F0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary, .btn-secondary, .btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #E8530F;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(232, 83, 15, 0.3);
}

.btn-primary:hover {
  background-color: #C74709;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 83, 15, 0.4);
}

.btn-secondary {
  background-color: #F4D03F;
  color: #1B4B8C;
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-secondary:hover {
  background-color: #E6C230;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

.btn {
  background-color: #1B4B8C;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(27, 75, 140, 0.2);
}

.btn:hover {
  background-color: #143A6F;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 75, 140, 0.3);
}

.trust-badge {
  font-size: 14px;
  color: #F4D03F;
  font-weight: 500;
  margin-top: 16px;
}

/* ================================
   HERO INTERNAL PAGES
   ================================ */
.hero-internal {
  background: linear-gradient(135deg, #2E6BA8 0%, #1B4B8C 100%);
  color: #FFF;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 24px 24px;
}

.hero-internal h1 {
  color: #FFF;
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #FFF8F0;
  font-size: 18px;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #FFF8F0;
}

.breadcrumb a {
  color: #F4D03F;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #FFF;
}

/* ================================
   SECTIONS - Consistent Spacing
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section, .content-section, .features, .services, .stats, .testimonials, .cta-section, .cta-banner {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ================================
   FEATURES GRID - Flexbox Layout
   ================================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.feature-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(27, 75, 140, 0.15);
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.feature-card h3 {
  color: #1B4B8C;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

/* ================================
   SERVICES GRID - Flexbox Layout
   ================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.service-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(232, 83, 15, 0.2);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.service-card h3 {
  color: #1B4B8C;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E8530F;
  margin: 16px 0;
}

/* ================================
   STATS SECTION
   ================================ */
.stats {
  background: linear-gradient(135deg, #1B4B8C 0%, #2E6BA8 100%);
  color: #FFF;
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.stats h2 {
  color: #FFF;
  text-align: center;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 180px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #F4D03F;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

.stat .label {
  font-size: 16px;
  color: #FFF8F0;
}

/* ================================
   TESTIMONIALS - Readable Design
   ================================ */
.testimonials {
  background-color: #FFF8F0;
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  border-left: 4px solid #F4D03F;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-size: 14px;
  color: #1B4B8C;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-card .author strong {
  color: #E8530F;
}

/* ================================
   CTA BANNER
   ================================ */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #E8530F 0%, #F4D03F 100%);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2, .cta-section h2 {
  color: #FFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p, .cta-section p {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background-color: #1B4B8C;
}

.cta-banner .btn-primary:hover {
  background-color: #143A6F;
}

.cta-banner .btn-secondary {
  background-color: #FFF;
  color: #E8530F;
}

.cta-banner .btn-secondary:hover {
  background-color: #FFF8F0;
}

/* ================================
   CONTENT SECTIONS
   ================================ */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.benefits-list, .features-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.benefits-list li, .features-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 16px;
  color: #555;
}

.benefits-list li:before, .features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8530F;
  font-weight: 700;
  font-size: 20px;
}

/* ================================
   MISSION & VALUES
   ================================ */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.mission-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.mission-card h3 {
  color: #E8530F;
  margin-bottom: 16px;
}

.values {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-top: 32px;
}

.values h3 {
  color: #1B4B8C;
  margin-bottom: 20px;
}

.values ul {
  list-style: none;
  padding-left: 0;
}

.values ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: #555;
}

.values ul li:before {
  content: '●';
  position: absolute;
  left: 0;
  color: #F4D03F;
  font-size: 20px;
}

/* ================================
   TEAM SECTION
   ================================ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.team-member {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(27, 75, 140, 0.15);
}

.team-member h3 {
  color: #1B4B8C;
  font-size: 20px;
  margin-bottom: 8px;
}

.team-member .role {
  color: #E8530F;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ================================
   EVENTS & WORKSHOPS
   ================================ */
.events-grid, .workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.event-card, .workshop-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card:hover, .workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(232, 83, 15, 0.2);
}

.event-date {
  color: #E8530F;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.event-category {
  display: inline-block;
  background-color: #F4D03F;
  color: #1B4B8C;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.speaker {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 12px;
}

.duration, .participants {
  font-size: 14px;
  color: #666;
  margin: 8px 0;
}

/* ================================
   SERVICE DETAILS
   ================================ */
.service-info {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-tag {
  font-size: 32px;
  font-weight: 700;
  color: #E8530F;
  font-family: 'Orbitron', sans-serif;
}

/* ================================
   ITINERARIES
   ================================ */
.itinerary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.itinerary-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  border-top: 4px solid #F4D03F;
}

.itinerary-card h3 {
  color: #1B4B8C;
  margin-bottom: 12px;
}

/* ================================
   ARTICLES & RESOURCES
   ================================ */
.articles-grid, .infographics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.article-card, .infographic-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
}

.article-card:hover, .infographic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(27, 75, 140, 0.15);
}

.category {
  display: inline-block;
  background-color: #1B4B8C;
  color: #FFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.read-time, .format {
  font-size: 14px;
  color: #999;
  margin-top: 12px;
}

/* ================================
   NEWSLETTER
   ================================ */
.newsletter-section {
  background-color: #FFF;
  padding: 60px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 60px;
}

.newsletter-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.newsletter-section p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
}

.newsletter-section ul {
  max-width: 600px;
  margin: 24px auto;
  list-style: none;
  padding-left: 0;
}

.newsletter-section ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 16px;
  color: #555;
}

.newsletter-section ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8530F;
  font-weight: 700;
  font-size: 18px;
}

.newsletter-section .btn-primary {
  display: block;
  max-width: 300px;
  margin: 32px auto 0;
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.contact-item {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
}

.contact-item h3 {
  color: #E8530F;
  margin-bottom: 16px;
}

.form-note {
  background-color: #FFF8F0;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #F4D03F;
  margin: 32px 0;
}

.form-note a {
  color: #E8530F;
  font-weight: 600;
}

.form-note a:hover {
  color: #C74709;
  text-decoration: underline;
}

.quick-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.quick-contact-item {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
}

.quick-contact-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.team-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.team-contact {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.team-contact h3 {
  color: #1B4B8C;
  margin-bottom: 8px;
}

.team-contact p {
  font-size: 14px;
  color: #666;
}

/* ================================
   THANK YOU PAGE
   ================================ */
.thank-you-message {
  background-color: #FFF;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-message h2 {
  color: #E8530F;
  margin-bottom: 24px;
}

.thank-you-message h3 {
  color: #1B4B8C;
  margin-top: 32px;
  margin-bottom: 16px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.suggestion-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* ================================
   LEGAL CONTENT PAGES
   ================================ */
.legal-content {
  background-color: #FFF;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 60px;
}

.legal-content h2 {
  color: #1B4B8C;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #E8530F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content a {
  color: #E8530F;
  font-weight: 600;
}

.legal-content a:hover {
  color: #C74709;
  text-decoration: underline;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background-color: #1B4B8C;
  color: #FFF;
  padding: 60px 20px 24px;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #F4D03F;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #FFF8F0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #FFF8F0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #F4D03F;
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  color: #FFF8F0;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1B4B8C;
  color: #FFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner p {
  color: #FFF;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background-color: #E8530F;
  color: #FFF;
}

.cookie-accept-all:hover {
  background-color: #C74709;
}

.cookie-reject-all {
  background-color: transparent;
  color: #FFF;
  border: 2px solid #FFF;
}

.cookie-reject-all:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: #F4D03F;
  color: #1B4B8C;
}

.cookie-settings:hover {
  background-color: #E6C230;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFF;
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #F0F0F0;
  color: #333;
}

.cookie-modal h2 {
  color: #1B4B8C;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #FFF8F0;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #E8530F;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #E8530F;
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #FFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary, .btn {
    width: 100%;
  }
  
  .features-grid, .services-grid, .stats-grid, .testimonials-grid,
  .mission-grid, .team-grid, .events-grid, .workshop-grid,
  .itinerary-grid, .articles-grid, .infographics-grid,
  .contact-grid, .quick-contact-grid, .team-contacts-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .feature-card, .service-card, .stat, .testimonial-card,
  .mission-card, .team-member, .event-card, .workshop-card,
  .itinerary-card, .article-card, .infographic-card,
  .contact-item, .quick-contact-item, .team-contact,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .legal-content {
    padding: 40px 20px;
  }
  
  .thank-you-message {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  .cta-banner h2, .cta-section h2 {
    font-size: 28px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ================================
   ANIMATIONS & TRANSITIONS
   ================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid #F4D03F;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: #F4D03F;
  color: #1B4B8C;
}

::-moz-selection {
  background-color: #F4D03F;
  color: #1B4B8C;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #FFF8F0;
}

::-webkit-scrollbar-thumb {
  background-color: #E8530F;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #C74709;
}