/* =============================================
   IL SOLE TRAVEL - Stylesheet
   Brand Colors: #322f86 (navy), #0081c7 (blue),
   #f5b12b (gold), #ea8526 (orange), #2c3c90 (deep blue)
============================================= */

:root {
    --navy: #322f86;
    --blue: #0081c7;
    --gold: #f5b12b;
    --orange: #ea8526;
    --deep-blue: #2c3c90;
    --white: #ffffff;
    --light: #f8f9fc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ar-text {
    font-family: 'Cairo', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.ar-text-sm {
    font-family: 'Cairo', sans-serif;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,129,199,0.1), rgba(50,47,134,0.1));
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(50,47,134,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50,47,134,0.4);
}

.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    background: #20ba5a;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   Navbar
============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    background: rgba(0,129,199,0.1);
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* =============================================
   Contact Switcher (Navbar)
============================================= */

.contact-switcher {
    position: relative;
}

.contact-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.contact-toggle:hover {
    background: var(--orange);
}

.navbar.scrolled .contact-toggle {
    background: var(--gold);
    color: var(--white);
}

.navbar.scrolled .contact-toggle:hover {
    background: var(--orange);
}

.contact-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.contact-switcher.open .contact-arrow {
    transform: rotate(180deg);
}

.contact-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.contact-switcher.open .contact-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-office {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-office:hover {
    background: var(--gray-100);
}

.contact-office + .contact-office {
    border-top: 1px solid var(--gray-200, #e5e7eb);
}

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

.contact-city {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.contact-city i {
    font-size: 0.7rem;
    color: var(--blue);
}

.contact-number {
    font-size: 0.75rem;
    color: var(--gray-500);
    padding-left: 1.05rem;
}

.contact-office-actions {
    display: flex;
    gap: 0.4rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-wa {
    background: #25d366;
    color: var(--white);
}

.contact-wa:hover {
    background: #1da851;
    transform: scale(1.1);
}

.contact-call {
    background: var(--blue);
    color: var(--white);
}

.contact-call:hover {
    background: var(--navy);
    transform: scale(1.1);
}

/* RTL adjustments */
[dir="rtl"] .contact-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .contact-number {
    padding-left: 0;
    padding-right: 1.05rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--gray-800);
}

/* =============================================
   Language Switcher
============================================= */

.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.navbar.scrolled .lang-toggle {
    color: var(--navy);
    background: rgba(0,129,199,0.1);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.25);
}

.navbar.scrolled .lang-toggle:hover {
    background: rgba(0,129,199,0.15);
}

.lang-current {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 0.4rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    margin: 0;
}

.lang-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    border: none;
    background: none;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    border-radius: calc(var(--radius) - 2px);
    transition: var(--transition);
}

.lang-dropdown button:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.lang-dropdown button.active {
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
}

/* RTL adjustments for lang dropdown */
[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .lang-dropdown button {
    text-align: right;
}

/* Mobile Language Bar */
.lang-bar-mobile {
    display: none;
}

.lang-bar {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem 0;
    justify-content: center;
}

.lang-bar button {
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.lang-bar button:hover {
    background: rgba(255,255,255,0.15);
}

.lang-bar button.active {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* =============================================
   Hero
============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,22,96,0.75) 0%, rgba(0,129,199,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 6rem;
    color: var(--white);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-subtitle strong {
    font-weight: 600;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(245,177,43,0.4);
}

.hero-buttons .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(245,177,43,0.5);
}

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

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

.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(245,177,43,0.15), rgba(234,133,38,0.15));
    color: var(--orange);
}

.service-icon.icon-blue {
    background: linear-gradient(135deg, rgba(0,129,199,0.15), rgba(44,60,144,0.15));
    color: var(--blue);
}

.service-icon.icon-green {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.15));
    color: #059669;
}

.service-icon.icon-purple {
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(124,58,237,0.15));
    color: #7c3aed;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--blue);
    gap: 0.75rem;
}

/* =============================================
   Ferries
============================================= */

.ferries {
    padding: 6rem 0;
    background: var(--light);
}

.ferry-companies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ferry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.ferry-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(245,177,43,0.15);
}

.ferry-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ferry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ferry-logo {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
}

.ferry-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.gnv-bg {
    background: #ffffff;
}

.grimaldi-bg {
    background: #ffffff;
}

.ctn-bg {
    background: #ffffff;
}

.ferry-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ferry-tagline {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.ferry-routes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.route {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: var(--gray-50);
    border-radius: 10px;
    transition: var(--transition);
}

.route:hover {
    background: var(--gray-100);
}

.route i {
    color: var(--blue);
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

.route strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-800);
    font-weight: 600;
}

.route span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* =============================================
   Destinations
============================================= */

.destinations {
    padding: 4rem 0 6rem;
    background: var(--light);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.dest-img {
    height: 200px;
    background: linear-gradient(135deg, #0081c7 0%, #003d6b 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-img-algeria {
    background: linear-gradient(135deg, #2c3c90 0%, #1a1660 100%);
}

.dest-img-morocco {
    background: linear-gradient(135deg, #ea8526 0%, #c45e0a 100%);
}

.dest-overlay {
    text-align: center;
}

.dest-flag {
    font-size: 4rem;
}

.dest-content {
    padding: 1.5rem;
}

.dest-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.3rem;
}

.dest-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.dest-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent, var(--blue));
    background: rgba(0,129,199,0.08);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
}

/* =============================================
   Flights
============================================= */

.flights {
    padding: 6rem 0;
    background: var(--white);
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.airline-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}

.airline-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.airline-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-shrink: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 0.7rem;
    overflow: hidden;
}

.airline-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.airline-logo i {
    font-size: 1.3rem;
}

.tunisair {
    background: #ffffff;
}

.nouvelair {
    background: #ffffff;
}

.airmaroc {
    background: #ffffff;
}

.neos {
    background: #ffffff;
}

.airline-info {
    flex: 1;
}

.airline-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.airline-routes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
}

/* =============================================
   Why Us
============================================= */

.why-us {
    padding: 6rem 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content .section-tag {
    margin-bottom: 0.75rem;
}

.why-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.map-illustration {
    width: 100%;
    height: auto;
}

/* =============================================
   Locations
============================================= */

.locations {
    padding: 6rem 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.location-map {
    margin: -2rem -2rem 1.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    height: 200px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,129,199,0.1), rgba(50,47,134,0.1));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.location-city {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.location-type {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-align: left;
}

.location-detail i {
    color: var(--blue);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.location-detail a {
    color: var(--navy);
    font-weight: 600;
}

.location-detail a:hover {
    color: var(--blue);
}

/* =============================================
   CTA
============================================= */

.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1660 0%, #2c3c90 50%, #0081c7 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

.cta-content .ar-text {
    margin-bottom: 2rem;
    opacity: 0.75;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links li {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-bottom p + p {
    margin-top: 0.25rem;
}

.made-by-ace {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    opacity: 0.4;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.made-by-ace:hover {
    opacity: 0.8;
}

.ace-logo-inline {
    height: 22px;
    width: auto;
    vertical-align: middle;
}

/* =============================================
   WhatsApp Float
============================================= */

.whatsapp-float-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float-container.open .whatsapp-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-float-container.open .whatsapp-tooltip {
    display: none;
}

.whatsapp-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #25d366;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-popup-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.whatsapp-office {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid var(--gray-200);
}

.whatsapp-office:last-child {
    border-bottom: none;
}

.whatsapp-office:hover {
    background: #f0fdf4;
}

.whatsapp-office > .fa-map-marker-alt {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.whatsapp-office-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.whatsapp-office-city {
    font-weight: 600;
    font-size: 0.85rem;
}

.whatsapp-office-number {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.whatsapp-office > .fa-whatsapp {
    color: #25d366;
    font-size: 1.25rem;
}

/* =============================================
   Back to Top
============================================= */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ferry-companies {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .airlines-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-visual {
        order: -1;
    }

    .visual-card {
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26,22,96,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 998;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 0.75rem 2rem;
        color: var(--white) !important;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hamburger.active span {
        background: var(--white) !important;
    }

    .contact-toggle span {
        display: none;
    }

    .contact-dropdown {
        right: -1rem;
        min-width: 260px;
    }

    .lang-switcher {
        display: none;
    }

    .lang-bar-mobile {
        display: block !important;
    }

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-img {
        object-position: 70% center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .dest-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .airline-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .location-detail {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}