/* Base Styles */
:root {
    --primary-color: #09713D;
    --primary-dark: #0a8547;
    /* Matched Home Hover */
    --text-color: #000000;
    --text-light: #333333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Header & Nav (Consistent with Home) */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-contact {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(9, 113, 61, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section (Uniform with Home) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    /* Matched Home */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 800px;
    /* Matched Home */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80');
    /* New Image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 113, 61, 0.65);
    /* Matched Home Overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    /* Matched Home */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    /* Matched Home */
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
}

/* Service Sections */
.service-section {
    padding: 6rem 0;
    position: relative;
}

.service-section.bg-light {
    background-color: var(--bg-light);
}

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

.service-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .service-body {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 4rem;
    }

    /* Zig-Zag Layout */
    .service-section:nth-child(even) .service-body {
        flex-direction: row-reverse;
    }

    /* Ensure full width for the booking process when it wraps */
    .service-section .service-body .booking-process-detailed,
    .service-section .service-body .visa-process-detailed {
        flex: 0 0 100%;
        width: 100%;
        margin-top: 2rem;
    }

    /* Reset direction for the full-width item so it doesn't look reversed */
    .service-section:nth-child(even) .service-body .booking-process-detailed,
    .service-section:nth-child(even) .service-body .visa-process-detailed {
        direction: ltr;
        /* Ensure content inside flows normally */
    }
}

/* Slider */
.slider-container {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Fixed width as requested */
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-img.active {
    opacity: 1;
}

/* Details Content */
.details-content {
    flex: 1.2;
}

.details-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.details-content h3:first-child {
    margin-top: 0;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Highlights Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-card:hover img {
    transform: scale(1.1);
}

.highlight-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
}

/* Booking Info */
.booking-info {
    background: #f0f7f4;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .booking-info {
        grid-template-columns: 1.5fr 1fr;
    }
}

.process ol {
    padding-left: 1.5rem;
}

.process li {
    margin-bottom: 0.5rem;
}

.checklist ul {
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.checklist li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* CTA */
.cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(9, 113, 61, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(9, 113, 61, 0.4);
}

/* Wave Bottom */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

/* Footer (Consistent with Home) */
.footer {
    background: #09713D;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    align-self: flex-start;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 16px;
}

.footer-social {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.social-container {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Visa Assistance Specific Styles */
.important-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    color: #856404;
}

.important-guidelines {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f7f4;
    border-radius: 12px;
}

.important-guidelines>h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-left: none;
    padding-left: 0;
}

.important-guidelines>p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.guideline-box {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.guideline-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.guideline-box ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.guideline-box ul li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Detailed Booking Process Styles (Refactored to match Book Your Trip) */
.booking-process-detailed,
.visa-process-detailed {
    background: #fff;
    /* Changed to white to match book-your-trip style or keep light bg? Book your trip uses white cards on white/light bg */
    padding: 2.5rem 0;
    /* Adjusted padding */
    border-radius: 15px;
    margin-bottom: 2rem;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); Removed to match flow style which has cards */
}

.booking-process-detailed>h3,
.visa-process-detailed>h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    border-left: none;
    padding-left: 0;
    grid-column: 1 / -1;
}

/* Horizontal Flow Timeline */
.flow-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.flow-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(9, 113, 61, 0.3);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    max-width: 120px;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Flow Steps Grid */
.flow-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.flow-step-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    /* Ensure equal height */
}

.flow-step-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(9, 113, 61, 0.15);
    transform: translateY(-5px);
}

.flow-step-card .step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.flow-step-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.flow-step-card p {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.flow-step-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.flow-step-card ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-detail {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .flow-timeline {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}