/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    /* Colors from logo */
    --primary-color: #F5A623;
    --primary-dark: #E89B0C;
    --accent-color: #8B0000;
    --accent-light: #A52A2A;

    /* Additional colors */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F5A623 0%, #E89B0C 100%);
    --gradient-accent: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(245, 166, 35, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==========================================
   Header & Navigation
   ========================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-overlay);
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--text-white);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--accent-color);
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card .country-flag {
    font-size: 2.5rem;
}

.floating-card p {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--text-white);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card>p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: var(--transition-normal);
}

.service-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* ==========================================
   Destinations Section
   ========================================== */
.destinations {
    background: var(--bg-white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.destination-card:hover::before {
    opacity: 0.05;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.destination-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
}

.destination-card.featured::after {
    content: '⭐ Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.destination-flag {
    font-size: 4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.destination-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.destination-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.destination-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.destination-tags span {
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat-item h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transform: rotate(-5deg);
    transition: var(--transition-normal);
}

.about-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.about-card img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p,
.info-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.contact-form .btn {
    grid-column: 1 / -1;
    margin-top: 10px;
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-card img {
        width: 200px;
        height: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   Enhanced Creative Hero Elements
   ========================================== */

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeFloat 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #F5A623, #E89B0C);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

/* Airplane Animation */
.airplane-animation {
    position: absolute;
    top: 0;
    left: -100px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.airplane {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: flyAcross 25s linear infinite;
}

@keyframes flyAcross {
    0% {
        left: -100px;
        top: 20%;
    }

    100% {
        left: calc(100% + 100px);
        top: 30%;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Animated Rotating Text */
.highlight-animated {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.highlight-animated .word {
    display: block;
    height: 100%;
    padding-left: 10px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotateWords 9s infinite;
}

.highlight-animated .word:nth-child(2) {
    animation-delay: 3s;
}

.highlight-animated .word:nth-child(3) {
    animation-delay: 6s;
}

@keyframes rotateWords {

    0%,
    33.33% {
        transform: translateY(0%);
        opacity: 1;
    }

    36.66%,
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Enhanced Buttons */
.btn-icon,
.btn-icon-left {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary:hover .btn-icon-left {
    transform: scale(1.2);
}

/* 3D Floating Cards */
.floating-card-3d {
    position: absolute;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 140px;
    height: 160px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backface-visibility: hidden;
}

.floating-card-3d .country-flag {
    font-size: 3rem;
}

.floating-card-3d p {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: float3D 4s ease-in-out infinite;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation: float3D 5s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation: float3D 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.card-4 {
    top: 25%;
    right: 25%;
    animation: float3D 5.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-25px) rotateY(10deg);
    }
}

/* Globe Animation */
.globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 0;
}

.globe {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: rotateGlobe 30s linear infinite;
}

.globe-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: globeShine 3s ease-in-out infinite;
}

@keyframes rotateGlobe {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes globeShine {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Enhanced Scroll Indicator */
.scroll-indicator p {
    color: var(--text-white);
    font-size: 0.8rem;
    margin-top: 8px;
    font-weight: 500;
    opacity: 0.8;
}

/* ==========================================
   Hero Image Slider
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 90px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

.slider-arrow:hover svg {
    color: var(--text-white);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--text-white);
    width: 40px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
        margin-top: 70px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 250px;
        margin-top: 60px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }
}

/* ==========================================
   Page Hero Section
   ========================================== */
/* ==========================================
   Page Hero Section
   ========================================== */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/page-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 60px;
    margin-top: 90px;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 50px;
        margin-top: 70px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0 40px;
        margin-top: 60px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   Process Timeline Animation
   ========================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding: 20px 0;
}

.process-step {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-15px) !important;
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    animation: iconBounce 1s infinite alternate;
}

@keyframes iconBounce {
    from {
        transform: translateY(0) scale(1.1);
    }

    to {
        transform: translateY(-5px) scale(1.1);
    }
}

.process-step h4 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Connecting Dashed Line (Desktop) */
@media (min-width: 993px) {

    /* Remove the old dashed line */
    .process-timeline::after {
        display: none;
    }

    /* Add Arrow between steps */
    .process-step::after {
        content: '➜';
        /* Right Arrow Icon */
        position: absolute;
        top: 50%;
        right: -30px;
        /* Position it outside the card */
        transform: translateY(-50%);
        font-size: 2rem;
        color: var(--primary-color);
        z-index: 2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        animation: pulseArrow 2s infinite;
    }

    /* Hide arrow for the last item in each row (every 3rd item) */
    .process-step:nth-child(3n)::after {
        display: none;
    }

    /* Hide arrow for the absolute last item just in case */
    .process-step:last-child::after {
        display: none;
    }
}

@keyframes pulseArrow {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-50%) translateX(5px);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.5;
    }
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   About Page Redesign
   ========================================== */
.about-section-redesign {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-redesign-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Image Column */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* Right Content Column */
.about-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e2a4a;
    /* Dark Blue */
    margin-bottom: 25px;
    font-weight: 700;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Vision Mission Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.mv-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mv-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    /* Logo Primary Color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.mv-item:hover .mv-icon {
    background: var(--primary-color);
    color: white;
}

.mv-text h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #1e2a4a;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.about-bullet-list {
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.bullet-item i {
    color: #1e2a4a;
    font-size: 1.1rem;
}

.btn-red {
    background: var(--gradient-primary);
    /* Logo Gradient */
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

@media (max-width: 992px) {
    .about-redesign-content {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Hero Slider Content Redesign
   ========================================== */
.slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    /* Darker gradient for text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    max-width: 800px;
    padding: 20px;
    color: white;
}

.slide-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: width 0.3s, background 0.3s, transform 0.3s, opacity 0.8s ease 0.7s;
    /* Mixed transition shorthand - fixing below */
}

/* Fix transition for button to handle hover and load animation separately if needed, 
   but for simplicity, we keep it combined or use animation keyframes. 
   Let's refine the button style to be cleaner. */

.slide-btn {
    /* Resetting for clarity */
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

    /* Animation state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s, box-shadow 0.3s, background 0.3s, transform 0.3s;
}

/* Hover state overrides the transform from animation */
.slide-btn:hover {
    transform: translateY(-5px);
    /* This might conflict with the slide-in. 
                                    Better to use animation for slide-in and transition for hover, 
                                    or ensure active class locks it. */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* When active, lock the base position so hover can work relative to it? 
   Actually, standard transition works if we set the final state. */
.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .slide-btn:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}


/* ==========================================
   Split Hero Layout Redesign (FreightSoft Style)
   ========================================== */
.hero-slider {
    background: #f0f4f8;
    /* Light blue/gray background */
    padding: 60px 0;
    height: auto;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Side - Text Content */
.hero-text-side {
    text-align: left;
    padding-right: 20px;
}

.hero-main-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    /* Dark Navy */
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.15rem;
    color: #64748b;
    /* Slate Gray */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-blue-fill {
    background: var(--gradient-primary);
    /* Logo Gradient */
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(245, 166, 35, 0.2);
    border: none;
}

.btn-blue-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(245, 166, 35, 0.3);
}

.btn-outline-gray {
    background: transparent;
    color: #475569;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #cbd5e1;
    transition: all 0.3s ease;
}

.btn-outline-gray:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: white;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: bold;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Right Side - Image Slider */
.hero-image-side {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.image-slide.active {
    opacity: 1;
}

.image-slide img,
.image-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls within Image */
.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

.nav-arrow:hover {
    background: white;
    transform: scale(1.1);
    color: #2563eb;
}

@media (max-width: 992px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text-side {
        padding-right: 0;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-badge {
        justify-content: center;
    }

    .hero-image-side {
        height: 350px;
    }
}

/* ==========================================
   FAQ Section (SEO Optimized)
   ========================================== */
.faq-section {
    background: #f9fafb;
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: #1e2a4a;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e2a4a;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question.active {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Country Tags in Answer */
.faq-country-tags {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.country-tag {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0 5px;
    background: none;
}

.country-tag:first-child {
    padding-left: 0;
}

.country-tag::after {
    content: '|';
    margin-left: 10px;
    color: #ccc;
    font-weight: 400;
}

.country-tag:last-child::after {
    content: '';
    margin-left: 0;
}

.country-tag:hover {
    color: #1e2a4a;
    text-decoration: underline;
    background: none;
    transform: none;
    box-shadow: none;
}