/* ============================================
   KARAYEL VIP Transfer - Modern CSS
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --primary-color: #FDB813;
    --primary-dark: #D99A0D;
    --primary-light: #FED050;
    --secondary-color: #1A1A1A;
    --dark-bg: #0F0F0F;
    --darker-bg: #050505;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --accent: #FDB813;
    --success: #10B981;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 15px 40px rgba(253, 184, 19, 0.2);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(253, 184, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 184, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* --- Header / Navigation --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
}

.navbar {
    padding: 10px 0;
    /* Reduced padding slightly for stacked logo */
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    /* Stack logo and text */
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: var(--transition-fast);
    flex-shrink: 0;
    min-width: fit-content;
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 50px;
    /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 25px;
    /* Slightly reduced gap */
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-contact .phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
}

.header-contact .phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 184, 19, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
}

/* --- Language Switcher --- */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(253, 184, 19, 0.1);
    border: 1px solid rgba(253, 184, 19, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn img {
    width: 20px;
    height: auto;
}

.lang-btn:hover {
    background: rgba(253, 184, 19, 0.2);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.mobile-lang-switcher {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.mobile-lang-switcher .lang-btn {
    flex: 1;
    justify-content: center;
    padding: 12px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.95) 0%,
            rgba(26, 26, 26, 0.85) 50%,
            rgba(253, 184, 19, 0.1) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(253, 184, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 184, 19, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(253, 184, 19, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-phones {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    white-space: nowrap;
}

.phone-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.phone-item a:hover {
    color: var(--primary-color);
}

.hero-image {
    animation: fadeInRight 1s ease;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(253, 184, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-image img {
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--dark-bg);
}

/* --- Mobile Navbar Inline Items --- */
.mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-nav-actions .mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition-fast);
}

.mobile-nav-actions .mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(253, 184, 19, 0.15);
    border: 1px solid rgba(253, 184, 19, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-actions .mobile-lang-toggle img {
    width: 16px;
    height: auto;
}

.mobile-nav-actions .mobile-lang-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* --- Stats Section --- */
.stats {
    padding: 60px 0;
    background: var(--dark-bg);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(253, 184, 19, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(253, 184, 19, 0.2);
}

.stat-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(253, 184, 19, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Services Section --- */
.services {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 24px;
}

.service-card {
    padding: 40px;
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: var(--border-radius-large);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(253, 184, 19, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card>p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* --- Why Choose Us Section --- */
.why-choose {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

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

.why-item {
    padding: 40px 30px;
    text-align: center;
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(253, 184, 19, 0.1);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.2), rgba(253, 184, 19, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.why-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Fleet Section --- */
.fleet {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 30px;
}

.fleet-card {
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.fleet-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.fleet-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1), transparent);
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.fleet-content .btn {
    margin-top: auto;
}

/* Fleet specific small button */
.fleet-content .btn-fleet-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 20px;
    width: auto;
    align-self: flex-start;
}

.fleet-content>p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.fleet-features i {
    color: var(--primary-color);
    font-size: 18px;
}

/* --- Service Areas Section --- */
.service-areas {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

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

.area-item {
    padding: 20px 24px;
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.area-item:hover {
    background: rgba(253, 184, 19, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.area-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* --- CTA Section --- */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(253, 184, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(253, 184, 19, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

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

.contact-card {
    padding: 40px;
    text-align: center;
    background: rgba(253, 184, 19, 0.05);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: var(--border-radius-large);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(253, 184, 19, 0.1);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 18px;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text h3 {
    font-size: 22px;
    font-weight: 800;
}

.footer-logo .logo-text span {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-col ul li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.keywords {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

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

/* --- Scroll to Top Button --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
    box-shadow: 0 8px 20px rgba(253, 184, 19, 0.4);
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(253, 184, 19, 0.6);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .language-switcher {
        display: none;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .header-contact,
    .language-switcher {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-wrapper {
        gap: 10px;
    }

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 13px;
    }

    .mobile-nav-actions {
        display: flex;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 100px;
    }

    .hero .container {
        z-index: 3;
    }

    .hero-wave svg {
        height: 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-description,
    .section-description {
        font-size: 15px;
    }

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

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

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

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

    .fleet-image {
        height: 220px;
    }

    .fleet-content {
        padding: 20px;
    }

    .fleet-content h3 {
        font-size: 22px;
    }

    .fleet-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fleet-content .btn {
        width: auto;
        align-self: flex-start;
        margin-top: 16px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-item i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 36px;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-card {
        padding: 24px;
    }

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

    .why-item {
        padding: 24px 20px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .area-item {
        padding: 14px 16px;
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .fleet-slider {
        grid-template-columns: 1fr;
    }

    .fleet-slide img {
        height: 220px;
    }

    .hero-phones {
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    :root {
        --section-padding: 60px 0;
        --container-padding: 0 16px;
    }

    .mobile-menu {
        position: relative;
        z-index: 999;
    }

    .mobile-menu a {
        font-size: 16px;
        padding: 10px 12px;
    }

    .mobile-phone {
        padding: 12px 16px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .logo-text {
        font-size: 11px;
    }

    .logo-image {
        height: 36px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-item i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 13px;
    }

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

    .page-hero {
        padding: 110px 0 40px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .fleet-image {
        height: 180px;
    }

    .fleet-content h3 {
        font-size: 20px;
    }

    .fleet-content > p {
        font-size: 14px;
    }

    .fleet-content .btn {
        font-size: 12px;
        padding: 9px 14px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .mobile-menu {
        padding: 20px 16px;
        gap: 14px;
    }

    .mobile-menu a {
        font-size: 15px;
        padding: 8px 10px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-subtitle {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 6px 14px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 14px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .scroll-to-top {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* --- Services Preview --- */
.services-preview {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

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

/* --- Fleet Preview --- */
.fleet-preview {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.fleet-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-slide {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.fleet-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.fleet-slide h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.fleet-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.fleet-slide:hover img {
    transform: scale(1.1);
}

/* --- Page Hero --- */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--darker-bg) 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(253, 184, 19, 0.1) 0%, transparent 70%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}