/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary-blue: #0047AB;
    --dark-blue: #003380;
    --light-blue: #1E5FCC;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header Styles
   ======================================== */
.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-blue);
}

.logo-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.phone-link i {
    font-size: 12px;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-blue);
}

.phone-link:hover i {
    transform: translateY(2px);
}

/* Mobile Menu Toggle */
.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-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.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 Section
   ======================================== */
.hero {
    padding: 80px 0 100px;
    background-position: center left, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, contain;
    position: relative;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
        url('../img/hero-bg (1).jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 500px;
}

/* Hero Text */
.hero-text {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

/* .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: fadeInUp 0.8s ease-out;
} */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 71, 171, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 71, 171, 0.2);
}

.btn-secondary i {
    transition: var(--transition);
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.card-content .btn {
    margin-top: auto;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.card-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 20px 0;
    max-width: 70%;
}

.card-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    object-fit: contain;
}

/* Featured Schengen Card */
.featured-card {
    background-image:
        linear-gradient(135deg, rgba(0, 71, 171, 0.95) 0%, rgba(30, 95, 204, 0.9) 100%),
        url('img/eu_flag_background.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    grid-column: span 1;
}

.featured-card .card-title,
.featured-card .card-description {
    color: var(--white);
}

/* Badge */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Button Variants */
.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* ========================================
   Schengen Visa Services Section
   ======================================== */
.schengen-services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.schengen-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.schengen-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.schengen-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    padding-left: 10px;
}

.check-icon {
    flex-shrink: 0;
}

.service-item span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.schengen-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========================================
   Popular Visa Destinations Section
   ======================================== */
.destinations {
    padding: 80px 0;
    background-color: var(--white);
}

.destinations-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.destination-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background-color: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.destination-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.1);
    transform: translateY(-2px);
}

.flag-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50%;
}

.destination-info {
    flex: 1;
}

.destination-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.destination-type {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.flag-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.destination-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.destinations-cta {
    text-align: center;
}

/* ========================================
   Schengen Visa Banner Section
   ======================================== */
.schengen-banner {
    padding: 0;
    background-color: var(--white);
}

.banner-wrapper {
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(to right, rgba(240, 247, 255, 0.98) 0%, rgba(230, 242, 255, 0.85) 50%, rgba(230, 242, 255, 0.3) 100%),
        url('../img/Background%20airplane.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #e0e8f0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
}

.banner-content {
    flex: 0 0 60%;
    padding: 50px 60px;
}

.banner-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    margin-bottom: 30px;
}

.banner-description p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.banner-description p:last-child {
    margin-bottom: 0;
}

.banner-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
}

.airplane-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(0, 71, 171, 0.03) 0px, transparent 1px, transparent 50px, rgba(0, 71, 171, 0.03) 51px),
        repeating-linear-gradient(0deg, rgba(0, 71, 171, 0.03) 0px, transparent 1px, transparent 50px, rgba(0, 71, 171, 0.03) 51px);
    opacity: 0.4;
}

.airplane {
    position: absolute;
    font-size: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: flyAround 15s ease-in-out infinite;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}

@keyframes flyAround {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    25% {
        transform: translate(-30%, -60%) rotate(-40deg);
    }

    50% {
        transform: translate(-60%, -40%) rotate(-50deg);
    }

    75% {
        transform: translate(-40%, -55%) rotate(-43deg);
    }
}

/* ========================================
   Client Testimonials Section
   ======================================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 60px;
    /* Space for navigation arrows */
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Default: Show cards 1-4, hide cards 5-8 */
.testimonial-card:nth-child(n+5) {
    display: none;
}

/* Page 2: Hide cards 1-4, show cards 5-8 */
.testimonials-container.page-2 .testimonial-card:nth-child(-n+4) {
    display: none;
}

.testimonials-container.page-2 .testimonial-card:nth-child(n+5) {
    display: block;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-dark);
    font-size: 18px;
}

.testimonial-nav:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-nav:disabled:hover {
    background-color: var(--white);
    border-color: var(--border-color);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1);
}

.testimonial-nav-prev {
    left: 0;
}

.testimonial-nav-next {
    right: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 3px 0;
}

.client-location {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.rating {
    margin-bottom: 15px;
}

.star {
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.testimonials-dots {
    display: none;
    /* Hidden - using lazy loading instead of slider */
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d4d4d4;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   How It Works Section
   ======================================== */
.process {
    padding: 80px 0;
    background-color: var(--white);
}

.process__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.process__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.15);
    background-color: var(--white);
}

.process__step-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.process__step:hover .process__step-icon {
    transform: scale(1.1);
}

.process__step-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 80px 0;
}

.faq__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__item {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.1);
}

.faq__item.active {
    border-color: var(--primary-blue);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.faq__question span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    padding-right: 15px;
}

.faq__icon {
    font-size: 24px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

/* Contact Section */

.contact {
    padding: 80px 0 80px 50px;
    margin: 100px auto;
    max-width: 1200px;
    background-image: linear-gradient(135deg, rgba(248, 249, 250, 0.65) 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%), url('../img/contact-us_back2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
}

.contact h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact h3 {
    max-width: 600px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact__action {
    text-decoration: none;
}

.contact__btn {
    font-size: 86px;
    font-weight: 700;
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #10778c;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact__btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.contact__btn ion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contact__btn:hover ion-icon {
    transform: rotate(360deg) scale(1.2);
}

/* ========================================
   Footer Section
   ======================================== */
.footer {
    background-color: #f8f9fb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.footer-link {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone:hover {
    color: #003a8c;
}

.footer-phone i {
    font-size: 14px;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-content {
        gap: 40px;
    }

    /* Services */
    .services-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

    /* Process Section */
    .process__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process__step {
        padding: 25px 15px;
    }

    .process__step-icon {
        width: 70px;
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Header */
    .header-content {
        gap: 20px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: var(--transition);
        justify-content: flex-start;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 50px 0 60px;
        background-image:
            linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3)),
            url('../img/hero-bg.jpg');
        background-position: center top;
        background-size: cover;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        color: var(--text-dark);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Services - Single Column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-description {
        max-width: 65%;
    }

    .card-icon {
        width: 75px;
        height: 75px;
        padding: 12px;
    }

    /* Schengen Services */
    .schengen-title {
        font-size: 32px;
    }

    .schengen-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .service-item span {
        font-size: 16px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    /* Destinations */
    .destinations-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .destination-card {
        padding: 18px 20px;
    }

    .flag-icon {
        font-size: 40px;
        width: 50px;
        height: 50px;
    }

    .destination-name {
        font-size: 18px;
    }

    /* Schengen Banner */
    .banner-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .banner-content {
        flex: 1;
        padding: 40px 30px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-description p {
        font-size: 14px;
    }

    .banner-image {
        flex: 1;
        height: 200px;
        width: 100%;
    }

    .airplane {
        font-size: 60px;
    }

    /* Testimonials */
    .testimonials-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .testimonials-wrapper {
        padding: 0;
        overflow: hidden;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        gap: 0;
        transition: transform 0.3s ease;
        overflow-x: visible;
    }

    .testimonial-card {
        padding: 25px;
        flex: 0 0 100%;
        min-width: 100%;
        display: block !important;
    }

    .testimonials-container.page-2 .testimonial-card:nth-child(-n+4),
    .testimonials-container.page-2 .testimonial-card:nth-child(n+5) {
        display: block !important;
    }

    .testimonial-card:nth-child(n+5) {
        display: block !important;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonials-dots {
        display: flex !important;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-main {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-link:hover {
        padding-left: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq__title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .faq__question {
        padding: 18px 20px;
    }

    .faq__question span {
        font-size: 16px;
    }

    .faq__answer {
        font-size: 14px;
    }

    .faq__item.active .faq__answer {
        padding: 0 20px 18px 20px;
    }

    /* Process Section */
    .process {
        padding: 60px 0;
    }

    .process__title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process__step {
        padding: 25px 20px;
    }

    .process__step-icon {
        width: 70px;
        height: 70px;
    }

    .process__step-text {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 600px) {
    .logo-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .services {
        padding: 60px 0;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .service-card {
        padding: 25px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
        max-width: 60%;
    }

    .card-icon {
        width: 65px;
        height: 65px;
        padding: 10px;
        right: 15px;
    }

    .schengen-title {
        font-size: 28px;
    }

    .service-item span {
        font-size: 15px;
    }

    .destinations-title {
        font-size: 28px;
    }

    .flag-icon {
        font-size: 36px;
        width: 48px;
        height: 48px;
    }

    .destination-name {
        font-size: 17px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-content {
        padding: 35px 25px;
    }

    .airplane {
        font-size: 50px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .avatar {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .client-name {
        font-size: 16px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__question span {
        font-size: 15px;
    }

    .faq__icon {
        font-size: 20px;
    }
}

/* ========================================
   Trusted Visa Services Section
   ======================================== */
.trusted-services {
    padding: 80px 0;
    background-color: #F8F9FC;
}

.trusted-header {
    text-align: center;
    margin-bottom: 50px;
}

.trusted-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.trusted-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

/* Trusted Card */
.trusted-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.trusted-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 71, 171, 0.1);
}

.trusted-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.trusted-card-desc {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.trusted-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #F0F5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 71, 171, 0.1);
}

.trusted-icon-wrapper.right-aligned {
    margin-left: auto;
}

/* Card Variants */
.card-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-centered .trusted-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    /* White bg for this one */
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-centered .trusted-icon-wrapper i {
    font-size: 32px;
}

.flag-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-top-icon {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.card-horizontal .trusted-card-content {
    flex: 1;
}

.card-horizontal .trusted-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Dots */
.trusted-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-top: auto;
    /* Push to bottom if flex column */
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #E2E8F0;
    border-radius: 50%;
    transition: var(--transition);
}

.dot.active {
    background-color: #3B82F6;
    /* Light blue accent */
    width: 24px;
    border-radius: 4px;
}

.dot:nth-child(2) {
    opacity: 0.8;
}

.dot:nth-child(3) {
    opacity: 0.6;
}

.dot:nth-child(4) {
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .trusted-title {
        font-size: 28px;
    }
}