:root {
    --primary-color: #0F49B9;
    --primary-dark: #0a3690;
    --accent-color: #FD2D2D;
    --accent-hover: #d61b1b;
    --neutral-bg: #F5F7FB;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --container-width: 1240px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(15, 73, 185, 0.3);
    --gradient-primary: linear-gradient(135deg, #0F49B9 0%, #0a3690 100%);
    --gradient-accent: linear-gradient(135deg, #FD2D2D 0%, #d61b1b 100%);
    --gradient-soft: linear-gradient(135deg, rgba(15, 73, 185, 0.05) 0%, rgba(253, 45, 45, 0.05) 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--neutral-bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F49B9 0%, #0a3690 50%, #FD2D2D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-800);
    font-weight: 700;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.5rem; color: var(--text-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 73, 185, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(15, 73, 185, 0.4);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent-color), #d61b1b);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(253, 45, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(253, 45, 45, 0.5), 0 0 40px rgba(253, 45, 45, 0.2);
}

.btn--accent:hover::after {
    opacity: 1;
}

.btn--outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--white-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #051847 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 45, 45, 0.5), transparent);
}

.top-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__contact {
    display: flex;
    gap: 25px;
}

.top-bar__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar__contact a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.top-bar__contact i {
    transition: var(--transition-bounce);
}

.top-bar__contact a:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.top-bar__social {
    display: flex;
    gap: 15px;
}

.top-bar__social a {
    transition: var(--transition);
}

.top-bar__social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.95);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Logo Styling */
.header__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-svg {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-svg .airplane {
    animation: fly 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes fly {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(3px, -2px);
    }
    75% {
        transform: translate(-2px, 2px);
    }
}

.logo-svg:hover .airplane {
    animation: flyFast 0.8s ease-in-out;
}

@keyframes flyFast {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -8px) scale(1.1);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Navigation */
.nav__list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav__item {
    position: static;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav__link {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-800);
    font-size: 0.9rem;
    padding: 10px 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav__icon {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.nav__link span {
    position: relative;
}

/* Hover Border Effect */
.nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__link:hover::before {
    opacity: 1;
}

.nav__link:hover {
    background: rgba(15, 73, 185, 0.05);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav__link:hover .nav__icon {
    transform: scale(1.15);
    color: var(--accent-color);
}

/* Active/Current Page */
.nav__link.active,
.nav__item--active .nav__link {
    background: var(--gradient-soft);
    color: var(--primary-color);
}

/* CTA Button Style for Contact */
.nav__item--cta .nav__link--cta {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(253, 45, 45, 0.25);
}

.nav__item--cta .nav__link--cta::before {
    display: none;
}

.nav__item--cta .nav__link--cta:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(15, 73, 185, 0.35);
}

.nav__item--cta .nav__link--cta .nav__icon {
    color: var(--white);
}

.nav__link:hover::after, .nav__item:hover .nav__link::after {
    width: 100%;
}

.nav__link:hover, .nav__item:hover .nav__link {
    color: var(--primary-color);
}

.nav__arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.nav__item--has-mega:hover .nav__arrow {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    border-top: 3px solid var(--accent-color);
}

.nav__item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.mega-menu__column h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu__list li {
    margin-bottom: 0.75rem;
}

.mega-menu__list a {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    padding: 6px 12px;
    border-radius: 6px;
    margin: -6px -12px;
}

.mega-menu__list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--accent-color);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.mega-menu__list a:hover {
    color: var(--primary-color);
    background: rgba(15, 73, 185, 0.05);
    transform: translateX(8px);
}

.mega-menu__list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu__view-all {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    background: transparent;
}

.mega-menu__view-all:hover {
    color: var(--white);
    background: var(--gradient-accent);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(253, 45, 45, 0.3);
}

/* Mobile Menu Toggle */
/* Mobile Menu Toggle - Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger__line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.mobile-toggle:hover .hamburger__line {
    background: var(--accent-color);
}

/* Hamburger Animation when Active */
.nav.active ~ .mobile-toggle .hamburger__line:nth-child(1),
.mobile-toggle.active .hamburger__line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav.active ~ .mobile-toggle .hamburger__line:nth-child(2),
.mobile-toggle.active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav.active ~ .mobile-toggle .hamburger__line:nth-child(3),
.mobile-toggle.active .hamburger__line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section with Slideshow */
.hero {
    color: var(--white);
    padding: 2rem 0 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

/* Hero Background Slideshow */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero__slide.active {
    opacity: 1;
}

/* Category-specific backgrounds with better contrast gradients */
.hero__slide--recruitment {
    background-image: linear-gradient(135deg, 
        rgba(15, 73, 185, 0.88) 0%, 
        rgba(10, 42, 107, 0.85) 50%,
        rgba(15, 73, 185, 0.82) 100%), 
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&q=80');
    background-size: cover;
    background-position: center center;
}

.hero__slide--visa {
    background-image: linear-gradient(135deg, 
        rgba(15, 73, 185, 0.85) 0%, 
        rgba(253, 45, 45, 0.75) 50%,
        rgba(10, 42, 107, 0.88) 100%), 
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80');
    background-size: cover;
    background-position: center center;
}

.hero__slide--travel {
    background-image: linear-gradient(135deg, 
        rgba(15, 73, 185, 0.82) 0%, 
        rgba(10, 42, 107, 0.88) 50%,
        rgba(253, 45, 45, 0.70) 100%), 
        url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 4rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 3px 12px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.2s backwards;
    line-height: 1.6;
    font-weight: 400;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Hero Indicators */
.hero__indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
}

.hero__indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    border-color: var(--white);
}

.hero__indicator.active {
    background: var(--white);
    width: 50px;
    border-radius: 7px;
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.5);
}

/* Hero Badge - Glassmorphism */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.1s backwards;
    transition: var(--transition);
}

.hero__badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero__badge i {
    color: #FFD700;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Text Highlight */
.text-highlight {
    color: #FFD700;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero Stats - Glassmorphism */
.hero__stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero__stat {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.5rem 2.5rem;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero__stat:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(255, 215, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Scroll Down Button */
.hero__scroll-down {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    z-index: 3;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.8s backwards;
    margin-top: 3rem;
}

.hero__scroll-down:hover {
    transform: translateY(-5px);
}

.hero__scroll-container {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
}

.hero__scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero__scroll-btn:hover {
    transform: translateY(-5px);
}

.hero__scroll-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__scroll-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-icon i {
    font-size: 0.9rem;
    color: var(--white);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(15, 73, 185, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 45, 45, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-bg {
    background-color: var(--white);
    position: relative;
}

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 73, 185, 0.1), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: expandWidth 0.8s ease forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-title p {
    font-size: 1.1rem;
}

/* About Section Styles */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(15, 73, 185, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(253, 45, 45, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.about-section__content {
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

.section-title.text-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.section-title.text-left h2::after {
    margin-left: 0;
}

.section-title .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-section__content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 73, 185, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-highlight:hover::before {
    opacity: 1;
}

.about-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(15, 73, 185, 0.15);
    border-left-width: 6px;
}

.about-highlight__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(15, 73, 185, 0.3);
    transition: var(--transition);
}

.about-highlight__icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.about-highlight:hover .about-highlight__icon {
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.15); }
}

.about-highlight__content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.about-highlight__content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-section__image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover::before {
    opacity: 1;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.card::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.5s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 73, 185, 0.15);
    border-color: rgba(15, 73, 185, 0.2);
}

.card__icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-bounce);
}

.card:hover .card__icon {
    transform: scale(1.2) rotate(5deg);
}

.card h3 {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--primary-color);
}

/* Pills / Chips */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.pill {
    background: var(--white);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 73, 185, 0.2);
    color: var(--white);
    border-color: var(--primary-color);
}

.pill:hover::before {
    left: 0;
}

/* ==============================
   PREMIUM COUNTRIES SLIDER SECTION
   ============================== */

.countries-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a1628 0%, #132442 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.countries-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.countries-bg-shapes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 73, 185, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 20s ease-in-out infinite;
}

.countries-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 45, 45, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 25s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.countries-section .section-title h2,
.countries-section .section-subtitle {
    color: var(--white);
}

.countries-slider-container {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.countries-slider-container--visa {
    margin-top: 4rem;
}

.countries-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.countries-slider-title {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.countries-slider-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(15, 73, 185, 0.4);
    flex-shrink: 0;
}

.countries-slider-icon--visa {
    background: var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(253, 45, 45, 0.4);
}

.countries-slider-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.countries-slider-title p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.countries-slider-nav {
    display: flex;
    gap: 0.75rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(15, 73, 185, 0.4);
}

.countries-slider-container--visa .slider-btn:hover {
    background: var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(253, 45, 45, 0.4);
}

.countries-slider {
    overflow: hidden;
    margin: 0 -0.5rem;
    padding: 1rem 0.5rem 2rem;
}

.countries-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.countries-track:active {
    cursor: grabbing;
}

.country-slide {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 280px;
}

.country-flag-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.country-flag-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(15, 73, 185, 0.4);
}

.country-flag-card--visa:hover {
    box-shadow: 0 25px 60px rgba(253, 45, 45, 0.4);
}

.country-flag-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.country-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.country-flag-card:hover .country-flag-img {
    transform: scale(1.1);
}

.country-flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 73, 185, 0) 0%, rgba(15, 73, 185, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.country-flag-overlay--visa {
    background: linear-gradient(180deg, rgba(253, 45, 45, 0) 0%, rgba(253, 45, 45, 0.8) 100%);
}

.country-flag-card:hover .country-flag-overlay {
    opacity: 1;
}

.country-flag-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.country-flag-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.country-flag-card:hover .country-flag-content h4 {
    color: var(--primary-color);
}

.country-flag-card--visa:hover .country-flag-content h4 {
    color: var(--accent-color);
}

.country-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.country-tag--hot {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.country-tag--fast {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.country-tag--popular {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.country-tag--growing {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.country-tag--affordable {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.country-tag--emerging {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.country-tag--premium {
    background: linear-gradient(135deg, #0F49B9 0%, #0a3690 100%);
    color: white;
}

.country-tag--new {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
}

.country-tag--visa {
    background: linear-gradient(135deg, #FD2D2D 0%, #d61b1b 100%);
    color: white;
}

.country-industries {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.country-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 73, 185, 0.3);
}

.country-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(15, 73, 185, 0.5);
}

.country-link i {
    transition: transform 0.3s ease;
}

.country-link:hover i {
    transform: translateX(3px);
}

.country-link--visa {
    background: var(--gradient-accent);
    box-shadow: 0 4px 15px rgba(253, 45, 45, 0.3);
}

.country-link--visa:hover {
    box-shadow: 0 6px 25px rgba(253, 45, 45, 0.5);
}

/* Responsive Design for Countries Slider */
@media (max-width: 1200px) {
    .country-slide {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 992px) {
    .country-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .countries-slider-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .countries-section {
        padding: 4rem 0;
    }
    
    .countries-slider-title h3 {
        font-size: 1.25rem;
    }
    
    .countries-slider-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .country-slide {
        flex: 0 0 85%;
        min-width: 260px;
    }
    
    .country-flag-wrapper {
        height: 140px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
}

/* Responsive Design for Countries */
@media (max-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .countries-section {
        padding: 4rem 0;
    }
    
    .countries-category {
        padding: 2rem 1.5rem;
    }
    
    .countries-wrapper {
        gap: 3rem;
    }
    
    .countries-category__icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .countries-category__title {
        font-size: 1.6rem;
    }
    
    .countries-category__subtitle {
        font-size: 1rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .country-card {
        padding: 1.5rem 1rem;
    }
    
    .country-card__flag {
        font-size: 3rem;
    }
    
    .country-card__name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   PREMIUM WHY CHOOSE US SECTION
   ============================== */

.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a2e5c 0%, #0F49B9 50%, #1a5fd1 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(253, 45, 45, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0% { background-position: 0% 0%, 0% 0%, 0 0; }
    100% { background-position: 100% 100%, -100% -100%, 30px 30px; }
}

.why-choose-section .section-title h2,
.why-choose-section .section-subtitle {
    color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.advantage-card--primary::before {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.advantage-card--secondary::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.advantage-card--accent::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.advantage-card--success::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.advantage-card--premium::before {
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
}

.advantage-card--highlight::before {
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
}

.advantage-card__decoration {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 73, 185, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    z-index: 0;
}

.advantage-card:hover .advantage-card__decoration {
    transform: scale(1.5) translate(-20px, 20px);
    opacity: 0.7;
}

.advantage-card__icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    z-index: 1;
}

.advantage-card__icon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 73, 185, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advantage-card--primary .advantage-card__icon-circle {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.25) 100%);
}

.advantage-card--secondary .advantage-card__icon-circle {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
}

.advantage-card--accent .advantage-card__icon-circle {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.25) 100%);
}

.advantage-card--success .advantage-card__icon-circle {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.25) 100%);
}

.advantage-card--premium .advantage-card__icon-circle {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.25) 100%);
}

.advantage-card--highlight .advantage-card__icon-circle {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.25) 100%);
}

.advantage-card:hover .advantage-card__icon-circle {
    transform: scale(1.2) rotate(180deg);
    box-shadow: 0 10px 30px rgba(15, 73, 185, 0.3);
}

.advantage-card--primary:hover .advantage-card__icon-circle {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.advantage-card--secondary:hover .advantage-card__icon-circle {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.advantage-card--accent:hover .advantage-card__icon-circle {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.advantage-card--success:hover .advantage-card__icon-circle {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.advantage-card--premium:hover .advantage-card__icon-circle {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
}

.advantage-card--highlight:hover .advantage-card__icon-circle {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

.advantage-card__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.advantage-card--primary .advantage-card__icon {
    color: #3b82f6;
}

.advantage-card--secondary .advantage-card__icon {
    color: #10b981;
}

.advantage-card--accent .advantage-card__icon {
    color: #f59e0b;
}

.advantage-card--success .advantage-card__icon {
    color: #8b5cf6;
}

.advantage-card--premium .advantage-card__icon {
    color: #ec4899;
}

.advantage-card--highlight .advantage-card__icon {
    color: #06b6d4;
}

.advantage-card:hover .advantage-card__icon {
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.2) rotate(-10deg);
}

.advantage-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-card__title {
    color: var(--primary-color);
}

.advantage-card--primary:hover .advantage-card__title {
    color: #3b82f6;
}

.advantage-card--secondary:hover .advantage-card__title {
    color: #10b981;
}

.advantage-card--accent:hover .advantage-card__title {
    color: #f59e0b;
}

.advantage-card--success:hover .advantage-card__title {
    color: #8b5cf6;
}

.advantage-card--premium:hover .advantage-card__title {
    color: #ec4899;
}

.advantage-card--highlight:hover .advantage-card__title {
    color: #06b6d4;
}

.advantage-card__description {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.advantage-card__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(15, 73, 185, 0.1);
    position: relative;
    z-index: 1;
}

.advantage-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.advantage-stat__number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.advantage-card--primary .advantage-stat__number {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card--secondary .advantage-stat__number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card--accent .advantage-stat__number {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card--success .advantage-stat__number {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card--premium .advantage-stat__number {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card--highlight .advantage-stat__number {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card:hover .advantage-stat__number {
    transform: scale(1.1);
}

.advantage-stat__label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-card__icon-container {
        width: 75px;
        height: 75px;
    }
    
    .advantage-card__icon {
        font-size: 2rem;
    }
    
    .advantage-card__title {
        font-size: 1.3rem;
    }
    
    .advantage-stat__number {
        font-size: 1.6rem;
    }
}

/* Features */
.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    background: var(--white);
    position: relative;
}

.feature-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::after {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 73, 185, 0.15);
}

.feature-box__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition-bounce);
}

.feature-box:hover .feature-box__icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--accent-color);
}

/* ==============================
   ENHANCED SERVICES SECTION
   ============================== */

.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 73, 185, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 45, 45, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 73, 185, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(15, 73, 185, 0.2);
    border-color: rgba(15, 73, 185, 0.2);
}

/* Decorative Blob */
.service-card__decorative-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 73, 185, 0.08) 0%, rgba(253, 45, 45, 0.05) 100%);
    filter: blur(40px);
    transition: all 0.6s ease;
    z-index: 0;
}

.service-card:hover .service-card__decorative-blob {
    transform: scale(1.5);
    opacity: 0.8;
}

/* Service Number */
.service-card__number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(15, 73, 185, 0.05);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card:hover .service-card__number {
    color: rgba(15, 73, 185, 0.1);
    transform: scale(1.1);
}

/* Icon Wrapper */
.service-card__icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    z-index: 1;
}

.service-card__icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 73, 185, 0.1) 0%, rgba(253, 45, 45, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-card__icon-bg {
    background: var(--gradient-primary);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(15, 73, 185, 0.3);
}

.service-card__icon {
    position: relative;
    font-size: 2.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.service-card:hover .service-card__icon {
    color: var(--white);
    transform: scale(1.2) rotate(-10deg);
}

/* Service Title */
.service-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card__title {
    color: var(--primary-color);
}

/* Service Description */
.service-card__description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Features List */
.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-card__features li {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.service-card__features li i {
    color: #10b981;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__features li {
    transform: translateX(5px);
}

.service-card:hover .service-card__features li i {
    transform: scale(1.2);
}

/* Service Button */
.service-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(15, 73, 185, 0.2);
}

.service-card__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card__btn:hover::before {
    left: 0;
}

.service-card__btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(253, 45, 45, 0.3);
}

.service-card__btn i {
    transition: transform 0.3s ease;
}

.service-card__btn:hover i {
    transform: translateX(5px);
}

/* Specific Card Accent Colors */
.service-card--recruitment .service-card__icon-bg {
    background: linear-gradient(135deg, rgba(15, 73, 185, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.service-card--visa .service-card__icon-bg {
    background: linear-gradient(135deg, rgba(253, 45, 45, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.service-card--travel .service-card__icon-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .service-card__number {
        font-size: 3rem;
        top: 1rem;
        right: 1.5rem;
    }
    
    .service-card__icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .service-card__icon {
        font-size: 2.2rem;
    }
    
    .service-card__title {
        font-size: 1.4rem;
    }
}

/* Testimonials */
.testimonial {
    text-align: center;
    font-style: italic;
    background: linear-gradient(135deg, rgba(15, 73, 185, 0.03) 0%, rgba(253, 45, 45, 0.03) 100%);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: rgba(15, 73, 185, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--primary-color);
}

/* Footer */
/* ==============================
   FOOTER STYLES - Modern & Enhanced
   ============================== */

.footer {
    background: linear-gradient(135deg, #0a2a6b 0%, #051847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Wave Animation at Top */
.footer__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

@media (max-width: 768px) {
    .footer__wave svg {
        height: 40px;
    }
}

/* Decorative Background Elements */
.footer::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 45, 45, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 73, 185, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Main Footer Section */
.footer__main {
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer__main {
        padding: 6rem 0 3rem;
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Brand Column */
.footer__col--brand {
    padding-right: 2rem;
}

.footer__brand {
    margin-bottom: 1.5rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer__logo i {
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Footer Logo Styling */
.footer__logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer__logo-link:hover {
    transform: translateY(-3px);
}

.footer__logo-svg {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.footer__logo-svg:hover {
    filter: drop-shadow(0 4px 12px rgba(253, 45, 45, 0.3));
}

.footer__logo-svg .airplane {
    animation: planeMove 3s ease-in-out infinite;
}

@keyframes planeMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(3px, -2px);
    }
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Footer Stats */
.footer__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__stat {
    text-align: center;
}

.footer__stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    display: block;
}

.footer__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Titles */
.footer__title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Footer Links */
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer__links a i {
    font-size: 0.85rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer__links a:hover i {
    transform: scale(1.2);
    color: #fff;
}

/* Contact Info */
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer__contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer__contact-icon i {
    color: var(--accent-color);
    font-size: 1rem;
}

.footer__contact li:hover .footer__contact-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.footer__contact li:hover .footer__contact-icon i {
    color: var(--white);
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer__contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.footer__contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer__contact a.footer__contact-text:hover {
    color: var(--accent-color);
}

/* Footer Bottom */
.footer__bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer__bottom-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer__bottom-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer__copyright p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__copyright strong {
    color: var(--white);
    font-weight: 600;
}

.footer__legal {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 0.25rem !important;
}

/* Social Links */
.footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.footer__social-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer__social-links {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.footer__social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.footer__social-link i {
    color: var(--white);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.footer__social-link:hover::before {
    opacity: 1;
}

.footer__social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 25px rgba(253, 45, 45, 0.4);
}

.footer__social-link--whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer__social-link--whatsapp::before {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Footer Badges */
.footer__badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer__badges {
        justify-content: center;
    }
}

.footer__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.footer__badge i {
    color: #ffd700;
    font-size: 1rem;
}

.footer__badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-accent);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
    box-shadow: 0 4px 15px rgba(253, 45, 45, 0.3);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(253, 45, 45, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.6s ease;
}

.back-to-top i {
    font-size: 1.2rem;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}


/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 73, 185, 0.1);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: var(--primary-color);
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    background: transparent;
}

.contact-item:hover {
    background: var(--gradient-soft);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition-smooth);
    font-size: 1.3rem;
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(15, 73, 185, 0.3);
}

.contact-content h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* About Page */
.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.list-disc {
    list-style: disc;
    padding-left: 1.5rem;
}

.list-check {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.list-check li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.list-check i {
    color: var(--accent-color);
    margin-right: 10px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gray-200);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.grid-sm {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-section__content {
        padding-right: 0;
    }
    
    .about-section__image {
        order: -1;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .about-cta .btn {
        flex: 1;
        min-width: 150px;
    }
}

/* Responsive Styles */

/* Tablet Landscape & Small Desktop (992px - 1200px) */
@media (max-width: 1200px) {
    .nav__list {
        gap: 0.3rem;
    }
    
    .nav__link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .mega-menu__grid {
        gap: 2rem;
    }
}

/* Tablet & Mobile Menu (max-width: 991px) */
@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }
    
    .header {
        height: 70px;
    }
    
    .logo-svg {
        height: 40px;
    }
    
    /* Mobile Menu Overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }
    
    .nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 380px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.98));
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 2rem 1.5rem;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }
    
    /* Custom Scrollbar for Mobile Menu */
    .nav::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav::-webkit-scrollbar-track {
        background: rgba(15, 73, 185, 0.05);
        border-radius: 10px;
    }
    
    .nav::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 10px;
    }
    
    .nav::-webkit-scrollbar-thumb:hover {
        background: var(--gradient-accent);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .nav__item {
        width: 100%;
        height: auto;
        border-bottom: none;
    }

    .nav__link {
        padding: 14px 16px;
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin-bottom: 8px;
    }
    
    .nav__link::before {
        border-radius: 12px;
    }
    
    .nav__link span {
        flex: 1;
    }
    
    .nav__arrow {
        margin-left: auto;
    }
    
    /* CTA Button in Mobile */
    .nav__item--cta .nav__link--cta {
        background: var(--gradient-accent);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(253, 45, 45, 0.3);
        margin-top: 1rem;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background: transparent;
        border-top: none;
    }
    
    .mega-menu.active {
        max-height: 1000px;
        padding: 12px 0;
    }

    .mega-menu__grid {
        display: block;
        padding: 0;
    }
    
    .mega-menu__column {
        padding: 12px 16px;
        background: rgba(15, 73, 185, 0.02);
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .mega-menu__column h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .mega-menu__list li {
        margin-bottom: 0.5rem;
    }
    
    .mega-menu__list a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .mega-menu__view-all {
        margin-top: 1rem;
        font-size: 0.85rem;
    }
    
    /* Hero adjustments for tablet */
    .hero {
        padding: 7rem 0 5rem;
        min-height: 580px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero__indicators {
        bottom: 25px;
    }
}

/* Mobile Only (max-width: 576px) */
@media (max-width: 576px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-bar__container {
        flex-direction: column;
        gap: 8px;
    }
    
    .top-bar__contact {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .top-bar__social {
        gap: 12px;
    }
    
    .header {
        height: 65px;
    }
    
    .logo-svg {
        height: 36px;
    }
    
    .nav {
        top: 65px;
        height: calc(100vh - 65px);
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    h1 { 
        font-size: 1.75rem; 
    }
    
    .hero__buttons { 
        flex-direction: column;
        gap: 1rem;
    }
    
    .card-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Hero adjustments for mobile */
    .hero {
        padding: 6rem 0 5rem;
        min-height: 520px;
    }
    
    .hero h1 { 
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero__indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .hero__indicator {
        width: 11px;
        height: 11px;
    }
    
    .hero__indicator.active {
        width: 35px;
    }
}

/* Recruitment Page */
.list-grid {
    list-style: disc;
    padding-left: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(15, 73, 185, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.2;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 30px rgba(15, 73, 185, 0.5);
}

.step-number.final {
    background: var(--gradient-accent);
    box-shadow: 0 8px 20px rgba(253, 45, 45, 0.3);
}

.step-number.final::before {
    background: var(--gradient-accent);
}

.process-step:hover .step-number.final {
    box-shadow: 0 12px 30px rgba(253, 45, 45, 0.5);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    -webkit-user-select: none;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gradient-soft);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 42, 107, 0.95) 0%, rgba(5, 24, 71, 0.97) 100%);
    overflow: hidden;
    padding: 5rem 0;
}

.cta-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s linear infinite;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(100px); }
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.cta-content-left {
    text-align: left;
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: bounce-gentle 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-header h2,
.cta-content-left h2,
.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content-left > p,
.cta-content > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .cta-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.cta-feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: var(--white);
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 968px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.btn--cta-primary,
.btn--cta-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 968px) {
    .btn--cta-primary,
    .btn--cta-secondary {
        width: auto;
    }
}

.btn--cta-primary {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
}

.btn--cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(253, 45, 45, 0.5);
}

.btn--cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn--cta-secondary i {
    color: #25D366;
    font-size: 1.3rem;
}

.btn--cta-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: var(--neutral-bg);
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-content-left h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content-left > p,
    .cta-content > p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-features {
        gap: 1rem;
    }

    .cta-feature {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn--cta-primary,
    .btn--cta-secondary {
        width: 100%;
        max-width: 350px;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .cta-icon {
        width: 70px;
        height: 70px;
    }

    .cta-icon i {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-features {
        gap: 1rem;
    }

    .cta-feature {
        font-size: 0.9rem;
    }

    .cta-feature i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
