:root {
    --primary-navy: #0c2444;
    --navy-dark: #061527;
    --navy-light: #16365f;
    --accent-gold: #d99215;
    --accent-gold-hover: #b8790c;
    --gold-glow: #f59e0b;
    --text-slate: #475569;
    --text-navy: #0c2444;
    --card-border: #e2e8f0;
    --font-heading: 'Inter Tight', 'Poppins', -apple-system, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Satisfy', cursive;
}

/* TOP BAR */
.top-bar {
    background: var(--primary-navy);
    padding: 0.5rem 0;
    font-size: 0.82rem;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-link:hover {
    color: var(--accent-gold);
}

.top-bar-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.top-bar-social:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    height: 70px;
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

body {
    font-family: var(--font-body);
    color: var(--text-slate);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.preloader-active {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-navy);
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-navy {
    color: var(--primary-navy) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-dark-navy {
    background-color: var(--navy-dark) !important;
}

.badge-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-tagline-gold {
    color: #facc15;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--primary-navy);
}

/* NAVBAR */
.site-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.6rem 0;
}

.site-navbar .nav-link {
    color: #1e293b;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: color 0.2s ease;
}

.site-navbar .nav-link:hover {
    color: var(--accent-gold);
}

.site-navbar .nav-link.active {
    color: var(--accent-gold) !important;
}

.site-navbar .nav-link.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 12px;
    right: 12px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.btn-nav-whatsapp {
    background-color: var(--primary-navy);
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s ease;
    border: none;
}

.btn-nav-whatsapp:hover {
    background-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12, 36, 68, 0.25);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
}

.hero-bg-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 15%,
        rgba(255, 255, 255, 0.65) 30%,
        rgba(255, 255, 255, 0.35) 45%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 75%
    );
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    padding: 3rem 0;
}

.hero-form-wrap {
    flex: 0 0 400px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(12, 36, 68, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-form-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
}

.hero-form-wrap .form-control,
.hero-form-wrap .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.hero-form-wrap .form-control:focus,
.hero-form-wrap .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(217, 146, 21, 0.1);
}

.hero-form-wrap .form-control::placeholder {
    color: #94a3b8;
}

.hero-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-navy);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-phone-box:hover {
    background: var(--navy-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 36, 68, 0.2);
}

.hero-phone-box i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.hero-phone-label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
}

.hero-phone-number {
    font-size: 1rem;
    font-weight: 700;
    display: block;
}

.hero-tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 146, 21, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.hero-tagline-badge i {
    font-size: 0.9rem;
}

/* INNER PAGE BANNER */
.page-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(217, 146, 21, 0.06);
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-banner-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-banner-breadcrumb a:hover {
    color: var(--accent-gold);
}

.page-banner-breadcrumb .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.page-banner-breadcrumb .current {
    color: var(--accent-gold);
}

/* ABOUT PAGE */
.about-intro-img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 36, 68, 0.12);
}

.about-intro-img img {
    height: 380px;
    object-fit: cover;
    width: 100%;
}

.about-mission-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: #ffffff;
    height: 100%;
}

.about-mission-card .mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(217, 146, 21, 0.15);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-vision-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.about-vision-card .vision-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(12, 36, 68, 0.1);
    border-color: rgba(217, 146, 21, 0.3);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-name {
    color: var(--primary-navy);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* SERVICES PAGE */
.service-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(12, 36, 68, 0.1);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.service-detail-title {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-detail-text {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.service-feature-list li {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: #475569;
}

.service-feature-list li i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

/* CONTACT PAGE */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(12, 36, 68, 0.08);
    border-color: rgba(217, 146, 21, 0.3);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--primary-navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(12, 36, 68, 0.05);
}

.contact-form-box .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.contact-form-box .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(217, 146, 21, 0.1);
}

.contact-form-box .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.4rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 36, 68, 0.25);
    color: #ffffff;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
}

.hero-bg-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 15%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0) 75%
    );
}

.hero-content-col {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.hero-title {
    font-size: 3.3rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 0.98rem;
    color: var(--text-slate);
    max-width: 480px;
    line-height: 1.65;
}

.hero-features-row {
    max-width: 480px;
}

.hero-feature-item {
    padding: 0.2rem 0;
}

.feature-icon-svg {
    font-size: 1.35rem;
    color: var(--primary-navy);
    line-height: 1;
}

.feature-label {
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary-navy);
}

.btn-hero-primary {
    background-color: var(--primary-navy);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    transition: all 0.25s ease;
}

.btn-hero-primary:hover {
    background-color: var(--navy-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 36, 68, 0.25);
}

.btn-hero-outline {
    background-color: #ffffff;
    color: var(--primary-navy);
    border: 1.5px solid var(--primary-navy);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.btn-hero-outline:hover {
    background-color: var(--primary-navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 36, 68, 0.15);
}

/* SERVICES SECTION */
.services-section {
    background: #ffffff;
    padding: 5rem 0;
}

.services-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
}

.services-welcome-badge i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
}

.services-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
}

.btn-view-all {
    background: var(--primary-navy);
    color: #ffffff;
    padding: 0.7rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--navy-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 36, 68, 0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.services-left,
.services-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
}

.service-card-item:hover {
    border-color: rgba(217, 146, 21, 0.3);
    box-shadow: 0 10px 30px rgba(12, 36, 68, 0.08);
    transform: translateY(-3px);
}

.service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid #dc3545;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: #ffffff;
}

.service-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(12, 36, 68, 0.04);
    line-height: 1;
    pointer-events: none;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-navy);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
}

.service-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-card-link:hover i {
    transform: translate(2px, -2px);
}

.services-center-img {
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}

.services-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .services-center-img {
        order: -1;
        min-height: 300px;
    }
    .services-left,
    .services-right {
        flex-direction: row;
    }
    .service-card-item {
        flex: 1;
    }
}

@media (max-width: 767.98px) {
    .services-title {
        font-size: 2rem;
    }
    .services-left,
    .services-right {
        flex-direction: column;
    }
    .service-card-number {
        font-size: 3rem;
    }
}

.service-box {
    border: 1px solid var(--card-border) !important;
    transition: all 0.25s ease;
}

.service-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(12, 36, 68, 0.08) !important;
    border-color: rgba(217, 146, 21, 0.4) !important;
}

.service-icon-square {
    width: 44px;
    height: 44px;
    background-color: var(--primary-navy);
    color: #ffffff;
    font-size: 1.15rem;
    border-radius: 8px;
}

.service-box-title {
    color: var(--primary-navy);
    font-size: 1.05rem;
    font-family: var(--font-body);
}

.services-banner-box {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-passport-img {
    height: 380px;
    object-fit: cover;
}

.script-overlay-passport {
    bottom: 25px;
    right: 30px;
}

.script-overlay-passport .script-text {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.script-swoosh-arc {
    width: 100%;
    height: 12px;
    border-bottom: 3px solid #facc15;
    border-radius: 50%;
    margin-top: -6px;
}

/* DESTINATIONS SECTION */
.destinations-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.destinations-section .badge-tagline,
.destinations-section .section-title,
.destinations-section .text-muted {
    text-align: center;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dest-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(12, 36, 68, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e8ecf1;
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(12, 36, 68, 0.14);
    border-color: rgba(217, 146, 21, 0.3);
}

.dest-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.08);
}

.dest-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    background: #fff;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease;
}

.dest-card:hover .dest-flag {
    transform: scale(1.12);
}

.dest-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dest-card-content {
    padding: 1rem 1.1rem 1.15rem;
    text-align: center;
}

.dest-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: var(--font-body);
    margin-bottom: 0.25rem;
}

.dest-visa {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.dest-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.25s ease;
}

.dest-link:hover {
    color: var(--primary-navy);
    gap: 0.55rem;
}

/* ABOUT US SECTION */
.about-section {
    background: #ffffff;
    padding: 5rem 0;
}

.about-img-wrapper {
    position: relative;
}

.about-main-img {
    box-shadow: 0 20px 50px rgba(12, 36, 68, 0.12);
}

.about-main-img img {
    height: 450px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--primary-navy);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(12, 36, 68, 0.2);
}

.about-experience-badge .exp-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.about-experience-badge .exp-text {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.about-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-welcome-badge i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
}

.about-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
}

.about-features-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
}

.about-features-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.about-features-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary-navy);
}

.about-feature-item i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.about-phone-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--primary-navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-phone-icon:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

.about-phone-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.about-phone-number {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
}

@media (max-width: 991.98px) {
    .about-experience-badge {
        left: 10px;
        transform: translateY(-50%);
    }
    .about-main-img img {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 2rem;
    }
    .about-experience-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }
    .about-main-img img {
        height: 300px;
    }
    .about-features-card {
        flex-direction: column;
        text-align: center;
    }
}

.why-img-box {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(12, 36, 68, 0.15);
    position: relative;
}

.traveler-photo {
    height: 450px;
    object-fit: cover;
    display: block;
}

.script-overlay-traveler {
    bottom: 30px;
    left: 30px;
}

.script-travel-word {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.why-item-card {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.1rem !important;
}

.why-item-card:hover {
    background-color: #ffffff;
    border-color: rgba(217, 146, 21, 0.3);
    box-shadow: 0 8px 24px rgba(12, 36, 68, 0.08);
    transform: translateY(-3px);
}

.why-circle-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(12, 36, 68, 0.2);
}

.why-item-title {
    color: var(--primary-navy);
    font-size: 0.93rem;
    font-family: var(--font-body);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
}

/* HOW IT WORKS */
.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(12, 36, 68, 0.08);
    line-height: 1;
}

/* FAQ ACCORDION */
.accordion-button {
    font-family: var(--font-body);
    color: var(--primary-navy);
    font-size: 0.95rem;
    padding: 1.1rem 1.25rem;
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: var(--primary-navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(217, 146, 21, 0.15);
    border-color: rgba(217, 146, 21, 0.3);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c2444'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-item {
    border: 1px solid #e2e8f0 !important;
}

.accordion-body {
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 1.25rem 1.1rem;
}

/* CTA BANNER SECTION */
.cta-banner-section {
    background: url('../images/cta-bg.svg') center center / cover no-repeat, var(--navy-dark);
    position: relative;
    padding: 4.5rem 0;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 21, 39, 0.95) 0%, rgba(6, 21, 39, 0.8) 50%, rgba(8, 32, 66, 0.7) 100%);
}

.cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.script-cta-text {
    color: #f59e0b;
    font-family: var(--font-script);
    font-size: 2.3rem;
    line-height: 1.15;
}

.btn-cta-gold {
    background-color: #f59e0b;
    color: var(--navy-dark) !important;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    transition: all 0.25s ease;
}

.btn-cta-gold:hover {
    background-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.btn-cta-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.btn-cta-outline:hover {
    background-color: #ffffff;
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.cta-country-row .cta-country-item {
    color: #ffffff;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.cta-country-row .cta-country-item:hover {
    opacity: 1;
}

.cta-country-icon {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.cta-country-label {
    font-size: 0.72rem;
    display: block;
    letter-spacing: 0.5px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: #f8fafc;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-quote {
    font-style: normal;
    line-height: 1.7;
    font-size: 0.92rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-navy);
}

.testimonial-location {
    font-size: 0.8rem;
}

.rating-stars {
    font-size: 0.85rem;
}

.testimonial-box {
    background-color: #ffffff;
    border: 1px solid var(--card-border) !important;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.testimonial-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

.testimonial-quote {
    font-style: normal;
    line-height: 1.6;
}

.rating-stars {
    font-size: 0.85rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
}

/* FOOTER */
.site-footer {
    background: url('../images/dest-italy.jpg') center center / cover no-repeat, var(--navy-dark);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 21, 39, 0.95) 0%, rgba(6, 21, 39, 0.88) 100%);
    z-index: 0;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

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

.footer-contact li {
    font-size: 0.88rem;
}

.footer-contact a:hover {
    color: #ffffff !important;
}

.social-box {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-box:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-keywords {
    letter-spacing: 0.3px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991.98px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 0;
    }
    .hero-content {
        text-align: center;
    }
    .hero-form-wrap {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .cta-banner-section .text-end {
        text-align: start !important;
    }
    .cta-country-row {
        justify-content: flex-start !important;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-desc {
        font-size: 0.92rem;
    }
    .hero-form-wrap {
        padding: 1.5rem;
    }
    .cta-title {
        font-size: 1.85rem;
    }
    .traveler-photo {
        height: 300px;
    }
    .services-passport-img {
        height: 280px;
    }
    .footer-subbar {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .dest-flag {
        width: 38px;
        height: 38px;
        top: 8px;
        right: 8px;
        border-width: 2px;
    }
    .dest-card-content {
        padding: 0.8rem 0.9rem 1rem;
    }
    .why-item-card {
        padding: 0.9rem !important;
    }
    .why-circle-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }
    .script-travel-word {
        font-size: 2rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ========================
   SCROLL REVEAL ANIMATIONS
   ======================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.reveal-left {
    transform: translateX(-50px);
}

.reveal.reveal-right {
    transform: translateX(50px);
}

.reveal.reveal-scale {
    transform: scale(0.9);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========================
   STATS COUNTER SECTION
   ======================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(217, 146, 21, 0.08);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(217, 146, 21, 0.15);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--accent-gold);
    color: #ffffff;
    transform: scale(1.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .counter-suffix {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========================
   TESTIMONIALS CAROUSEL
   ======================== */
.testimonials-section {
    background-color: #f8fafc;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-track .testimonial-box {
    min-width: calc(33.333% - 1rem);
    flex: 0 0 calc(33.333% - 1rem);
    margin-right: 1.5rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-navy);
    background: transparent;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-navy);
    color: #ffffff;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-gold);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 991.98px) {
    .testimonial-track .testimonial-box {
        min-width: calc(50% - 0.75rem);
        flex: 0 0 calc(50% - 0.75rem);
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-track .testimonial-box {
        min-width: 100%;
        flex: 0 0 100%;
        margin-right: 0;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
