/* ===================================
   CSS RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #faed8d;
    --gold-dark: #d4af37;
    --black: #000000;
    --dark: #0a0a0a;
    --dark-card: #1a1a1a;
    --white: #ffffff;
    --gray: #b0b0b0;
    --gray-dark: #666666;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(250, 237, 141, 0.15);
    --shadow-lg: 0 20px 60px rgba(250, 237, 141, 0.25);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(250, 237, 141, 0.1);
    border-radius: 50%;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(250, 237, 141, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.95rem;
}

.nav-phone i {
    font-size: 1.1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION WITH BACKGROUND IMAGE
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/limo-suv.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(250, 237, 141, 0.1);
    border: 1px solid rgba(250, 237, 141, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-heading {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-large {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary-large:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.feature-badge i {
    color: var(--gold);
    font-size: 1.25rem;
}

/* ===================================
   QUICK BOOKING PANEL
   =================================== */
.quick-booking-panel {
    background: rgba(26, 26, 26, 0.075);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 237, 141, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.quick-booking-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ===================================
   CUSTOM SELECT DROPDOWN
   =================================== */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    padding: 1.125rem 3rem 1.125rem 1.25rem;
    background: linear-gradient(135deg, rgba(250, 237, 141, 0.08) 0%, rgba(250, 237, 141, 0.05) 100%);
    border: 2px solid rgba(250, 237, 141, 0.25);
    border-radius: 15px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: var(--transition);
}

.custom-select:focus {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(250, 237, 141, 0.12) 0%, rgba(250, 237, 141, 0.08) 100%);
    box-shadow: 0 0 0 3px rgba(250, 237, 141, 0.1);
}

.custom-select option {
    background: var(--dark-card);
    color: var(--white);
    padding: 1rem;
}

.select-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition);
}

.custom-select:focus~.select-icon {
    transform: translateY(-50%) rotate(180deg);
}

.quick-form input {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: rgba(250, 237, 141, 0.05);
    border: 2px solid rgba(250, 237, 141, 0.2);
    border-radius: 15px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.quick-form input::placeholder {
    color: var(--gray-dark);
}

.quick-form input:focus {
    border-color: var(--gold);
    background: rgba(250, 237, 141, 0.08);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 1.25rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-down i {
    font-size: 1.5rem;
    color: var(--gold);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   SECTIONS GENERAL
   =================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(250, 237, 141, 0.1);
    border: 1px solid rgba(250, 237, 141, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.section-title-left {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.service-item:hover::before {
    opacity: 0.05;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-icon-box i {
    font-size: 2.25rem;
    color: var(--black);
}

.service-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-item p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.link-arrow {
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    padding: 0;
}

.link-arrow:hover {
    gap: 1rem;
}

/* ===================================
   FLEET SECTION
   =================================== */
.fleet-section {
    background: var(--black);
}

.fleet-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.fleet-card {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.fleet-image {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.fleet-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-details {
    padding: 2.5rem;
}

.fleet-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.fleet-specs {
    list-style: none;
    margin-bottom: 2rem;
}

.fleet-specs li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(250, 237, 141, 0.1);
}

.fleet-specs li:last-child {
    border-bottom: none;
}

.fleet-specs i {
    color: var(--gold);
    font-size: 1.1rem;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===================================
   COVERAGE SECTION - 3x3 GRID
   =================================== */
.coverage-section {
    background: var(--dark);
}

.coverage-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.coverage-card-modern {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.coverage-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: var(--transition);
}

.coverage-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.coverage-card-modern:hover::before {
    opacity: 0.05;
}

.coverage-card-modern.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(250, 237, 141, 0.05) 0%, transparent 100%);
}

.coverage-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.coverage-icon-modern {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-icon-modern i {
    font-size: 1.75rem;
    color: var(--black);
}

.coverage-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.coverage-distance {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.coverage-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.coverage-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.coverage-action i {
    transition: var(--transition);
}

.coverage-card-modern:hover .coverage-action i {
    transform: translateX(5px);
}

.coverage-note {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.coverage-note i {
    font-size: 2rem;
    color: var(--gold);
}

.coverage-note p {
    color: var(--gray);
    font-size: 1.05rem;
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section {
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-intro {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-item {
    display: flex;
    gap: 2rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.75rem;
    color: var(--black);
}

.why-text h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.why-text p {
    color: var(--gray);
    line-height: 1.7;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-box h3 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===================================
   BOOKING SECTION
   =================================== */
.booking-section {
    background: var(--dark);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.booking-form-container {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.tab-switcher {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    background: rgba(250, 237, 141, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
}

.tab-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--gray);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.booking-form {
    display: none;
}

.booking-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-field label {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: rgba(250, 237, 141, 0.05);
    border: 2px solid rgba(250, 237, 141, 0.2);
    border-radius: 15px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-dark);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    background: rgba(250, 237, 141, 0.08);
}

.form-field textarea {
    resize: vertical;
}

.btn-submit-large {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 1.25rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===================================
   CONTACT INFO SIDEBAR
   =================================== */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.info-box p {
    color: var(--gray);
}

.info-item {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--gold);
    background: rgba(250, 237, 141, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--black);
}

.info-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-details p,
.info-details a {
    color: var(--gray);
    font-size: 0.95rem;
}

.info-details a:hover {
    color: var(--gold);
}

.info-hours {
    background: var(--dark-card);
    border: 1px solid rgba(250, 237, 141, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.info-hours i {
    font-size: 1.5rem;
    color: var(--gold);
}

.info-hours h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-hours p {
    color: var(--gray);
    font-size: 0.95rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-media a {
    width: 50px;
    height: 50px;
    background: rgba(250, 237, 141, 0.1);
    border: 1px solid rgba(250, 237, 141, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    transition: var(--transition);
}

.social-media a:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(250, 237, 141, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--gray);
    line-height: 1.8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 237, 141, 0.1);
}

.footer-bottom p {
    color: var(--gray);
}

.footer-legal {
    display: flex;
    gap: 0.5rem;
}

.footer-legal a {
    color: var(--gray);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.floating-call-btn {
    position: fixed;
    bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: var(--shadow);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-call-btn:hover {
    transform: scale(1.1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .coverage-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.mobile-active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .section-title,
    .section-title-left {
        font-size: 2.5rem;
    }

    .why-grid,
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .coverage-grid-3x3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .services-grid,
    .fleet-showcase {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-row-inline {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .section-title,
    .section-title-left {
        font-size: 2rem;
    }

    .booking-form-container {
        padding: 2rem;
    }

    .tab-switcher {
        flex-direction: column;
    }
}


/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.floating-whatsapp-btn i {
    font-size: 1.75rem;
    animation: bounce-icon 2s infinite;
}

.whatsapp-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Pulsing animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Icon bounce animation */
@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Hover effects */
.floating-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.floating-whatsapp-btn:hover i {
    animation: none;
    transform: rotate(15deg) scale(1.1);
}

.floating-whatsapp-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive design for tablets */
@media (max-width: 992px) {
    .whatsapp-text {
        display: none;
    }

    .floating-whatsapp-btn {
        padding: 16px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

/* Responsive design for mobile */
@media (max-width: 480px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp-btn i {
        font-size: 1.5rem;
    }
}

.webtrix {
    color: var(--gold);
}

.webtrix:hover {
    text-decoration: underline;
}
