/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2563EB;
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background-color: #10B981;
    color: white;
}

.btn-primary:hover {
    background-color: #0DA271;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2563EB;
    border: 2px solid #2563EB;
}

.btn-secondary:hover {
    background-color: #2563EB;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: hsl(142, 71%, 39%);
}

.btn-call {
    border-color: #2563EB;
    color: hsl(142, 71%, 39%);
}

.btn-call:hover {
    background-color: hsl(142, 71%, 39%);;
    color: white;
}

.btn-small {
    padding: 10px 20px;
    min-height: 40px;
    font-size: 14px;
}

/* Header Styles */
.main-header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-text {
    font-size: 20px;
    color: #2563EB;
    margin-bottom: 4px;
}

.logo-tagline {
    font-size: 12px;
    color: #6B7280;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 24px;
}

.desktop-nav a {
    font-weight: 500;
    color: #4B5563;
    position: relative;
    padding: 4px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #2563EB;
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563EB;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2563EB;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.mobile-nav {
    display: none;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    padding: 16px 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #E5E7EB;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background-color: #F3F4F6;
    color: #2563EB;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 1600px;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: -1;
}

.hero-content {
    color: rgb(5, 86, 249);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 52px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheading {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Trust Strip */
.trust-strip {
    background-color: rgb(234, 189, 189);
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    position: relative;
}

.trust-strip.sticky {
    position: sticky;
    top: 76px; /* Header height */
}

.trust-strip-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
}

.trust-icon {
    font-size: 24px;
    color: #2563EB;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1F2937;
}

.trust-label {
    font-size: 14px;
    color: #6B7280;
}

/* Who We Help Section */
.who-we-help {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    color: #1F2937;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #806b6b;
    max-width: 600px;
    margin: 0 auto;
}

.help-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.help-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.help-card-image {
    height: 200px;
    overflow: hidden;
}

.help-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.help-card:hover .help-card-image img {
    transform: scale(1.05);
}

.help-card-content {
    padding: 24px;
}

.help-card-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1F2937;
}

.help-card-desc {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Services Snapshot */
.services-snapshot {
    padding: 64px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #2563EB;
}

.service-icon {
    font-size: 48px;
    color: #2563EB;
    margin-bottom: 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1F2937;
}

.service-desc {
    color: #6B7280;
    font-size: 14px;
}

/* Why Travelers Trust Us */
.why-trust-us {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.trust-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-list-item {
    display: flex;
    gap: 16px;
}

.trust-check {
    font-size: 24px;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 4px;
}

.trust-item-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #1F2937;
}

.trust-item-content p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 0;
}

/* Booking Process */
.booking-process {
    padding: 64px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    margin-bottom: 48px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 0 auto 16px;
}

.step-icon {
    font-size: 48px;
    color: #2563EB;
    margin-bottom: 16px;
    height: 64px;
}

.step-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1F2937;
}

.step-desc {
    color: #6B7280;
    max-width: 300px;
    margin: 0 auto;
}

.process-connector {
    display: none;
}

.process-cta {
    text-align: center;
}

/* Featured Tours */
.featured-tours {
    padding: 64px 0;
    background-color: #F8F9FA;
}


.tours-carousel {
    position: relative;
    margin-bottom: 48px;
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.tour-card {
    flex: 0 0 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 8px;
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 24px;
}

.tour-title {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 8px;
}

.tour-duration {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.tour-price {
    margin-bottom: 16px;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2563EB;
}

.price-note {
    display: block;
    font-size: 12px;
    color: #6B7280;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #2563EB;
    color: white;
    border-color: #2563EB;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: #2563EB;
}

.tours-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 64px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #F59E0B;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: #6B7280;
}

.testimonials-cta {
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #1A1A1A;
    color: #D1D5DB;
    padding-top: 64px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-heading {
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #2563EB;
}

.footer-tagline {
    color: #2563EB;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #9CA3AF;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #D1D5DB;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #2563EB;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-icon {
    color: #2563EB;
    width: 16px;
    margin-top: 2px;
}

.contact-info a {
    color: #D1D5DB;
}

.contact-info a:hover {
    color: #2563EB;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}


.footer-bottom {
    border-top: 1px solid #2D2D2D;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 200px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 14px;
    color: #D1D5DB;
}

.footer-legal a:hover {
    color: #2563EB;
}

/* Sticky WhatsApp Button (Mobile) */
.sticky-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.sticky-whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Helper Classes */
.desktop-only {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* Page Hero (for about, services, etc.) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero .hero-background img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.page-hero-content {
    color: rgb(255, 255, 255);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-heading {
    font-size: 48px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgb(203, 4, 4);
}

@media (min-width: 768px) {
    .page-hero-heading {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .page-hero-heading {
        font-size: 64px;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-top: 24px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 40px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgb(252, 4, 4);
}

.breadcrumb-item a {
    color: rgb(89, 5, 246);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #10B981;
    text-decoration: underline;
}

.breadcrumb-item[aria-current="page"] {
    color: #F59E0B;
    font-weight: 500;
}

/* Brand Introduction */
.brand-intro {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.brand-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 24px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .intro-text {
        font-size: 20px;
    }
}

/* Founder Story */
.founder-story {
    padding: 64px 0;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .founder-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 64px;
    }
}

.founder-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.founder-image img {
    width: 100%;
    height: 700px;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.03);
}

.founder-details {
    flex: 1;
}

.founder-name {
    font-size: 28px;
    color: #2563EB;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 24px;
    font-weight: 500;
}

.founder-quote {
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px;
    position: relative;
}

.quote-icon {
    color: #F59E0B;
    font-size: 24px;
    opacity: 0.5;
}

.quote-icon:first-child {
    position: absolute;
    top: 16px;
    left: 16px;
}

.quote-icon:last-child {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #78350F;
    margin: 0;
    padding: 0 16px;
}

.founder-bio p {
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 16px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

/* Our Belief */
.our-belief {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.belief-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .belief-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .belief-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.belief-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.belief-icon {
    font-size: 48px;
    color: #2563EB;
    margin-bottom: 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belief-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1F2937;
}

.belief-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
}

/* Our Experience */
.our-experience {
    padding: 64px 0;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .experience-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 48px;
    }
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.experience-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.experience-details p {
    font-size: 18px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 24px;
}

.experience-details p:last-child {
    margin-bottom: 0;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: #1F2937;
    text-align: center;
}

.about-cta .cta-title {
    color: #fa0707;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 48px;
    }
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    min-height: 60px;
    border-radius: 30px;
}

.cta-note {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
    opacity: 0.9;
}

.cta-note i {
    color: #10B981;
    margin-right: 4px;
}

/* Accordion Animation */
.service-expandable {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    margin: 0 24px;
    padding: 0;
    border-top: 0;
}

.service-expandable:not([hidden]) {
    max-height: 1000px;
    opacity: 1;
    padding: 24px 0;
    border-top: 1px solid #E5E7EB;
}

/* Animation classes */
.service-expandable.expanding {
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.service-expandable.collapsing {
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Page Hero with Subtitle */
.page-hero-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgb(253, 5, 5);
}

@media (min-width: 768px) {
    .page-hero-subtitle {
        font-size: 24px;
    }
}

/* Services Detailed Section */
.services-detailed {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Service Detailed Card */
.service-detailed-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-detailed-card.card-hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Service Card Header */
.service-card-header {
    display: flex;
    align-items: center;
    padding: 24px 24px 16px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white;
}

.service-icon-large {
    font-size: 48px;
    margin-right: 16px;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.service-header-content {
    flex: 1;
}

.service-title {
    font-size: 24px;
    margin-bottom: 4px;
    color: white;
}

.service-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

/* Service Card Image */
.service-card-image {
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detailed-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Service Card Content */
.service-card-content {
    padding: 24px;
    flex: 1;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 20px;
}

.features-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1F2937;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 15px;
    color: #4B5563;
}

.features-list li i {
    color: #10B981;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Service Card Footer */
.service-card-footer {
    padding: 0 24px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-learn-more {
    background: none;
    border: 2px solid #2563EB;
    color: #2563EB;
    padding: 10px 20px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #2563EB;
    color: white;
}

.learn-more-icon {
    transition: transform 0.3s ease;
}

/* Expandable Content */
.service-expandable {
    border-top: 1px solid #E5E7EB;
    margin: 0 24px;
    padding: 24px 0;
}

.expandable-content h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1F2937;
}

.expandable-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 20px;
}

.expandable-details {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
}

.detail-item {
    margin-bottom: 16px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item h5 {
    font-size: 16px;
    color: #2563EB;
    margin-bottom: 4px;
    font-weight: 600;
}

.detail-item p {
    font-size: 14px;
    margin-bottom: 0;
    color: #6B7280;
}

/* Why Choose Our Services Section */
.why-choose-services {
    padding: 80px 0;
    background-color: white;
}

.comparison-section {
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    padding: 32px 24px;
}

@media (max-width: 767px) {
    .comparison-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .vs-col {
        order: -1;
    }
}

.comparison-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-title {
    font-size: 22px;
    margin-bottom: 4px;
    color: white;
}

@media (min-width: 768px) {
    .comparison-title {
        font-size: 24px;
    }
}

.comparison-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.vs-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

@media (max-width: 767px) {
    .vs-col {
        padding: 16px 0;
    }
}

.vs-circle {
    width: 60px;
    height: 60px;
    background-color: #F59E0B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.comparison-items {
    padding: 0;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
}

@media (max-width: 767px) {
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .comparison-item .vs-col {
        display: none;
    }
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .comparison-point {
        justify-content: center;
    }
}

.comparison-point i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-point.negative i {
    color: #EF4444;
}

.comparison-point.positive i {
    color: #10B981;
}

.comparison-point span {
    flex: 1;
}

/* Services CTA */
.services-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    border-radius: 12px;
    padding: 48px 32px;
}

.cta-title {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1F2937;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
}

.cta-text {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

/* ============================================
   TOUR PACKAGES PAGE SPECIFIC STYLES
   ============================================ */

/* Package Categories */
.package-categories {
    padding: 40px 0 20px;
    background-color: #F8F9FA;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-tabs::-webkit-scrollbar {
    height: 6px;
}

.category-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 3px;
}

.category-tab {
    padding: 12px 24px;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.category-tab.active {
    background-color: #2563EB;
    border-color: #2563EB;
    color: white;
}

/* Package Grid Section */
.package-grid-section {
    padding: 40px 0 80px;
    background-color: #F8F9FA;
}

.package-panel {
    display: none;
}

.package-panel.active {
    display: block;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Package Card */
.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover,
.package-card.card-hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    backdrop-filter: blur(4px);
}

.package-badge i {
    color: #2563EB;
}

.package-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-header {
    margin-bottom: 12px;
}

.package-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1F2937;
    line-height: 1.2;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #F59E0B;
    font-size: 14px;
}

.rating-text {
    margin-left: 8px;
    color: #6B7280;
    font-size: 13px;
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.package-duration i {
    color: #2563EB;
}

.package-highlights {
    margin-bottom: 20px;
    flex: 1;
}

.package-highlights h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1F2937;
    font-weight: 600;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.4;
}

.highlights-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.package-price {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.price-info {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.price-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2563EB;
}

.price-note {
    font-size: 12px;
    color: #6B7280;
}

.includes-text {
    font-size: 13px;
    color: #10B981;
    font-weight: 500;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.btn-package-details {
    background: none;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    padding: 10px 20px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-package-details:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.no-packages-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.no-packages-message i {
    color: #2563EB;
    margin-bottom: 20px;
}

.no-packages-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1F2937;
}

.no-packages-message p {
    color: #6B7280;
    margin-bottom: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-packages-message .btn {
    margin-top: 20px;
}

/* Custom Tour Section */
.custom-tour {
    padding: 80px 0;
    background: linear-gradient(135deg, #004db9 0%, #0361f7 100%);
    color: white;
}

.custom-tour-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .custom-tour-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.custom-tour-text {
    flex: 1;
}

.custom-tour-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.custom-tour-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature i {
    color: #10B981;
    font-size: 20px;
}

.custom-tour-form {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tour-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .tour-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.tour-form label {
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 6px;
}

.tour-form input,
.tour-form select,
.tour-form textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1F2937;
    background-color: white;
    transition: border-color 0.3s ease;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus {
    outline: none;
    border-color: #2563EB;
}

.tour-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

.form-note {
    font-size: 14px;
    color: #6B7280;
    margin-top: 12px;
}

/* Modal Styles - FIXED */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent scrolling when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal {
    background-color: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F3F4F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-close:hover {
    background-color: #E5E7EB;
    transform: scale(1.1);
}

.modal-close i {
    color: #6B7280;
    font-size: 20px;
}

.modal-content {
    padding: 40px;
}

@media (max-width: 767px) {
    .modal-content {
        padding: 20px;
    }
}

.modal-package-header {
    margin-bottom: 24px;
}

.modal-title {
    font-size: 32px;
    color: #1F2937;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .modal-title {
        font-size: 24px;
    }
}

.modal-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    color: #6B7280;
    font-size: 16px;
}

.modal-location,
.modal-duration,
.modal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-location i,
.modal-duration i,
.modal-rating i {
    color: #2563EB;
}

.modal-rating i {
    color: #F59E0B;
}

.modal-package-image {
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-package-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-package-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.modal-section h3 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.modal-section p {
    color: #4B5563;
    line-height: 1.6;
}

.itinerary-days {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-day h4 {
    font-size: 18px;
    color: #2563EB;
    margin-bottom: 6px;
}

.itinerary-day p {
    color: #4B5563;
    line-height: 1.6;
}

.inclusions-exclusions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .inclusions-exclusions {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inclusions h4,
.exclusions h4 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inclusions h4 i {
    color: #10B981;
}

.exclusions h4 i {
    color: #EF4444;
}

.inclusions ul,
.exclusions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions li,
.exclusions li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
    line-height: 1.5;
}

.inclusions li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.exclusions li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}

.price-details {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 24px;
}

.price-breakdown {
    margin-bottom: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    font-weight: 700;
    font-size: 18px;
    color: #1F2937;
}

.total-amount {
    color: #2563EB;
    font-size: 24px;
}

.price-notes {
    font-size: 14px;
    color: #6B7280;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price-notes i {
    color: #2563EB;
    margin-top: 2px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

@media (min-width: 768px) {
    .modal-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Helper Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* ============================================
   WHY CHOOSE US PAGE SPECIFIC STYLES
   ============================================ */

/* Comparison Main Section */
.comparison-main {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.comparison-visual {
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.comparison-header {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    padding: 32px 24px;
}

@media (max-width: 767px) {
    .comparison-row {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .comparison-row.comparison-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .vs-col {
        order: -1;
        margin: 20px 0;
    }
}

.comparison-col {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-col.left-col {
    border-right: 1px solid #E5E7EB;
}

@media (max-width: 767px) {
    .comparison-col {
        padding: 20px 0;
    }
    
    .comparison-col.left-col {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        padding-bottom: 32px;
    }
    
    .comparison-col.right-col {
        padding-top: 32px;
    }
}

.comparison-col-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: inherit;
}

.comparison-col-subtitle {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

.comparison-col.vs-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

@media (max-width: 767px) {
    .comparison-col.vs-col {
        padding: 16px 0;
    }
}

.vs-circle {
    width: 60px;
    height: 60px;
    background-color: #F59E0B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.comparison-arrow {
    color: #2563EB;
    font-size: 24px;
}

.comparison-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .comparison-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}

.comparison-item.negative .comparison-icon {
    background-color: #FEE2E2;
    color: #DC2626;
}

.comparison-item.positive .comparison-icon {
    background-color: #D1FAE5;
    color: #059669;
}

.comparison-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .comparison-icon {
        margin-bottom: 12px;
    }
}

.comparison-content {
    flex: 1;
}

.comparison-item-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1F2937;
}

.comparison-item-desc {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.5;
}

.comparison-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.cta-text {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 24px;
}

/* Key Differentiators */
.key-differentiators {
    padding: 80px 0;
    background-color: white;
}

.differentiator-row {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.differentiator-row.animated {
    opacity: 1;
    transform: translateY(0);
}

.differentiator-row:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .differentiator-row {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
    
    .differentiator-row.reverse {
        flex-direction: row-reverse;
    }
}

.differentiator-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.differentiator-image img {
    width: 100%;
    height: 500px;
    display: block;
    transition: transform 0.5s ease;
}

.differentiator-row:hover .differentiator-image img {
    transform: scale(1.03);
}

.differentiator-content {
    flex: 1;
}

.differentiator-number {
    font-size: 72px;
    font-weight: 700;
    color: #E5E7EB;
    line-height: 1;
    margin-bottom: 8px;
}

.differentiator-title {
    font-size: 32px;
    color: #1F2937;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.differentiator-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2563EB;
}

.differentiator-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.differentiator-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    color: #10B981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.5;
}

/* Stats for Personalized Planning */
.differentiator-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Price Transparency */
.price-transparency {
    margin-top: 32px;
    padding: 24px;
    background-color: #F0F9FF;
    border-radius: 8px;
    border-left: 4px solid #2563EB;
}

.price-transparency h4 {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 16px;
}

.included-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 767px) {
    .included-items {
        grid-template-columns: 1fr;
    }
}

.included-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #4B5563;
}

.included-item:before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
}

/* Support Timeline */
.support-timeline {
    margin-top: 32px;
    padding: 24px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.support-timeline h4 {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 20px;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .timeline-steps {
        flex-direction: row;
        justify-content: space-between;
    }
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-circle {
    width: 32px;
    height: 32px;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

/* Safety Certifications */
.safety-certifications {
    margin-top: 32px;
    padding: 24px;
    background-color: #FEF3C7;
    border-radius: 8px;
    border-left: 4px solid #F59E0B;
}

.safety-certifications h4 {
    font-size: 18px;
    color: #78350F;
    margin-bottom: 20px;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 767px) {
    .certification-badges {
        grid-template-columns: 1fr;
    }
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge i {
    color: #F59E0B;
    font-size: 20px;
}

.badge span {
    font-size: 14px;
    color: #78350F;
    font-weight: 500;
}

/* Track Record Stats */
.track-record-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .track-record-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-card .stat-number {
    font-size: 28px;
    color: white;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background-color: #F8F9FA;
}

/* Testimonials Scroller */
.testimonials-scroller {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.scroller-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
        padding: 0 15px;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #F59E0B;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 2px;
}

.author-location {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 2px;
}

.author-trip {
    font-size: 13px;
    color: #2563EB;
    font-weight: 500;
}

.scroller-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroller-btn:hover {
    background-color: #2563EB;
    color: white;
    border-color: #2563EB;
}

.scroller-prev {
    left: 10px;
}

.scroller-next {
    right: 10px;
}

@media (max-width: 767px) {
    .scroller-btn {
        display: none;
    }
}

.scroller-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.scroller-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroller-indicator.active {
    background-color: #2563EB;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-item {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover,
.badge-item.badge-hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #2563EB;
    font-size: 24px;
}

.badge-content h4 {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 8px;
}

.badge-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 12px;
    color: white;
}

.cta-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: white;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 36px;
    }
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-guarantee i {
    color: #10B981;
}


/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Quick Contact Actions */
.quick-contact {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.contact-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .contact-actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-action-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.whatsapp-card {
    border-top: 4px solid #25D366;
}

.call-card {
    border-top: 4px solid #2563EB;
}

.email-card {
    border-top: 4px solid #EF4444;
}

.action-icon {
    font-size: 48px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-card .action-icon {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.call-card .action-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.email-card .action-icon {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.action-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #000000;
}

.action-desc {
    color: #000000;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.action-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #000000;
}

.stat-item i {
    color: #2563EB;
}

.contact-action-card .btn {
    width: 100%;
    margin-top: auto;
}

.action-note {
    font-size: 13px;
    color: #6B7280;
    margin-top: 16px;
    font-style: italic;
}

.contact-preference-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #FEF3C7;
    border-radius: 8px;
    border-left: 4px solid #F59E0B;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-preference-note i {
    color: #F59E0B;
    font-size: 20px;
    margin-top: 2px;
}

.contact-preference-note p {
    margin: 0;
    color: #78350F;
    font-size: 15px;
}

/* Contact Information Card */
.contact-info-section {
    padding: 64px 0;
    background-color: w332e51;
}

.contact-info-card {
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-info-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.contact-info-subtitle {
    font-size: 18px;
    color: #000000;
    margin-top: 8px;
}

.contact-info-content {
    padding: 0 40px 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-item {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #2563EB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-details {
    flex: 1;
}

.contact-info-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1F2937;
}

.contact-link {
    display: block;
    font-size: 16px;
    color: #2563EB;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 4px;
    word-break: break-all;
}

.contact-link:hover {
    text-decoration: underline;
}

.emergency-link {
    color: #EF4444;
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 13px;
    color: #6B7280;
    margin-top: 4px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-day {
    font-weight: 500;
    color: #4B5563;
}

.hours-time {
    color: #2563EB;
    font-weight: 500;
}

.contact-info-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #D1D5DB;
}

.response-time-info h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #1F2937;
}

.response-times {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.response-times li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #4B5563;
}

.response-times li i {
    width: 20px;
    text-align: center;
}

.response-times li .fa-whatsapp {
    color: #25D366;
}

.response-times li .fa-phone-alt {
    color: #2563EB;
}

.response-times li .fa-envelope {
    color: #EF4444;
}

/* Map Section */
.map-section {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.map-container {
    margin-top: 40px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.map-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .map-notes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.map-note-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
}

.map-note-item i {
    color: #2563EB;
    font-size: 20px;
    margin-top: 2px;
}

.map-note-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #1F2937;
}

.map-note-item p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    padding: 64px 0;
    background-color: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-top: 8px;
    margin-bottom: 24px;
}

.contact-form-note {
    padding: 16px;
    background-color: #F0F9FF;
    border-radius: 8px;
    border-left: 4px solid #0EA5E9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.contact-form-note i {
    color: #0EA5E9;
    font-size: 20px;
    margin-top: 2px;
}

.contact-form-note p {
    margin: 0;
    color: #0C4A6E;
    font-size: 15px;
}

.contact-form-content {
    background-color: #F8F9FA;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .contact-form-content {
        padding: 24px;
    }
}

.travel-contact-form {
    width: 100%;
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 12px;
    border: 2px solid #10B981;
}

.success-icon {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 20px;
}

.form-success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1F2937;
}

.form-success-message p {
    color: #4B5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.form-success-message a {
    color: #2563EB;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
}

.label-text {
    flex: 1;
}

.required-indicator {
    color: #EF4444;
    font-size: 12px;
    font-weight: normal;
}

.optional-indicator {
    color: #6B7280;
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1F2937;
    background-color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.form-input.valid {
    border-color: #10B981;
    background-color: #F0FDF4;
}

.form-input::placeholder {
    color: #9CA3AF;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-error {
    color: #EF4444;
    font-size: 13px;
    margin-top: 4px;
    min-height: 18px;
}

.form-hint {
    color: #6B7280;
    font-size: 13px;
    margin-top: 4px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #2563EB;
}

.form-checkbox label {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox a {
    color: #2563EB;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 32px;
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

.form-submit-note {
    margin-top: 16px;
    font-size: 13px;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-note i {
    color: #10B981;
}

.loading-spinner {
    margin-left: 8px;
}

.error-tooltip {
    position: absolute;
    background-color: #EF4444;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 4px;
    z-index: 10;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.error-tooltip:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 16px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #EF4444;
}

/* Office Image Section */
.office-image-section {
    padding: 64px 0;
    background-color: #F8F9FA;
}

.office-image-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .office-image-container {
        flex-direction: row;
        align-items: center;
    }
}

.office-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.office-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .office-image img {
        height: 400px;
    }
}

.office-description {
    flex: 1;
    padding: 24px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.office-description h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1F2937;
}

.office-description p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.office-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .office-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.office-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4B5563;
}

.office-feature i {
    color: #2563EB;
    width: 20px;
}

.office-visit-cta {
    padding: 20px;
    background-color: #F0F9FF;
    border-radius: 8px;
    border-left: 4px solid #0EA5E9;
}

.office-visit-cta p {
    margin-bottom: 16px;
    color: #0C4A6E;
}

.office-visit-cta .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .office-visit-cta .btn {
        width: auto;
    }
}



/* ============================================
   POLICIES & INFO PAGE SPECIFIC STYLES
   ============================================ */

/* Policies Navigation */
.policies-nav {
    padding: 40px 0 20px;
    background-color: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
}

.policies-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.policy-tab {
    padding: 16px 24px;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.policy-tab:hover {
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policy-tab.active {
    background-color: #2563EB;
    border-color: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.policy-tab i {
    font-size: 24px;
    margin-bottom: 4px;
}

.policy-tab span {
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

/* Mobile Accordion Navigation */
.policies-accordion-nav {
    background-color: white;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    overflow: hidden;
}

.accordion-nav-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
}

.accordion-nav-header h3 {
    font-size: 18px;
    color: #1F2937;
    margin: 0;
}

.accordion-nav-header i {
    color: #6B7280;
    transition: transform 0.3s ease;
}

.accordion-nav-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-nav-content.active {
    max-height: 400px;
}

.policy-accordion-btn {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid #E5E7EB;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.policy-accordion-btn:last-child {
    border-bottom: none;
}

.policy-accordion-btn:hover {
    background-color: #F8F9FA;
    color: #2563EB;
}

.policy-accordion-btn.active {
    background-color: #EFF6FF;
    color: #2563EB;
    font-weight: 500;
}

.policy-accordion-btn i {
    font-size: 20px;
    width: 24px;
}

.policy-accordion-btn span {
    font-size: 16px;
}

/* Policies Content */
.policies-content {
    padding: 60px 0;
    background-color: white;
}

.policy-section {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.policy-section:not(.active) {
    display: none;
}

.policy-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E5E7EB;
}

.policy-icon {
    width: 64px;
    height: 64px;
    background-color: #EFF6FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 28px;
    flex-shrink: 0;
}

.policy-title-content {
    flex: 1;
}

.policy-title {
    font-size: 36px;
    color: #1F2937;
    margin-bottom: 8px;
}

.policy-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.5;
}

/* Booking Process Styles */
.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.booking-step {
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.booking-step.animated {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 8px;
}

.step-content {
    flex: 1;
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E7EB;
}

.booking-step:last-child .step-content {
    border-bottom: none;
    padding-bottom: 0;
}

.step-content h3 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 12px;
}

.step-content p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-actions {
    margin-top: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.step-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
}

.step-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.quote-details {
    background-color: #F0F9FF;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.quote-details h4 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 12px;
}

.quote-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (max-width: 767px) {
    .quote-items {
        grid-template-columns: 1fr;
    }
}

.quote-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4B5563;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods h4 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 16px;
}

.method-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .method-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}

.method-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.method-icon:hover {
    transform: translateY(-2px);
    background-color: #E5E7EB;
}

.method-icon i {
    font-size: 24px;
    color: #2563EB;
}

.method-icon span {
    font-size: 13px;
    color: #4B5563;
    text-align: center;
}

.confirmation-docs {
    background-color: #F0F9FF;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.confirmation-docs h4 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 12px;
}

.confirmation-docs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.confirmation-docs li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
}

.confirmation-docs li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-size: 20px;
    line-height: 1;
}

.support-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .support-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.support-feature i {
    color: #2563EB;
    font-size: 20px;
    margin-top: 2px;
}

.support-feature h5 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 4px;
}

.support-feature p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.policy-cta {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
}

.policy-cta h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.policy-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

/* Payment Terms Styles */
.payment-overview {
    margin-bottom: 40px;
}

.payment-overview h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 16px;
}

.payment-overview p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.payment-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .payment-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.payment-card {
    background-color: white;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.payment-card-header {
    background-color: #EFF6FF;
    padding: 24px;
    text-align: center;
    border-bottom: 2px solid #2563EB;
}

.payment-percentage {
    font-size: 40px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 8px;
    line-height: 1;
}

.payment-card-header h4 {
    font-size: 18px;
    color: #1F2937;
    margin: 0;
}

.payment-card-body {
    padding: 24px;
}

.payment-card-body p {
    color: #4B5563;
    margin-bottom: 16px;
    line-height: 1.5;
}

.payment-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-card-body li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
    font-size: 14px;
}

.payment-card-body li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-size: 20px;
    line-height: 1;
}

.payment-details {
    margin-bottom: 40px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .detail-row {
        flex-direction: row;
        gap: 48px;
    }
}

.detail-col {
    flex: 1;
}

.detail-col h4 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.methods-list, .security-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-item, .security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.method-item i, .security-item i {
    color: #2563EB;
    font-size: 24px;
    margin-top: 2px;
}

.method-item h5, .security-item h5 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 4px;
}

.method-item p, .security-item p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.important-notes {
    background-color: #FEF3C7;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
    border-left: 4px solid #F59E0B;
}

.important-notes h4 {
    font-size: 18px;
    color: #78350F;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.important-notes h4 i {
    color: #D97706;
}

.important-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-notes li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #78350F;
    font-size: 15px;
}

.important-notes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D97706;
    font-size: 20px;
    line-height: 1;
}

.policy-contact {
    background-color: #EFF6FF;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.policy-contact h4 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 12px;
}

.policy-contact p {
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-options {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

/* Cancellation Policy Styles */
.cancellation-overview {
    margin-bottom: 40px;
}

.cancellation-overview h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 16px;
}

.cancellation-overview p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cancellation-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background-color: #FEF3C7;
    border-radius: 8px;
    border-left: 4px solid #F59E0B;
}

.cancellation-notice i {
    color: #D97706;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cancellation-notice p {
    margin: 0;
    color: #78350F;
}

.cancellation-notice a {
    color: #1E40AF;
    font-weight: 500;
}

.cancellation-tiers {
    margin-bottom: 40px;
}

.cancellation-tiers h4 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.tier-table {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.tier-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #1F2937;
    color: white;
    font-weight: 600;
    text-align: center;
}

.tier-col {
    padding: 16px;
    border-right: 1px solid #374151;
}

.tier-col:last-child {
    border-right: none;
}

.tier-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #E5E7EB;
    text-align: center;
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row .tier-col {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #E5E7EB;
}

.tier-row .tier-col:last-child {
    border-right: none;
}

.tier-period {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.tier-note {
    font-size: 12px;
    color: #6B7280;
}

.tier-charge {
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 4px;
}

.tier-desc {
    font-size: 12px;
    color: #6B7280;
}

.tier-refund {
    font-weight: 600;
    color: #059669;
}

.cancellation-details {
    margin-bottom: 40px;
}

.consideration-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.consideration-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.consideration-item h5 {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consideration-item h5 i {
    color: #2563EB;
}

.consideration-item p {
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
}

.force-majeure {
    padding: 24px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.force-majeure p {
    color: #4B5563;
    margin-bottom: 16px;
    line-height: 1.5;
}

.force-majeure ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.force-majeure li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
}

.force-majeure li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-size: 20px;
    line-height: 1;
}

.insurance-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #D1FAE5;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

.insurance-note i {
    color: #059669;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.insurance-note p {
    margin: 0;
    color: #065F46;
}

.insurance-note strong {
    color: #065F46;
}

.cancellation-steps {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 24px;
}

.cancellation-steps li {
    margin-bottom: 12px;
    color: #4B5563;
    line-height: 1.5;
}

.cancellation-steps li a {
    color: #2563EB;
    font-weight: 500;
}

/* Terms & Conditions Styles */
.terms-intro {
    margin-bottom: 40px;
}

.terms-intro h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 16px;
}

.terms-intro p {
    color: #4B5563;
    line-height: 1.6;
}

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.terms-section h4 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.terms-content h5 {
    font-size: 18px;
    color: #1F2937;
    margin: 20px 0 12px;
}

.terms-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.terms-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
    line-height: 1.5;
}

.terms-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-size: 20px;
    line-height: 1;
}

.terms-content p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dispute-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background-color: #FEF3C7;
    border-radius: 8px;
    margin-top: 20px;
}

.dispute-note i {
    color: #D97706;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.dispute-note p {
    margin: 0;
    color: #78350F;
}

.amendment-fees {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.amendment-fees h5 {
    margin-top: 0;
}

.amendment-fees ul {
    margin-bottom: 0;
}

.terms-acknowledgment {
    margin-top: 40px;
}

.acknowledgment-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 12px;
    color: white;
}

.acknowledgment-box i {
    font-size: 40px;
    flex-shrink: 0;
}

.acknowledgment-box h4 {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.acknowledgment-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Privacy Policy Styles */
.privacy-intro {
    margin-bottom: 40px;
}

.privacy-intro h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 16px;
}

.privacy-intro p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-update {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 14px;
}

.privacy-update i {
    color: #2563EB;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.privacy-section h4 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.privacy-content h5 {
    font-size: 18px;
    color: #1F2937;
    margin: 20px 0 12px;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.privacy-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
    line-height: 1.5;
}

.privacy-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-size: 20px;
    line-height: 1;
}

.data-usage-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background-color: #D1FAE5;
    border-radius: 8px;
    margin-top: 20px;
}

.data-usage-note i {
    color: #059669;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.data-usage-note p {
    margin: 0;
    color: #065F46;
}

.sharing-agreement {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.sharing-agreement h5 {
    margin-top: 0;
}

.sharing-agreement p {
    color: #4B5563;
    margin: 0;
    line-height: 1.5;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .security-measures {
        grid-template-columns: 1fr;
    }
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.security-item i {
    color: #2563EB;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-item h5 {
    font-size: 16px;
    color: #1F2937;
    margin: 0 0 4px;
}

.security-item p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.rights-request {
    background-color: #F0F9FF;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.rights-request h5 {
    margin-top: 0;
}

.rights-request p {
    color: #4B5563;
    margin: 0;
    line-height: 1.5;
}

.rights-request a {
    color: #2563EB;
    font-weight: 500;
}

.cookie-control {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.cookie-control h5 {
    margin-top: 0;
}

.cookie-control p {
    color: #4B5563;
    margin-bottom: 16px;
    line-height: 1.5;
}

.privacy-contact {
    margin-top: 40px;
}

.contact-box {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 12px;
    padding: 32px;
    color: white;
}

.contact-box h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-details {
        flex-direction: row;
        justify-content: space-between;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    color: #2563EB;
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.contact-item a, .contact-item p {
    color: white;
    margin: 0;
    line-height: 1.5;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Company Information Styles */
.company-overview {
    margin-bottom: 40px;
}

.company-overview h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 16px;
}

.company-overview p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .company-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.company-stats .stat {
    text-align: center;
    padding: 24px 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.company-stats .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 8px;
}

.company-stats .stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.company-details {
    margin-bottom: 40px;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.info-item h5 {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-item p {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-note {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.company-credentials {
    margin-bottom: 40px;
}

.company-credentials h4 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.credential-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #F8F9FA;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
    background-color: #E5E7EB;
}

.credential-icon {
    width: 48px;
    height: 48px;
    background-color: #2563EB;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.credential-content h5 {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 8px;
}

.credential-content p {
    color: #4B5563;
    margin: 0;
    line-height: 1.5;
}

.company-verification {
    margin-bottom: 40px;
}

.company-verification h4 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 16px;
}

.company-verification p {
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.5;
}

.verification-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.verification-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.verification-item i {
    color: #2563EB;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.verification-item h5 {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 8px;
}

.verification-item p {
    margin: 0;
    color: #4B5563;
    line-height: 1.5;
}

.verification-item a {
    color: #2563EB;
    font-weight: 500;
}

.verification-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background-color: #D1FAE5;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

.verification-note i {
    color: #059669;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.verification-note p {
    margin: 0;
    color: #065F46;
}

.company-cta {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
}

.company-cta h4 {
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.company-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* Policies Contact Banner */
.policies-contact-banner {
    padding: 60px 0;
    background-color: #F8F9FA;
    border-top: 1px solid #E5E7EB;
}

.contact-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .contact-banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.banner-text h3 {
    font-size: 28px;
    color: #1F2937;
    margin-bottom: 12px;
}

.banner-text p {
    color: #4B5563;
    line-height: 1.6;
    max-width: 500px;
}

.banner-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .banner-actions {
        flex-direction: row;
    }
}



/* Logo with Text */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    color: #2563EB;
    margin: 0;
}

/* Footer Logo */
.footer-logo-img {
    height: 85px;
    width: auto;
    margin-bottom: 10px;}
/*filter: brightness(0) invert(1);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .logo a {
        gap: 8px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
}