/* 
 * T.A.B. International - Landing Page Styles
 * Color Scheme: Blue (#00329d), Orange (#fa6400), Yellow (#ffd900)
 */

/* =====================================================
   Reset & Base Styles
   ===================================================== */

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

:root {
    /* Brand Colors */
    --primary-blue: #00329d;
    --primary-orange: #fa6400;
    --primary-yellow: #ffd900;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #212529;
    
    /* Semantic Colors */
    --success: #28a745;
    --info: #17a2b8;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* =====================================================
   Typography
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* =====================================================
   Utility Classes
   ===================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* =====================================================
   Buttons
   ===================================================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #002177;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: #e05900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn i {
    margin-left: 8px;
}

/* =====================================================
   Navigation
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo img {
    height: 70px;
    width: auto;
}

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

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 8px 4px;
}

.nav-menu li a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 12px 20px!important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #e05900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* =====================================================
   Hero Section with Slider
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #00184c 0%, #0179ff 100%);
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../assets/images/hero-image.jpg') center top / cover no-repeat,
                linear-gradient(135deg, #00184c 0%, #0179ff 100%);
    animation: slowPanDown 25s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 24, 76, 0.85) 0%, rgba(1, 121, 255, 0.75) 100%);
    z-index: 1;
}

/* Slow Pan Down Animation */
@keyframes slowPanDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 50, 157, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-slide.active .hero-content {
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for text elements */
.hero-slide.active .hero-title {
    animation: fadeInText 1.2s ease-out 0.3s both;
}

.hero-slide.active .hero-subtitle {
    animation: fadeInText 1.2s ease-out 0.6s both;
}

.hero-slide.active .hero-tagline {
    animation: fadeInText 1.2s ease-out 0.9s both;
}

.hero-slide.active .btn {
    animation: fadeInText 1.2s ease-out 1.2s both;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-content .btn {
    margin: 0 0.5rem 1rem;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.slider-nav:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    width: 40px;
    border-radius: 10px;
}

/* Hero Stats Container */
.hero-stats-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 50, 157, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
}

.stat-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
}

.stat-item span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* =====================================================
   About Section
   ===================================================== */

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    text-align: left;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.highlight-item p {
    color: var(--dark-gray);
    margin: 0;
}

/* =====================================================
   Services Section
   ===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border-top: 4px solid var(--primary-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* =====================================================
   Countries Section - Advanced Design
   ===================================================== */

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.country-card {
    background: linear-gradient(to bottom, var(--white) 0%, #f8f9fa 100%);
    padding: 0;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange), var(--primary-yellow));
}

.country-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 50, 157, 0.2);
    border-color: var(--primary-blue);
}

.country-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 0.75rem;
    background: linear-gradient(135deg, rgba(0, 50, 157, 0.05), rgba(250, 100, 0, 0.05));
}

.country-flag-modern {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flag-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.country-badge {
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(250, 100, 0, 0.3);
}

.country-badge.premium {
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    box-shadow: 0 4px 10px rgba(0, 50, 157, 0.3);
}

.country-name {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    padding: 0 1.5rem;
}

.country-subtitle {
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
    font-style: italic;
}

.country-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

.country-services {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.country-services h4 {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-services h4 i {
    color: var(--primary-orange);
}

.country-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
}

.country-features li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.country-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.country-highlights {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    padding: 1rem 1.5rem 1.5rem;
    justify-content: center;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--medium-gray);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.highlight-tag:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.highlight-tag i {
    font-size: 0.8rem;
    color: var(--primary-orange);
}

.highlight-tag:hover i {
    color: var(--primary-yellow);
}

/* =====================================================
   Process Section - Modern Timeline
   ===================================================== */

.modern-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Marker (Left Side) */
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.marker-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 50, 157, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 50, 157, 0.4);
}

.marker-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.marker-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    margin-top: 0.5rem;
    position: relative;
}

.timeline-item.last-item .marker-line {
    display: none;
}

/* Timeline Content (Right Side) */
.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-orange);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 50, 157, 0.1), rgba(250, 100, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.timeline-icon.success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.2));
    color: var(--success);
}

.timeline-item:hover .timeline-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: var(--white);
}

.timeline-text {
    flex: 1;
}

.timeline-text h3 {
    color: var(--primary-blue);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-text p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-badge.success {
    background: linear-gradient(135deg, var(--success), #20c997);
    color: var(--white);
}

/* =====================================================
   Testimonials Section
   ===================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: var(--dark-gray);
    font-size: 0.875rem;
}

/* =====================================================
   Documents Section
   ===================================================== */

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.document-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 4px solid var(--primary-blue);
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-orange);
}

.document-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.document-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.document-item p {
    color: var(--dark-gray);
    font-size: 0.875rem;
    margin: 0;
}

/* =====================================================
   Why Choose Us Section
   ===================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* =====================================================
   FAQs Section
   ===================================================== */

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    color: var(--primary-orange);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0.4rem 2rem 0.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* =====================================================
   Contact Section
   ===================================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--dark-gray);
    margin: 0;
}

.contact-details a {
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    font-weight: 500;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.social-link i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
}

.social-link:hover i {
    background: var(--primary-orange);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    height: 100%;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #0052cc);
    color: var(--white);
    border-radius: 12px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    margin: 0 0.5rem;
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--medium-gray);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-services li {
    color: var(--medium-gray);
}

.footer-contact p {
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--medium-gray);
    margin: 0;
}

/* =====================================================
   Scroll to Top Button
   ===================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
}

/* =====================================================
   Animations
   ===================================================== */

.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    /* Slider mobile adjustments */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 1rem;
    }
    
    .slider-nav.next {
        right: 1rem;
    }
    
    .slider-dots {
        bottom: 130px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
        padding-top: 70px;
        padding-bottom: 0;
    }
    
    .hero-slide {
        min-height: 80vh;
        align-items: center;
        padding-bottom: 120px;
    }
    
    .hero-content {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats-container {
        padding: 1rem 0;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        justify-content: center;
        flex: 1;
        min-width: 150px;
    }
    
    .stat-item i {
        font-size: 1.75rem;
    }
    
    .stat-item strong {
        font-size: 1.25rem;
    }
    
    .stat-item span {
        font-size: 0.75rem;
    }
    
    /* Sections */
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Grids */
    .services-grid,
    .countries-grid,
    .testimonials-grid,
    .documents-grid,
    .features-grid,
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    /* Timeline mobile adjustments */
    .timeline-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .marker-circle {
        width: 50px;
        height: 50px;
    }
    
    .marker-number {
        font-size: 1.125rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-text h3 {
        font-size: 1.125rem;
    }
    
    .timeline-text p {
        font-size: 0.875rem;
    }
    
    /* Country cards mobile adjustments */
    .country-features {
        grid-template-columns: 1fr;
    }
    
    .country-highlights {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2rem;
    }
    
    .country-highlights::-webkit-scrollbar {
        height: 6px;
    }
    
    .country-highlights::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 3px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    .cta-section .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero {
        min-height: 75vh;
        padding-top: 60px;
    }
    
    .hero-slide {
        min-height: 75vh;
        align-items: center;
        padding-bottom: 0px;
    }
    
    .hero-content {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-dots {
        bottom: 120px;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        min-width: 100px;
        gap: 0.5rem;
    }
    
    .stat-item i {
        font-size: 1.5rem;
    }
    
    .stat-item strong {
        font-size: 1.125rem;
    }
    
    .stat-item span {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .contact-card,
    .service-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */

@media print {
    .navbar,
    .scroll-to-top,
    .hero,
    .cta-section {
        display: none;
    }
}

