/* =========================================
   BHAIRAVAA TOURS & TRAVELS - CUSTOM STYLES
   ========================================= */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #F77F00;
    --primary-dark: #D96900;
    --primary-light: #FFB347;
    --primary-soft: #FEF1E0;
    --secondary: #1A2238;
    --secondary-light: #2D3858;
    --accent: #FFC93C;
    --bg-light: #FFF8F0;
    --bg-section: #FAF5EE;
    --bg-warm: #FFF3E0;
    --bg-cream: #FDF6EC;
    --bg-soft-navy: #F4F5FA;
    --text-dark: #1A2238;
    --text-muted: #6B7280;
    --white: #ffffff;
    --border: #E8E2D6;
    --shadow-sm: 0 4px 12px rgba(26, 34, 56, 0.06);
    --shadow-md: 0 12px 30px rgba(26, 34, 56, 0.1);
    --shadow-lg: 0 25px 50px rgba(26, 34, 56, 0.15);
    --shadow-orange: 0 15px 35px rgba(247, 127, 0, 0.25);
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

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

/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
    line-height: 1.75;
}

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

a:hover {
    color: var(--primary-dark);
}

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

.section-padding {
    padding: 100px 0;
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-eyebrow span {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

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

/* ===== BUTTONS ===== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transition: var(--transition);
    z-index: 0;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom>* {
    position: relative;
    z-index: 1;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(247, 127, 0, 0.35);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--primary);
}

.top-bar-info span {
    margin-right: 22px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info i {
    color: var(--primary);
    margin-right: 6px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.75);
    margin-left: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    display: inline-block;
}

/* ===== HEADER / NAVBAR ===== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-orange);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(0deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.brand-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 24px;
}

.navbar-toggler {
    border: none;
    padding: 6px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
}

.carousel-item {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--secondary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.925) 0%, rgba(0, 0, 0, 0.596) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 0;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(247, 127, 0, 0.2);
    color: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 1px solid rgba(247, 127, 0, 0.4);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.carousel-indicators {
    bottom: 130px;
}

.carousel-indicators button {
    width: 40px !important;
    height: 4px !important;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    margin: 0 4px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--primary) !important;
    width: 60px !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.custom-control-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.custom-control-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #ffebcc;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-image-wrap {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-image-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: var(--shadow-orange);
    text-align: center;
    transform: rotate(-5deg);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 4px;
    line-height: 1.3;
}

.about-description {
    font-size: 0.98rem;
    margin-bottom: 28px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-item i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(247, 127, 0, 0.12);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-item h6 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.feature-item p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 8%;
    left: -180px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: -180px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-sm);
}

.service-tag i {
    margin-right: 4px;
}

.service-body {
    padding: 28px 26px 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-text {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    align-self: flex-start;
    transition: var(--transition);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    color: var(--primary-dark);
    border-color: var(--primary);
    gap: 12px;
}

.service-link i {
    transition: var(--transition);
}


/* ===== FLEET SECTION ===== */
.fleet-section {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -150px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.fleet-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.fleet-section .container {
    position: relative;
    z-index: 1;
}

.fleet-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 22px;
    padding: 32px 22px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.fleet-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    overflow: hidden;
}

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

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

.fleet-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    transition: var(--transition);
    line-height: 1.25;
}

.fleet-card:hover .fleet-title {
    color: var(--primary);
}

.fleet-seater {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0;
}

.fleet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(247, 127, 0, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: var(--transition);
}

.fleet-btn i {
    transition: var(--transition);
}

.fleet-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.fleet-btn:hover i {
    transform: translateX(3px);
}

/* Fleet section CTA wrap */
.fleet-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .fleet-image {
        height: 130px;
    }

    .fleet-title {
        font-size: 1.05rem;
    }

    .fleet-card {
        padding: 28px 18px 24px;
    }
}

@media (max-width: 991.98px) {
    .fleet-image {
        height: 115px;
        margin-bottom: 18px;
    }

    .fleet-title {
        font-size: 1rem;
    }

    .fleet-seater {
        font-size: 0.88rem;
    }

    .fleet-card {
        padding: 24px 16px 20px;
    }

    .fleet-btn {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
}

@media (max-width: 575.98px) {
    .fleet-card {
        padding: 22px 14px 18px;
    }

    .fleet-image {
        height: 100px;
        margin-bottom: 16px;
    }

    .fleet-title {
        font-size: 0.92rem;
    }

    .fleet-seater {
        font-size: 0.82rem;
    }
}

/* ===== BUDGET SECTION ===== */
.budget-section {
    background: linear-gradient(180deg, #ffe0b5 0%, #e3e3e3 100%);
    position: relative;
    overflow: hidden;
}

.budget-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.budget-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.budget-section .container {
    position: relative;
    z-index: 1;
}

.budget-card {
    position: relative;
    padding: 36px 28px 32px;
    border-radius: 22px;
    color: var(--white);
    overflow: hidden;
    height: 100%;
    min-height: 260px;
    transition: var(--transition);
    border: 3px solid transparent;
}

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

.budget-economy {
    background: linear-gradient(135deg, #F77F00 0%, #FFA31A 100%);
}

.budget-premium {
    background: linear-gradient(135deg, #2D5A3F 0%, #4A8B5C 100%);
}

.budget-royal {
    background: linear-gradient(135deg, #B8336A 0%, #E55887 100%);
}

.budget-vip {
    background: linear-gradient(135deg, #5E2BFF 0%, #8E5BFF 100%);
}

.budget-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.budget-card:hover .budget-icon {
    transform: rotate(-8deg) scale(1.05);
    background: rgba(255, 255, 255, 0.28);
}

.budget-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.budget-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

.budget-corner {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: var(--transition);
}

.budget-card:hover .budget-corner {
    transform: scale(1.5);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.why-item:last-child {
    border-bottom: none;
}

.why-item:hover {
    padding-left: 12px;
}

.why-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.why-content h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

.why-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.why-floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.why-floating-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1;
}

.why-floating-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    position: relative;
    padding: 80px 0;
    background: url('') center/cover no-repeat;
    background-color: var(--secondary);
    color: var(--white);
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 34, 56, 0.92) 0%, rgba(217, 105, 0, 0.85) 100%);
}

.counter-box {
    padding: 20px 10px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.counter-number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.counter-number::after {
    content: '+';
    color: var(--primary-light);
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.03em;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 250px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.gallery-tall {
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.85) 0%, rgba(217, 105, 0, 0.85) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -150px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 18px;
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.faq-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.faq-contact-card small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}

.faq-contact-card a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.accordion-flush .accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary);
}

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.6rem;
    color: var(--primary);
    width: 32px;
    height: 32px;
    background-color: rgba(247, 127, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    font-weight: 400;
    line-height: 1;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
    background-color: var(--primary);
    color: var(--white);
    transform: none;
}

.accordion-body {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(26, 34, 56, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    padding: 40px 36px;
    border-radius: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-title {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 8px;
    position: relative;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    font-size: 0.95rem;
    position: relative;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-orange);
}

.contact-info-item h6 {
    font-family: var(--font-body);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: var(--primary-light);
}

.contact-info-social {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    position: relative;
}

.contact-info-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.contact-info-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-title {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.contact-form-text {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.custom-input {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.custom-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(247, 127, 0, 0.1);
    outline: none;
}

textarea.custom-input {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.footer-top {
    padding-bottom: 50px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-about {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-title {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    word-break: break-word;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-icons{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.floating-icons a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    transition:all .3s ease;
}

.call-icon{
    background:#007bff;
}

.whatsapp-icon{
    background:#25D366;
}

.instagram-icon{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.floating-icons a:hover{
    transform:scale(1.1);
}

@media(max-width:768px){
    .floating-icons{
        right:15px;
        bottom:15px;
    }

    .floating-icons a{
        width:50px;
        height:50px;
        font-size:22px;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.scroll-top-btn:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large devices */
@media (max-width: 1199.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-content {
        padding: 80px 0;
    }
}

/* Medium devices */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 22px;
        margin-top: 14px;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .carousel-item {
        height: 75vh;
        min-height: 500px;
    }

    .carousel-indicators {
        bottom: 100px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .about-image-wrap {
        padding-right: 0;
        padding-bottom: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-sub {
        width: 160px;
        height: 160px;
        bottom: -30px;
        right: -10px;
    }

    .about-badge {
        top: 20px;
        left: -10px;
        padding: 16px 18px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .why-image-wrap img {
        height: 460px;
    }
}

/* Small devices */
@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-item {
        height: 80vh;
        min-height: 480px;
    }

    .carousel-indicators {
        bottom: 80px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .about-image-sub {
        width: 130px;
        height: 130px;
    }

    .about-image-main img {
        height: 380px;
    }

    .about-badge {
        padding: 14px 16px;
        top: 14px;
    }

    .badge-number {
        font-size: 1.7rem;
    }

    .badge-text {
        font-size: 0.68rem;
    }

    .service-image {
        height: 200px;
    }

    .why-image-wrap img {
        height: 380px;
    }

    .why-floating-card {
        bottom: 16px;
        left: 16px;
        padding: 14px 18px;
    }

    .floating-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .gallery-item,
    .gallery-item.gallery-tall {
        height: 170px;
    }

    .counter-section {
        padding: 60px 0;
    }

    .counter-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 24px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.4rem;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 18px;
    }

    .floating-whatsapp {
        left: 16px;
    }

    .floating-call {
        right: 16px;
    }

    .scroll-top-btn {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-tag {
        font-size: 0.65rem;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .budget-card {
        padding: 28px 22px;
        min-height: auto;
    }

    .why-item {
        gap: 14px;
    }

    .why-number {
        font-size: 1.6rem;
        width: 44px;
    }
}

/* =========================================
   QUICK BOOKING FORM SECTION
   ========================================= */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -90px;
    margin-bottom: 60px;
    padding: 0 15px;
}

.booking-card {
    background: var(--white);
    border-radius: 28px;
    padding: 42px 44px 36px;
    box-shadow: 0 30px 70px rgba(26, 34, 56, 0.18);
    border: 1px solid rgba(247, 127, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.booking-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.booking-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.booking-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 127, 0, 0.12);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.booking-eyebrow i {
    font-size: 0.85rem;
}

.booking-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.booking-form {
    position: relative;
    z-index: 1;
}

.booking-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.booking-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-input-wrap>i:first-child {
    position: absolute;
    left: 16px;
    color: var(--primary);
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 2;
}

.booking-input-icon-end {
    position: absolute;
    right: 16px;
    color: var(--primary);
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 2;
}

.booking-input {
    width: 100%;
    background: var(--bg-cream);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Text input: icon on right, so left padding normal, right padding bigger */
input.booking-input {
    padding-left: 16px;
    padding-right: 44px;
}

/* Select dropdown: icon on left + arrow on right */
select.booking-input {
    padding-left: 44px;
    padding-right: 40px;
}

.booking-input::placeholder {
    color: #9CA3AF;
}

.booking-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(247, 127, 0, 0.12);
    outline: none;
}

.booking-input.is-invalid {
    border-color: #dc3545;
    background: #fef5f5;
}

/* Custom dropdown arrow for select */
select.booking-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F77F00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    cursor: pointer;
    width: 100%;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(247, 127, 0, 0.35);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.booking-btn i {
    transition: var(--transition);
}

.booking-btn:hover i {
    transform: translateX(4px);
}

/* Booking section responsive */
@media (max-width: 991.98px) {
    .booking-section {
        margin-top: -60px;
        margin-bottom: 40px;
    }

    .booking-card {
        padding: 32px 28px 28px;
        border-radius: 22px;
    }

    .booking-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .booking-section {
        margin-top: -40px;
        margin-bottom: 30px;
    }

    .booking-card {
        padding: 28px 22px 24px;
        border-radius: 20px;
    }

    .booking-header {
        margin-bottom: 20px;
        text-align: center;
    }

    .booking-eyebrow {
        font-size: 0.7rem;
    }

    .booking-title {
        font-size: 1.35rem;
    }

    .booking-subtitle {
        font-size: 0.88rem;
    }

    .booking-label {
        font-size: 0.72rem;
        margin-bottom: 6px;
    }

    .booking-input {
        padding: 11px 14px 11px 40px;
        font-size: 0.9rem;
    }

    .booking-btn {
        padding: 13px 20px;
        font-size: 0.85rem;
        margin-top: 8px;
    }
}

@media (max-width: 575.98px) {
    .booking-section {
        margin-top: -30px;
        padding: 0 12px;
    }

    .booking-card {
        padding: 24px 18px 20px;
    }
}