*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: #ffffff;
    padding-top: 70px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin: 0;
    overflow-x: hidden;
}

/* ======== NAVBAR ======== */
.custom-navbar {
    background-color: #000;
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    z-index: 1050;
}
.logo { max-height: 60px; }

.navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
    margin-right: 20px;
    text-transform: uppercase;
    position: relative;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    padding: 8px 4px !important;
    transition: color 0.3s;
}
.navbar-nav .nav-link.active { color: #ff7f00; }
.navbar-nav .nav-link:hover { color: #ff7a00; }
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ff7f00;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}
.navbar-nav .nav-link:hover::after { width: 100%; }
.navbar-nav .dropdown:hover .nav-link::after { width: 0; }
.navbar-nav .nav-link.dropdown-toggle:after { display: none; }

.dropdown-menu {
    background: #111;
    border: none;
    border-top: 3px solid #ff7a00;
    border-radius: 0 0 10px 10px;
    padding: 8px 0;
    min-width: 230px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    animation: dropFade 0.25s ease;
}
@keyframes dropFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu .dropdown-item {
    color: #bbb;
    padding: 11px 22px;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: all 0.25s;
    border-left: 3px solid transparent;
}
.dropdown-menu .dropdown-item:hover {
    background: rgba(255,122,0,0.1);
    color: #ff7a00;
    border-left-color: #ff7a00;
    padding-left: 28px;
}

.btn-call {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: white;
    padding: 10px 20px;
    margin-left: 20px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,122,0,0.3);
}
.btn-call i { margin-right: 10px; }
.btn-call:hover {
    background: linear-gradient(135deg, #ff5500, #ff7a00);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,122,0,0.4);
}

.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28fff,%201%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4%207h22M4%2015h22M4%2023h22'/%3E%3C/svg%3E");
}


/* ======== HERO — FULL SPLIT WITH FORM INSIDE ======== */
.hero-main {
    min-height: 85vh;
    background: linear-gradient(110deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 100%), url("../image/car-person.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
    pointer-events: none;
}
.hero-left { padding: 60px 0; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,122,0,0.15);
    border: 1px solid rgba(255,122,0,0.35);
    color: #ff7a00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero-main h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-main h1 .text-accent { color: #ff7a00; }
.hero-desc {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(255,85,0,0.35);
}
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,85,0,0.45);
    color: #fff;
}
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.hero-btn-outline:hover {
    border-color: #ff7a00;
    color: #ff7a00;
    background: rgba(255,122,0,0.05);
}

/* HERO FORM CARD */
.hero-form-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}
.hero-form-header {
    background: #ff7a00;
    color: #fff;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-form-header .bi { color: #ff7a00; font-size: 1.3rem; }
.hero-form-body { padding: 28px; }

@media(max-width:992px) {
    .hero-main { min-height: auto; padding-bottom: 40px; }
    .hero-main h1 { font-size: 2rem; }
    .hero-left { text-align: center; padding: 40px 0 20px; }
    .hero-desc { margin: 0 auto 25px; }
    .hero-btns { justify-content: center; }
    .hero-main::after { display: none; }
}


/* ======== TRUST BADGES — HORIZONTAL BAR ======== */
.trust-bar {
    background: #0d0d0d;
    padding: 0;
    border-bottom: 3px solid #ff7a00;
    position: relative;
    z-index: 3;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 10px;
    border-right: 1px solid #1a1a1a;
    justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,122,0,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ff7a00;
    flex-shrink: 0;
}
.trust-text h6 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.trust-text p {
    color: #777;
    font-size: 0.76rem;
    margin: 0;
    line-height: 1.3;
}
@media(max-width:768px) {
    .trust-item { border-right: none; border-bottom: 1px solid #1a1a1a; }
}


/* ======== ABOUT — OVERLAPPING IMAGE STYLE ======== */
.about-block {
    padding: 5rem 6rem;
    background: #f8f8f8;
    position: relative;
}
.about-img-wrap {
    position: relative;
    padding: 20px;
}
.about-img-wrap img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff7a00;
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px 0 16px 0;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 8px 25px rgba(255,122,0,0.3);
}
.about-img-badge span { display: block; font-size: 1.8rem; }
.about-text { padding-left: 30px; }
.about-label {
    color: #ff7a00;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.about-title {
    font-weight: 900;
    color: #111;
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.about-line {
    width: 50px;
    height: 3px;
    background: #ff7a00;
    margin-bottom: 20px;
}
.about-text p { color: #666; font-size: 17px; line-height: 1.7; text-align: justify; }
.about-text ul { padding-left: 20px; font-size: 17px; color: #666; }
.about-text ul li { margin-bottom: 6px; }
.btn-main {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    border: none;
    color: white;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,122,0,0.25);
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,122,0,0.35);
    color: #fff;
}
@media(max-width:992px) {
    .about-block { padding: 3rem 1rem; }
    .about-text { padding: 25px 0 0 0; }
}


/* ======== SERVICES — OVERLAY CARD STYLE ======== */
.services-block {
    padding: 70px 0;
    background: #fff;
}
.section-tag {
    color: #ff7a00;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}
.section-heading {
    font-size: 2.1rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}
.section-line {
    width: 50px;
    height: 3px;
    background: #ff7a00;
    margin: 0 auto 15px auto;
}
.section-desc {
    color: #777;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.svc-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: #fff;
}
.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.svc-card-img {
    position: relative;
    overflow: hidden;
    height: 210px;
}
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.12); }
.svc-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}
.svc-card-body {
    padding: 22px 24px 24px;
}
.svc-card-body h5 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    margin-top: 0;
}
.svc-card-body p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff7a00;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.3s;
}
.svc-link:hover { gap: 12px; color: #e66a00; }
.svc-link .bi { font-size: 0.9rem; color: #ff7a00; margin: 0; }


/* ======== FLEET — DARK SECTION WITH GRID ======== */
.fleet-block {
    background: #111;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.fleet-block::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,122,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.fleet-block .section-tag { color: #ff7a00; }
.fleet-block .section-heading { color: #fff; }
.fleet-block .section-desc { color: #888; }

.fleet-item {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.4s;
    height: 100%;
}
.fleet-item:hover {
    border-color: #ff7a00;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,122,0,0.1);
}
.fleet-item img {
    max-height: 120px;
    margin-bottom: 18px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}
.fleet-item:hover img { transform: scale(1.08); }
.fleet-item h5 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.fleet-item p { color: #888; font-size: 0.88rem; margin-bottom: 16px; }
.fleet-item .fleet-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.fleet-btn-info {
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.fleet-btn-info:hover { background: #e66a00; color: #fff; }
.fleet-btn-book {
    background: #222;
    color: #fff;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.fleet-btn-book:hover { background: #333; border-color: #ff7a00; color: #ff7a00; }


/* ======== WHY CHOOSE — ICON GRID ======== */
.why-block {
    padding: 70px 0;
    background: #fff;
}
.why-card {
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff7a00;
    transform: scaleX(0);
    transition: transform 0.4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255,122,0,0.1), rgba(255,85,0,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #ff7a00;
    transition: all 0.4s;
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: #fff;
    transform: rotateY(180deg);
}
.why-card h5 { font-weight: 700; color: #111; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: #777; line-height: 1.6; }


/* ======== RIDE WITH US ======== */
.ride-block {
    background: #f8f8f8;
    padding: 70px 0;
}
.ride-block h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #ff7a00;
}
.text-orange { color: #ff7a00; }
.benefits-list li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits-list i { font-size: 20px; }
.btn-orange {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255,122,0,0.25);
}
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,122,0,0.35); color: #fff; }
.img-fluidd { max-width: 70%; height: auto; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }


/* ======== TESTIMONIALS ======== */
.reviews-block {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.reviews-block::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,122,0,0.05) 0%, transparent 70%);
}
.reviews-block .section-tag { color: #ff7a00; }
.reviews-block .section-heading { color: #fff; }
.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.4s;
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4rem;
    color: rgba(255,122,0,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.review-card:hover { border-color: rgba(255,122,0,0.3); transform: translateY(-5px); }
.review-stars { margin-bottom: 16px; }
.review-stars .bi { color: #ff7a00; font-size: 0.95rem; margin-right: 2px; }
.review-text { color: #bbb; font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.review-info h6 { color: #fff; font-weight: 700; margin: 0 0 4px; font-size: 0.92rem; }
.review-info small { color: #888; font-size: 0.8rem; }


/* ======== CTA BANNER ======== */
.cta-block {
    background: linear-gradient(135deg, #ff7a00 0%, #ff4400 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-block::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-block h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.cta-block p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 28px; }
.cta-btn {
    background: #fff;
    color: #ff7a00;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta-btn:hover { background: #111; color: #ff7a00; transform: translateY(-3px); }
.cta-img { max-width: 70%; height: auto; position: relative; z-index: 1; }


/* ======== FOOTER ======== */
.site-footer {
    background: #080808;
    padding: 55px 26px 20px;
    color: #999;
}
.footer-heading {
    color: #ff7a00;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-line {
    width: 40px;
    height: 3px;
    background: #ff7a00;
    margin: 10px 0 18px;
}
.site-footer p { color: #777; font-size: 0.9rem; line-height: 1.7; }
.site-footer a { color: #999; text-decoration: none; transition: color 0.3s; font-size: 0.9rem; }
.site-footer a:hover { color: #ff7a00; }
.site-footer .list-unstyled li { margin-bottom: 10px; }
.site-footer .bi { margin-right: 8px; color: #ff7a00; }
.footer-hr { border-top: 1px solid #1a1a1a; margin: 30px 0 15px; }
.footer-copy { text-align: center; color: #555; font-size: 0.82rem; }


/* ======== INNER PAGE HERO ======== */
.page-hero {
    background: linear-gradient(135deg, #ff7a00 0%, #ff4400 100%);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    position: relative;
}
.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: #fff; }
.hero-actions { margin-top: 18px; }
.hero-btn-white {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin: 6px;
    transition: all 0.3s;
}
.hero-btn-white:hover { background: #111; color: #ff7a00; }


/* ======== BOOKING PAGE HERO ======== */
.booking-hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.5)), url("../image/car-person.jpg");
    background-size: cover;
    background-position: center;
    padding: 150px 10px 120px;
}
.booking-hero h1 { font-weight: 900; color: #ff7a00; font-size: 2.5rem; }
.booking-hero h1 span { color: #fff; }
.booking-hero p { color: #fff; font-size: 1.4rem; margin-top: 5px; }
.booking-hero .phone-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #fff;
    color: #ff7a00;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.booking-hero .phone-link:hover { background: #ff7a00; color: #fff; }
@media(max-width:992px) {
    .booking-hero { padding: 100px 10px; }
    .booking-hero p { font-size: 1.2rem; }
}


/* ======== FORM STYLES ======== */
.frm2 { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 15px; }
.frm3 { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 15px; }
.dtm { font-size: 13pt; font-weight: 600; text-align: left; }

.container-fluid { position: relative; width: 85% !important; }

.card { background: #f5f5f5; border: none; border-radius: 16px; overflow: hidden; }
.card-header { font-weight: bold; font-size: 1.15rem; margin: 0; }
.card-header:first-child { border-radius: 0 !important; padding: 16px 24px !important; text-align: center; }
.card-body { background: #f5f5f5 !important; padding: 28px !important; }
textarea { resize: vertical; }
form .form-control {
    height: 50px !important;
    font-size: 1.05rem !important;
    border-radius: 10px !important;
    border: 1px solid #ddd;
    padding: 10px 16px !important;
    transition: all 0.3s;
}
form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(255,122,0,0.1) !important;
    border-color: #ff7a00 !important;
}
#note { height: auto !important; }
.btn-warning {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    font-size: 1.15rem;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,122,0,0.25);
}
.btn-warning:hover { background: linear-gradient(135deg, #ff5500, #ff7a00); color: #fff; transform: translateY(-2px); }
.btn-check:focus + .btn-warning, .btn-warning:focus { color: #fff; background-color: #ff7a00; border-color: #ff7a00; box-shadow: 0 0 0 4px rgba(255,122,0,0.2); }
.form-label::after { content: " *"; color: red; }


/* ======== SERVICE DETAIL PAGES ======== */
.svc-detail { padding: 60px 0; }
.svc-detail h2 { color: #FF7A00; font-weight: 800; }
.svc-detail p { line-height: 1.8; font-size: 15px; text-align: justify; color: #555; }
.highlight-text { color: #FF7A00; font-weight: bold; }
.divider { width: 50px; height: 3px; background: #FF7A00; margin: 10px 0 20px; }

.detail-img { overflow: hidden; border-radius: 16px; }
.detail-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s;
}
.detail-img:hover img { transform: scale(1.03); }
.text-content p { font-size: 16px; line-height: 1.8; color: #555; }

.sidebar-card {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    padding: 28px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}
.sidebar-card h4 { color: #FF7A00; font-weight: 800; }
.sidebar-list { margin-top: 20px; }
.sidebar-list a { text-decoration: none; color: #333; }
.sidebar-list .list-group-item {
    background: transparent;
    border: none;
    padding: 13px 18px;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: left;
    margin-bottom: 4px;
}
.sidebar-list .list-group-item.active {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255,122,0,0.25);
}
.sidebar-list .list-group-item.active a { color: #fff; }
.sidebar-list .list-group-item:hover { background: #fff5eb; }

/* Core Values */
.core-values { padding: 60px 0; text-align: center; }
.core-values h2 { color: #FF7A00; font-weight: 800; margin-bottom: 40px; }
.core-value-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: left;
    transition: all 0.4s;
    border: 1px solid #eee;
    height: 100%;
}
.core-value-box:hover { transform: translateY(-8px); box-shadow: 0 15px 45px rgba(0,0,0,0.1); border-color: #ff7a00; }
.core-value-box h4 { color: #FF7A00; font-weight: 700; margin-bottom: 15px; }
.core-value-box p { font-size: 16px; line-height: 1.8; }
.icon { font-size: 32px; color: #FF7A00; margin-right: 15px; }
.icon-box { display: flex; align-items: center; margin-bottom: 15px; }


/* ======== CONTACT PAGE ======== */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff5500);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 15px 45px rgba(0,0,0,0.1); }
.contact-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(255,85,0,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #ff7a00;
}
.contact-card h5 { font-weight: 700; color: #111; margin-bottom: 8px; }
.contact-card p, .contact-card a { color: #777; text-decoration: none; font-size: 0.95rem; }
.contact-form { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 8px 30px rgba(0,0,0,0.05); border: 1px solid #eee; }
.map-container { height: 400px; margin-top: 20px; border-radius: 16px; overflow: hidden; }
.btn-primary {
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    border: none;
    font-weight: bold;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,122,0,0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, #ff5500, #ff7a00); border: none; transform: translateY(-2px); }


/* ======== THANK YOU ======== */
.thank-you-message {
    margin: 18px auto;
    padding: 60px 45px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    text-align: center;
}


/* ======== MISC ======== */
.img-fluid { max-width: 100%; height: auto; border-radius: 8px; }
.btn-outline-secondary { display: flex; justify-content: center; align-items: center; flex-direction: column; height: 100%; padding: 15px; border: 2px solid #ddd; transition: 0.3s; border-radius: 10px; }
.btn-outline-secondary:hover { border-color: #ff7a00; }
.form-check-inline { margin-right: 15px; }
.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active { color:#fff;background-color:#ff7a00;border-color:#ff7a00; }
.card-title { color: #333; }
.card-text { color: #333; }
h2 { font-size: 28px; color: #111; font-weight: 800; }
h5 { font-size: 20px; color: #333; margin-top: 15px; }
p { color: #666; line-height: 1.6; }
hr { border-top: 1px solid #1a1a1a; margin: 25px 0; }

.iti { width: 100%; display: block; }
.iti-mobile .iti__country-list { max-height: 100%; width: 20% !important; }
.iti input { width: 100%; padding-left: 90px !important; }

.about-section { padding: 60px 0 0 0; }
.about-section h2 { color: #FF7A00; font-weight: 800; }
.about-section p { line-height: 1.8; font-size: 15px; text-align: justify; }
.image-container img { border-radius: 16px; max-width: 100%; }

@media (max-width: 768px) {
    h2 { font-size: 24px; }
    h5 { font-size: 18px; }
    .container-fluid { width: 100% !important; }
    .page-hero h1 { font-size: 1.8rem; }
    .img-fluidd { max-width: 100%; margin-top: 5%; }
    .frm2 { grid-template-columns: repeat(1, 1fr); }
    .frm3 { grid-template-columns: repeat(1, 1fr); }
    .cta-block h2 { font-size: 1.6rem; }
    .section-heading { font-size: 1.6rem; }
    .about-block { padding: 3rem 1rem; }
}
.contact-fixed {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

/* Buttons */
.contact-fixed a {
  width: 45px;
  height: 45px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* Colors */
.call { background: #007bff; }
.whatsapp { background: #25d366; }
.sms { background: #ff9800; }

/* Hover */
.contact-fixed a:hover {
  transform: scale(1.1);
}