
:root {
    --primary-blue: #003366; /* Deep Navy Blue */
    --dark-blue-bg: #1a253c;
    --primary-accent: #0d6efd; /* Bootstrap default Blue for icons/buttons */
    --primary-accent-light: #e7f0ff;
    --card-bg: #ffffff;
    --light-gray-bg: #f8f9fa;
    --light-gray-hover: #e9f0f8;
    --text-primary-color: #212529;
    --text-muted-color: #6c757d;
    --text-white: #ffffff;
    --card-shadow: 0 4px 15px rgba(0,0,0,0.07);
    --card-hover-shadow: 0 8px 25px rgba(0,0,0,0.12);
    --border-color: #e9ecef;

    /* --- NEW Material 3 BLUE Theme Variables --- */
    --m3-primary: #0061A4;
    --m3-on-primary: #FFFFFF;
    --m3-primary-container: #D1E4FF;
    --m3-on-primary-container: #001D36;
    
    --m3-secondary: #535F70;
    --m3-on-secondary: #FFFFFF;
    --m3-secondary-container: #D7E3F7;
    --m3-on-secondary-container: #101C2B;
    
    --m3-tertiary: #006874;
    --m3-on-tertiary: #FFFFFF;
    --m3-tertiary-container: #97F0FF;
    --m3-on-tertiary-container: #001F24;
    
    --m3-error: #B3261E;
    --m3-on-error: #FFFFFF;
    
    --m3-background: #F8F9FF;
    --m3-on-background: #191C1E;
    --m3-surface: #F8F9FF;
    --m3-on-surface: #191C1E;
    --m3-surface-variant: #DFE2EB;
    --m3-on-surface-variant: #42474E;
    
    --m3-outline: #73777F;
    
    --m3-warning: #FFB74D; /* Kept from original, good for stars */
    --m3-card-radius: 20px;
    --m3-elevation-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

body { font-family: 'Poppins', sans-serif; }
.navbar-custom-darkblue { background-color: var(--primary-blue) !important; }

/* --- NEW Hero Section Styles --- */
.hero-section {
    background: url('images/Services.jpg') center/cover no-repeat;
    padding: 10rem 0;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.7); /* var(--primary-blue) at 70% opacity */
}
.hero-content {
    position: relative;
    z-index: 2;
}


/* --- Original Service Card Styles --- */
.service-card-v2 {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary-accent);
}
.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px; height: 70px;
    background-color: var(--primary-accent-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}
.service-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-accent);
}
.service-list { list-style: none; padding: 0; text-align: left; display: inline-block; }
.service-list li {
    color: var(--text-muted-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.service-list li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230d6efd' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
    margin-right: 0.75rem;
    line-height: 1;
}

/* --- Original Testimonial Card --- */
.testimonial-card { 
    background: #f3f6f9; 
    border-radius: 10px; 
    padding: 1.5rem; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

/* --- Original Button --- */
.btn-service {
    background-color: transparent;
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-service:hover { background-color: var(--primary-accent); color: var(--text-white); }

/* --- Utility --- */
.bg-dark-blue { background-color: var(--primary-blue) !important; }

/* --- Styles for Redesigned Services (V1) --- */
.service-card-redesign {
    background-color: var(--card-bg); /* White background */
    color: var(--text-primary-color); /* Dark text for contrast */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-card-redesign:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.btn-outline-primary-redesign {
    color: var(--primary-accent); 
    border-color: var(--primary-accent);
    border-radius: 50px;
}
.btn-outline-primary-redesign:hover {
    background-color: var(--primary-accent);
    color: var(--text-white);
}

/* --- CTA Button (Consolidated & Themed) --- */
/* Default (for light backgrounds) */
.btn-redesign-cta {
  background-color: var(--m3-primary-container);
  border: 2px solid var(--m3-primary-container);
  color: var(--m3-on-primary-container);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}
.btn-redesign-cta:hover {
  background-color: var(--m3-primary);
  border-color: var(--m3-primary);
  color: var(--m3-on-primary);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 97, 164, 0.3); /* Shadow from new primary blue */
}
/* When placed in a dark section (like hero or footer) */
/* This class is now used in the new hero section */
.bg-dark-section .btn-redesign-cta {
  background-color: var(--m3-primary-container);
  border: 2px solid var(--m3-primary-container);
  color: var(--m3-on-primary-container);
}
.bg-dark-section .btn-redesign-cta:hover {
  background-color: #D1E4FF; /* Lighter hover for dark bg */
  border-color: #D1E4FF;
  color: var(--m3-on-primary-container);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(209, 228, 255, 0.4);
}

/* --- Services Section (M3-Blue) --- */
.travel-redesign-m3-light {
    background: url('images/Services.jpg') center/cover no-repeat fixed;
    position: relative;
    color: var(--m3-on-background);
}
.m3-light-overlay {
    background-color: rgba(248, 249, 255, 0.85); /* M3 light background overlay */
}
.m3-text-gradient {
    background: linear-gradient(90deg, var(--m3-primary), var(--m3-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}
.text-accent-m3 { color: var(--m3-primary); }
.m3-service-card {
    background: var(--m3-surface);
    border: 1px solid var(--m3-surface-variant);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}
.m3-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 97, 164, 0.15); /* primary color shadow */
}
.m3-icon-header {
    background: var(--m3-surface);
    border-bottom: 1px solid var(--m3-surface-variant);
}
.m3-icon-header i { color: var(--m3-primary); }
.m3-card-body { padding: 1.5rem; }
.m3-detail-list { max-width: 250px; }
.text-electric-m3 { color: var(--m3-primary); }
.btn-m3-primary {
    background-color: var(--m3-primary);
    color: var(--m3-on-primary);
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 97, 164, 0.3);
}
.btn-m3-primary:hover {
    background-color: var(--m3-primary-container);
    color: var(--m3-on-primary-container);
    box-shadow: 0 6px 12px rgba(0, 97, 164, 0.4);
    transform: translateY(-1px);
}
.m3-cta-banner {
    max-width: 800px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--m3-primary), var(--m3-tertiary));
    color: var(--m3-on-primary);
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.m3-cta-banner:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
.m3-cta-banner i { animation: pulse-icon 1.5s infinite; }

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- Testimonials Section (M3-Blue) --- */
.bg-light { background-color: var(--m3-background) !important; }
.text-primary { color: var(--m3-primary) !important; }
.text-muted { color: var(--m3-outline) !important; }
.text-dark { color: var(--m3-on-surface) !important; }
.text-warning { color: var(--m3-warning) !important; }
/* Overriding original testimonial-card style */
.testimonial-card {
    background-color: var(--m3-surface);
    border: 1px solid var(--m3-surface-variant);
    border-radius: var(--m3-card-radius);
    box-shadow: var(--m3-elevation-shadow);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    flex-grow: 1;
}
.m3-rating-callout {
    background-color: var(--m3-primary-container);
    color: var(--m3-on-surface);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
    display: inline-block;
    font-weight: 500;
}
.internal-icon {
    color: var(--m3-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    align-self: center;
}
/* Gallery Section */
    #gallery {
      padding: 0;
      margin: 0 auto;
      text-align: center;
      background-color: #f8f9fa;
    }
    #gallery ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    #gallery ul li {
      width: 25%;
      position: relative;
      background-size: cover;
      background-position: center;
      aspect-ratio: 1 / 1;
      overflow: hidden;
    }
    #gallery ul li a.swap {
      display: block;
      position: relative;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      height: 100%;
    }
    #gallery ul li a.swap strong {
      position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 51, 102, 0.75);
      padding: 0.5rem 1rem;
      border-radius: 30px;
      font-size: 1rem;
      transition: background 0.3s ease;
    }
    #gallery ul li a.swap:hover strong {
      background: rgba(25, 118, 210, 0.9);
    }
    #gallery ul li a.swap span img {
      width: 100%;
      transition: transform 0.4s ease;
    }
    #gallery ul li a.swap:hover span img {
      transform: scale(1.05);
    }
    #gallery .placeholder {
      display: none;
    }
    @media (max-width: 768px) {
      #gallery ul li { width: 50%; }
    }
    @media (max-width: 576px) {
      #gallery ul li { width: 100%; }
    }

    /* CTA Banner */
    .m3-cta-banner {
      background: linear-gradient(90deg, #0056b3, #42a5f5);
      border-radius: 50px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .m3-cta-banner:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    /* Final CTA Section */
    .cta-final-section {
      background: linear-gradient(135deg, #1976d2, #42a5f5);
    }

    /* Flatpickr Blue Theme */
    .flatpickr-calendar {
      border-radius: 10px;
      background: #e3f2fd;
      border: 1px solid #90caf9;
    }
    .flatpickr-day.today {
      background: #1976d2 !important;
      color: #fff !important;
      border-radius: 6px;
    }
    
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}
.news-section img {
  height: 220px;
  object-fit: cover;
}
.nav-pills .nav-link.active {
  background: #0066cc;
}
.nav-pills .nav-link {
  cursor: pointer;
}