/* =============================================
   SMARTCAB SERVICE - Main Stylesheet
   Color: Red #E31C1C | Black #0A0A0A | White #FFFFFF
   ============================================= */

:root {
    --red: #E31C1C;
    --red-dark: #B01515;
    --red-light: #FF2D2D;
    --black: #0A0A0A;
    --black-2: #111111;
    --black-3: #1A1A1A;
    --black-4: #222222;
    --gray: #555555;
    --gray-light: #888888;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --white-2: #ECECEC;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-light: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-red: 0 4px 20px rgba(227,28,28,0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    font-family: var(--font-light);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.topbar-left span, .topbar-right a {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-left span i, .topbar-right a i { color: var(--red); }
.topbar-btn {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 4px 14px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--black-2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--red);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10,10,10,0.97);
    box-shadow: var(--shadow);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 46px; height: 46px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    letter-spacing: 2px;
}
.logo-sub {
    font-size: 10px;
    color: var(--red);
    font-family: var(--font-light);
    letter-spacing: 3px;
    font-weight: 600;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links li a {
    color: #ccc;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: var(--font-body);
}
.nav-links li a:hover, .nav-links li a.active {
    color: var(--white);
    background: var(--red);
}
.nav-call-btn {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: 4px !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--black);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(227,28,28,0.15) 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(227,28,28,0.03) 40px,
        rgba(227,28,28,0.03) 41px
    );
    z-index: 0;
}
.hero-content-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-light);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 90px);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.hero-title span { color: var(--red); }
.hero-desc {
    color: #aaa;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-family: var(--font-light);
    font-weight: 300;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--red);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-light);
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ===== HERO BOOKING FORMS ===== */
.hero-forms {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-tab-btns {
    display: flex;
    background: var(--black-3);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.tab-btn {
    flex: 1;
    padding: 12px 10px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.tab-btn.active, .tab-btn:hover { background: var(--red); color: var(--white); }
.booking-form {
    background: var(--white);
    border-radius: 6px;
    padding: 24px;
    border-top: 4px solid var(--red);
    display: none;
    animation: fadeUp 0.3s ease;
}
.booking-form.active { display: block; }
.form-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--black);
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.form-title span { color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-light);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--white-2);
    border-radius: 4px;
    font-size: 14px;
    color: var(--black);
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227,28,28,0.1);
}
.form-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    font-family: var(--font-display);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ===== SECTION COMMONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--black-2); color: var(--white); }
.section-gray { background: var(--white-off); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-light);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}
.section-tag::before, .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px; height: 1px;
    background: var(--red);
}
.section-tag::before { right: 100%; margin-right: -20px; }
.section-tag::after { left: 100%; margin-left: -20px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: 1px;
}
.section-title span { color: var(--red); }
.section-desc {
    color: var(--gray);
    font-size: 16px;
    margin-top: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-light);
    font-weight: 300;
}
.section-dark .section-desc { color: #aaa; }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--white-2);
    padding: 36px 28px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-icon {
    width: 60px; height: 60px;
    background: rgba(227,28,28,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--red);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    font-family: var(--font-light);
    font-weight: 300;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 36px 20px;
}
.why-icon {
    width: 72px; height: 72px;
    background: rgba(227,28,28,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--red);
    margin: 0 auto 20px;
}
.why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    font-family: var(--font-light);
    font-weight: 300;
}

/* ===== FLEET CARDS ===== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.fleet-card {
    background: var(--black-3);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); border-color: var(--red); }
.fleet-img {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border-bottom: 2px solid rgba(227,28,28,0.3);
}
.fleet-body { padding: 24px; }
.fleet-name {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.fleet-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    padding: 3px 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: var(--font-light);
}
.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.fleet-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 14px;
    font-family: var(--font-light);
}
.fleet-spec i { color: var(--red); font-size: 14px; }
.fleet-price {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--red);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}
.fleet-price span { font-size: 14px; color: #888; font-family: var(--font-light); font-weight: 300; }

/* ===== TARIFF TABLE ===== */
.tariff-table-wrap { overflow-x: auto; border-radius: 6px; }
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}
.tariff-table th {
    background: var(--red);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tariff-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--white-2);
    font-size: 15px;
    color: var(--black);
}
.tariff-table tr:nth-child(even) td { background: var(--white-off); }
.tariff-table tr:hover td { background: rgba(227,28,28,0.05); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--black-3);
    padding: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--red);
    position: absolute;
    top: 10px; left: 24px;
    line-height: 1;
    opacity: 0.4;
}
.stars { color: #FFD700; font-size: 14px; margin-bottom: 16px; }
.testimonial-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--font-light);
    font-weight: 300;
}
.reviewer-info { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
    width: 46px; height: 46px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
}
.reviewer-name {
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
}
.reviewer-loc { color: #888; font-size: 13px; font-family: var(--font-light); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--red);
    padding: 70px 0;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 36px;
    font-family: var(--font-light);
    font-weight: 300;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-display);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.btn-white:hover { background: var(--black); color: var(--white); }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-display);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.btn-outline-white:hover { background: var(--white); color: var(--red); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
.contact-info { }
.contact-info-title {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.contact-info-title span { color: var(--red); }
.contact-info-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-family: var(--font-light);
    font-weight: 300;
}
.contact-detail-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 50px; height: 50px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}
.contact-detail-text h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.contact-detail-text p {
    color: var(--gray);
    font-size: 14px;
    font-family: var(--font-light);
    font-weight: 300;
    line-height: 1.5;
}
.contact-form-box {
    background: var(--black-2);
    padding: 40px;
    border-radius: 6px;
    border-top: 4px solid var(--red);
}
.contact-form-box .form-group label { color: #aaa; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    background: var(--black-3);
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: var(--red);
    background: var(--black-4);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--black-2);
    padding: 60px 0;
    border-bottom: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(227,28,28,0.15) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
    font-family: var(--font-light);
    margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: var(--red); }
.page-hero-breadcrumb i { font-size: 10px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.page-hero h1 span { color: var(--red); }
.page-hero p {
    color: #aaa;
    font-size: 16px;
    margin-top: 12px;
    font-family: var(--font-light);
    font-weight: 300;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-box {
    position: relative;
}
.about-img-placeholder {
    background: var(--black-3);
    border-radius: 6px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    border: 2px solid rgba(227,28,28,0.3);
}
.about-badge-box {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--red);
    padding: 24px;
    text-align: center;
    border-radius: 6px;
}
.about-badge-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    line-height: 1;
}
.about-badge-text { color: rgba(255,255,255,0.85); font-size: 13px; font-family: var(--font-light); }
.about-text h2 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.about-text h2 span { color: var(--red); }
.about-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: var(--font-light);
    font-weight: 300;
}
.about-features { margin: 24px 0; }
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 600;
}
.about-feature-item i { color: var(--red); font-size: 16px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.team-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--white-2);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--red); }
.team-avatar {
    width: 80px; height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 18px;
}
.team-card h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; }
.team-card span { color: var(--red); font-size: 13px; font-weight: 600; font-family: var(--font-light); }

/* ===== SUCCESS/ERROR MSG ===== */
.alert {
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: var(--font-light);
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px; right: 24px;
    width: 52px; height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.call-float {
    position: fixed;
    bottom: 28px; right: 24px;
    width: 52px; height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: var(--shadow-red);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover, .call-float:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-logo i { font-size: 32px; color: var(--red); }
.f-logo-main {
    font-family: var(--font-display);
    font-size: 28px;
    display: block;
    letter-spacing: 2px;
}
.f-logo-sub {
    font-size: 10px;
    color: var(--red);
    letter-spacing: 3px;
    font-family: var(--font-light);
    font-weight: 600;
}
.footer-about {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--font-light);
    font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: var(--black-3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-heading {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-light);
}
.footer-links a i { color: var(--red); font-size: 10px; }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #888;
    font-size: 14px;
    font-family: var(--font-light);
    line-height: 1.5;
}
.footer-contact-list i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: #888; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--red); }
.footer-bottom {
    background: var(--black-2);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: #666;
    font-size: 13px;
    font-family: var(--font-light);
}
.footer-bottom a { color: var(--red); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}
.fade-up { animation: fadeUp 0.6s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .hero-content-wrap { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .topbar-left { display: none; }
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 999;
        border-left: 2px solid var(--red);
        align-items: flex-start;
        gap: 6px;
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links li a { display: block; padding: 12px 16px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .booking-tab-btns { flex-wrap: wrap; }
}
