/* ============================================================
   TANU MANU TOUR N TRAVELS — Main Stylesheet
   Design: Warm Rajasthani Vibrancy — Saffron, Turquoise, Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    --primary: #E8540A;
    /* Deep Saffron-Orange */
    --primary-dk: #C1440B;
    --accent: #00B4C8;
    /* Turquoise */
    --accent-dk: #0097AA;
    --gold: #F5A623;
    /* Rajasthani Gold */
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --light: #F9F5EF;
    --white: #FFFFFF;
    --text: #3D3D3D;
    --text-muted: #777;
    --border: #E8E0D5;

    --font-display:  serif;
    --font-body: 'Poppins', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.25;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dk);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Utility ── */
.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.badge-label {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
}

/* ── Buttons ── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 84, 10, 0.35);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 200, 0.35);
}

/* ────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
#mainNav {
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
}

#mainNav.scrolled {
    background: var(--dark) !important;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(232, 84, 10, 0.4);
}

.brand-text {
    line-height: 1.15;
}

.brand-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.3px;
}

.brand-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88) !important;
    letter-spacing: 0.3px;
    padding: 8px 14px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    left: 14px;
    right: 14px;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 9px 22px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dk) !important;
}

.nav-cta::after {
    display: none !important;
}

.navbar-toggler {
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 8px;
}

.navbar-toggler-icon {
    filter: brightness(10);
}

/* ────────────────────────────────────────────
   HERO CAROUSEL
──────────────────────────────────────────── */
#heroCarousel {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 46, 0.82) 0%,
            rgba(232, 84, 10, 0.35) 50%,
            rgba(0, 0, 0, 0.50) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.hero-scroll-hint i {
    font-size: 1.2rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    margin: 0 5px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    width: 28px;
    border-radius: 10px !important;
}

/* ────────────────────────────────────────────
   ABOUT SECTION
──────────────────────────────────────────── */
#about {
    background: var(--white);
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-accent {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 180px;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(232, 84, 10, 0.35);
    z-index: 2;
}

.about-badge-float .num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-float .lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 32px 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.about-feature-item i {
    font-size: 1.3rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.about-feature-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ────────────────────────────────────────────
   SERVICES SECTION
──────────────────────────────────────────── */
#services {
    background: var(--dark);
}

#services .section-title {
    color: var(--white);
}

#services .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(232, 84, 10, 0.3);
    transition: var(--transition);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ────────────────────────────────────────────
   POPULAR ROUTES
──────────────────────────────────────────── */
#routes {
    background: var(--light);
}

.route-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.route-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.route-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.route-card:hover .route-img-wrap img {
    transform: scale(1.08);
}

.route-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, transparent 60%);
}

.route-city-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
}

.route-body {
    padding: 22px;
}

.route-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-title i {
    color: var(--accent);
}

.route-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-meta i {
    color: var(--primary);
}

/* ────────────────────────────────────────────
   FLEET SECTION
──────────────────────────────────────────── */
#fleet {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

#fleet .section-title {
    color: var(--white);
}

#fleet .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.fleet-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(232, 84, 10, 0.2);
}

.fleet-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.07);
}

.fleet-body {
    padding: 20px;
}

.fleet-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.fleet-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fleet-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ────────────────────────────────────────────
   WHY CHOOSE US
──────────────────────────────────────────── */
#why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.why-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--light);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--white);
}

.why-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(232, 84, 10, 0.12), rgba(245, 166, 35, 0.12));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────── */
#testimonials {
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark);
}

.author-location {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ────────────────────────────────────────────
   CONTACT / BOOKING SECTION
──────────────────────────────────────────── */
#contact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 84, 10, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-info-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-detail a,
.contact-detail span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-detail a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form-box>p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.form-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 16px;
    color: var(--text);
    transition: var(--transition);
    background: var(--light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 84, 10, 0.12);
    background: var(--white);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 84, 10, 0.35);
}

.alert-success-custom {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.alert-error-custom {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
#footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--white) !important;
    padding-left: 4px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 18px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--gold) !important;
}

/* ────────────────────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8540A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold) !important;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ────────────────────────────────────────────
   BACK TO TOP
──────────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(232, 84, 10, 0.4);
    cursor: pointer;
    border: none;
}

#backToTop.visible {
    opacity: 1;
    pointer-events: auto;
}

#backToTop:hover {
    background: var(--primary-dk);
    transform: translateY(-3px);
}

/* ────────────────────────────────────────────
   FLOATING CALL BUTTON
──────────────────────────────────────────── */
.float-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: pulse-green 2.5s infinite;
}

.float-call:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white) !important;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
    }
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .about-img-accent {
        display: none;
    }

    .about-badge-float {
        top: 14px;
        left: 14px;
    }

    .contact-info-box {
        margin-bottom: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 64px 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 28px 22px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    #mainNav {
        padding: 12px 0;
    }
}

@media (max-width: 575.98px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.9rem;
    }
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}