/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a8fe3;
    --dark-blue: #0a1628;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    overflow-x: hidden;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 50px;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(200, 225, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lang-toggle {
    position: relative;
    z-index: 1;
    margin-left: auto;
}

.header-container .btn-primary {
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 220px;
    width: auto;
    object-fit: contain;
    margin: -70px 0;
    filter: brightness(0) invert(1);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.nav-link.active {
    text-decoration: none;
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1578c2;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 143, 227, 0.3);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
    cursor: pointer;
}

.lang-option {
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0.5;
    border: 2px solid transparent;
}

.lang-option.active {
    opacity: 1;
    border-color: var(--primary-blue);
}

.lang-option:hover {
    opacity: 1;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.2) 0%,
        rgba(10, 22, 40, 0.1) 50%,
        rgba(10, 22, 40, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Background Titles */
.hero-titles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.hero-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.hero-title-bg.active {
    opacity: 1;
}

/* Destination Label */
.hero-destination {
    position: absolute;
    bottom: 30%;
    left: 50px;
    z-index: 2;
}

.destination-label {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.destination-label.active {
    opacity: 1;
    transform: translateY(0);
}

.label-line {
    width: 3px;
    height: 80px;
    background: var(--white);
}

.destination-label span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.1em;
}

.label-line-horizontal {
    width: 150px;
    height: 2px;
    background: var(--white);
}

/* Circle Image */
.hero-circle-image {
    position: absolute;
    right: 100px;
    bottom: 15%;
    z-index: 2;
}

.circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
}

.arc {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.arc-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}

.arc-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(30deg);
}

.arc-3 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    transform: rotate(60deg);
}

.circle-images-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
}

.circle-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.circle-image-container.active {
    opacity: 1;
    transform: scale(1);
}

.circle-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--white);
}

/* Methodology Section */
.methodology {
    background-color: var(--white);
    padding: 30px 50px;
    text-align: center;
}

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

.methodology-label {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    display: block;
    margin-bottom: 8px;
}

.methodology-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.methodology-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.steps-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 0;
}

.process-sidebar {
    position: sticky;
    top: 0;
    align-self: flex-start;
    padding-top: 80px;
    flex-shrink: 0;
    width: 180px;
    z-index: 50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    padding-left: 0;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 30px;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 60px);
    background-color: #d1d5db;
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f3f4f6;
    border: 2px solid #d1d5db;
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.process-step.active .step-circle {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(26, 143, 227, 0.5);
}

.step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-align: left;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.process-step.active .step-label {
    color: var(--dark-blue);
    font-weight: 700;
}

/* Steps Cards Section - Stacking Animation */
.steps-cards {
    background: transparent;
    padding: 0;
}

.cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
    min-width: 0;
}

.step-card:first-child {
    margin-top: 80px;
}

.step-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.card-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.card-excerpt {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-figure {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-figure img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* CTA Section */
.cta-section {
    padding: 40px 40px;
    background: transparent;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--primary-blue);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-cta-outline {
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Requirements Page */
.req-page {
    background: #ffffff;
}

.header-solid {
    background-color: rgba(200, 225, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.req-hero {
    padding: 140px 40px 40px;
    text-align: center;
}

.req-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;

}

.req-subtitle {
    font-size: 1rem;
    color: rgba(10, 22, 40, 0.6);
    font-style: italic;
}

.req-section {
    padding: 40px 40px 80px;
}

.req-container {
    max-width: 800px;
    margin: 0 auto;
}

.req-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.req-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.req-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 30px rgba(26, 143, 227, 0.25), 0 0 60px rgba(26, 143, 227, 0.1);
    max-width: 500px;
    transition: box-shadow 0.3s ease;
}

.req-card:hover {
    box-shadow: 0 4px 40px rgba(26, 143, 227, 0.4), 0 0 80px rgba(26, 143, 227, 0.2);
}

.req-card-left {
    align-self: flex-start;
}

.req-card-right {
    align-self: flex-end;
}

.req-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 143, 227, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.req-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.req-card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Photo Guide */
.photo-guide-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.photo-guide-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-example {
    position: relative;
    display: inline-block;
}

.photo-example-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 143, 227, 0.85);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 14px;
    border-radius: 20px;
    z-index: 1;
}

.photo-example img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.photo-size-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.photo-guide-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photo-guide-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.photo-guide-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.photo-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.photo-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--dark-blue);
}

.photo-note {
    background: #f0f4ff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.photo-note strong {
    color: var(--dark-blue);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    padding: 60px 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 220px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
    margin-top: -60px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Payment Page */
.payment-page {
    background: #ffffff;
}

.payment-hero {
    padding: 160px 40px 40px;
    text-align: center;
}

.payment-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1.2;

}

.payment-subtitle {
    font-size: 1rem;
    color: rgba(10, 22, 40, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.payment-process {
    padding: 20px 40px 80px;
}

.payment-process-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.payment-step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.payment-step:last-child {
    padding-right: 0;
}

.payment-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 143, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.payment-step-line {
    position: absolute;
    top: 24px;
    left: 52px;
    right: -16px;
    height: 2px;
    background: #d1d5db;
}

.payment-step:last-child .payment-step-line {
    display: none;
}

.payment-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.payment-step-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Agency Location Section */
.agency-section {
    background: #dce8f0;
    padding: 60px 40px 80px;
}

.agency-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
}

.agency-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.agency-card-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    padding: 24px 30px 0;
}

.agency-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.agency-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
}

.agency-search-input input {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-blue);
    width: 100%;
}

.agency-search-input input::placeholder {
    color: #9ca3af;
}

.agency-search-radius {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-blue);
    cursor: pointer;
    appearance: auto;
}

.agency-search-btn {
    padding: 12px 28px;
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.agency-search-btn:hover {
    background: #0d1f3c;
}

.agency-results {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 400px;
}

.agency-list {
    border-right: 1px solid #e5e7eb;
}

.agency-item {
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
    cursor: pointer;
}

.agency-item:hover {
    background: #f9fafb;
}

.agency-item:first-child {
    background: #f0f7ff;
}

.agency-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.agency-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.agency-badge {
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--primary-blue);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 20px;
}

.agency-address {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.agency-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.agency-hours,
.agency-distance {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.agency-map {
    position: relative;
    background: #e5e7eb;
}

.agency-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

/* Book Consultation Page & Section */
.book-page {
    background: #ffffff;
}

.book-section {
    background: #ffffff;
    padding: 160px 40px 80px;
}

.book-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.book-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;

}

.book-subtitle {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.book-step-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.book-meeting-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 24px;
}

.book-card {
    background: var(--white);
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

/* Calendar */
.book-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.book-calendar-month {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.book-calendar-nav {
    display: flex;
    gap: 8px;
}

.book-calendar-nav button {
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--dark-blue);
    transition: background 0.2s;
}

.book-calendar-nav button:hover {
    background: #f3f4f6;
}

.book-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    text-align: center;
}

.book-calendar-grid .day-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    padding: 8px 0;
}

.book-calendar-grid .day-cell {
    font-size: 0.8rem;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 8px;
    color: var(--dark-blue);
    transition: background 0.2s;
}

.book-calendar-grid .day-cell:hover {
    background: #f3f4f6;
}

.book-calendar-grid .day-cell.other-month {
    color: #d1d5db;
}

.book-calendar-grid .day-cell.selected {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.book-calendar-grid .day-cell.today {
    border: 1px solid var(--primary-blue);
}

/* Time Slots */
.book-slots-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.book-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
}

.book-slots-grid::-webkit-scrollbar {
    width: 4px;
}

.book-slots-grid::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.book-slots-grid::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.book-slots-grid::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.book-slot {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-blue);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.book-slot:hover {
    border-color: var(--primary-blue);
    background: rgba(26, 143, 227, 0.05);
}

.book-slot.selected {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* Your Information Section */
.book-info-section {
    background: #ffffff;
    padding: 60px 40px 80px;
}

.book-info-section .book-step-heading {
    color: var(--dark-blue);
}

.book-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.book-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.book-form-group {
    margin-bottom: 20px;
}

.book-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.book-form-input,
.book-form-select,
.book-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-blue);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.book-form-input::placeholder,
.book-form-textarea::placeholder {
    color: #9ca3af;
}

.book-form-input:focus,
.book-form-select:focus,
.book-form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.book-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.book-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.book-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.book-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.book-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

.book-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.book-submit-btn.sent {
    background: #16a34a;
}

.book-form-message {
    text-align: center;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.book-form-message.success {
    background: #dcfce7;
    color: #166534;
}

.book-form-message.error {
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 768px) {
    .book-card {
        grid-template-columns: 1fr;
    }

    .book-title {
        font-size: 1.6rem;
    }

    .book-section {
        padding: 60px 20px;
    }

    .book-form-row {
        grid-template-columns: 1fr;
    }

    .book-info-section {
        padding: 40px 20px 60px;
    }

    .book-info-card {
        padding: 24px;
    }
}

/* FAQ Page */
.faq-page {
    background: #ffffff;
}

.faq-hero {
    padding: 160px 40px 40px;
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1.2;

}

.faq-subtitle {
    font-size: 1rem;
    color: rgba(10, 22, 40, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-section {
    padding: 40px 40px 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(26, 143, 227, 0.15);
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(26, 143, 227, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-gray);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-cta {
    background: #f9fafb;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 20px 30px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-section {
        padding: 20px 20px 60px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.88rem;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-circle-image {
        right: 50px;
    }

    .circle-decoration {
        width: 350px;
        height: 350px;
    }

    .circle-images-wrapper {
        width: 280px;
        height: 280px;
    }

    .circle-image-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 15px 30px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-destination {
        left: 30px;
        bottom: 40%;
    }

    .hero-circle-image {
        right: 30px;
        bottom: 10%;
    }

    .circle-decoration {
        width: 280px;
        height: 280px;
    }

    .circle-images-wrapper {
        width: 220px;
        height: 220px;
    }

    .circle-image-container {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .methodology {
        padding: 60px 30px;
    }

    .methodology-title {
        font-size: 1.8rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-line {
        width: 2px;
        height: 70%;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Steps Cards Responsive */
    .step-card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }

    .card-description {
        padding: 40px 30px;
        text-align: center;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-figure {
        min-height: 300px;
    }

    .card-figure img {
        width: 60%;
    }

    .hero-title-bg {
        font-size: 3rem;
    }

    .destination-label span {
        font-size: 1.2rem;
    }

    .label-line-horizontal {
        width: 80px;
    }

    .hero-circle-image {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .hero-destination {
        position: relative;
        left: auto;
        bottom: auto;
        text-align: center;
        padding-top: 150px;
    }

    .destination-label {
        flex-direction: column;
        position: relative;
    }

    .destination-label.active {
        position: relative;
    }

    .label-line {
        width: 80px;
        height: 3px;
    }

    .circle-decoration {
        display: none;
    }

    .circle-images-wrapper {
        width: 250px;
        height: 250px;
    }

    .circle-image-container {
        width: 250px;
        height: 250px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .slide-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 20px;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-title-bg {
        font-size: 2rem;
    }

    .circle-images-wrapper {
        width: 200px;
        height: 200px;
    }

    .circle-image-container {
        width: 200px;
        height: 200px;
    }
}

/* Chatbot Widget */
.chatbot-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26, 143, 227, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(26, 143, 227, 0.5);
}

.chatbot-toggle svg {
    width: 26px;
    height: 26px;
    transition: transform 0.3s;
}

.chatbot-toggle.open svg {
    transform: rotate(90deg);
}

.chatbot-window {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.chatbot-window.open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header-avatar svg {
    width: 18px;
    height: 18px;
}

.chatbot-header-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.chatbot-header-status {
    font-size: 0.75rem;
    opacity: 0.85;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    opacity: 0.8;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    max-height: 340px;
}

.chatbot-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-msg.bot {
    background: var(--light-gray);
    color: var(--dark-blue);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbot-msg.user {
    background: var(--primary-blue);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-suggestions {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.chatbot-suggestion-btn {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e7ef;
    border-radius: 10px;
    background: var(--white);
    color: var(--dark-blue);
    font-size: 0.84rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    font-family: 'Poppins', sans-serif;
}

.chatbot-suggestion-btn:hover {
    background: #f0f7ff;
    border-color: var(--primary-blue);
}

.chatbot-back-btn {
    width: 100%;
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--text-gray);
    font-size: 0.82rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s;
    font-family: 'Poppins', sans-serif;
}

.chatbot-back-btn:hover {
    background: #e5e7eb;
}

.chatbot-cta-btn {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.84rem;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s;
    font-family: 'Poppins', sans-serif;
}

.chatbot-cta-btn:hover {
    background: #1580cc;
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100% - 24px);
        right: 12px;
        bottom: 84px;
        max-height: 70vh;
    }

    .chatbot-toggle {
        right: 16px;
        bottom: 16px;
    }
}
