/*
*******************************************
*******************************************

** - Default CSS
** - TOP HEADER CSS
** - NAVBAR CSS
** - SEARCH CSS
** - MOBILE SIDEBAR CSS
** - SECTION TITTLE CSS
** - FOOTER SECTION CSS
** - PAGE HEADER CSS

======  Home Page ======

** - HOME HEADER CSS
** - ROUTE STRIP CSS
** - HOW WE WORK CSS
** - HIGHWAY CAR ANIMATION CSS
** - NAVAGRAHA SECTION CSS
** - FAMOUS TEMPLES CSS
** - STORY SECTION CSS
** - CUSTOM SECTION CSS

======  Company Page ======

** - CONNECTION SECTION CSS
** - DEEPAM LAMP SECTION CSS
** - PHOTO GALLERY MOSAIC
** - MISSION & VISION
** - PROMISE PLEDGE
** - ANIMATED TEMPLE
** - HOW IT WORKS SECTION CSS

======  Package Page ======

** - PACKAGES SECTION CSS
** - WHAT'S INCLUDED BANNER CSS
** - CTA BOTTOM SECTION CSS

======  Contact Page ======

** - CONTACT HERO SECTION CSS
** - CONTACT DETAILS SECTION CSS
** - ENQUIRY FORM SECTION CSS
** - WHY US SECTION CSS

======  Vehicles Page ======

** - Malaysia → Trichy Travel Specialists
** - OUR VEHICLES
** - COMPARISON TABLE
** - COMFORT FEATURES
** - AIRPORT PICKUP
** - FAQ

*******************************************
*******************************************
*/

/*================================================
Default CSS
=================================================*/

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
}

body {
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden !important;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cinzel', serif;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

:focus {
    outline: 0 !important;
}

/*================================================
TOP HEADER CSS
=================================================*/

.top-header {
    background: linear-gradient(135deg, rgba(167, 35, 0, 0.97) 0%, rgba(212, 137, 26, 0.97) 100%);
    color: #ccc;
    font-size: 0.78rem;
    padding: 6px 0;
    border-bottom: 2px solid #ff6b00;
}

.top-left span {
    color: #eee8e8;
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.top-left i {
    color: #ff6b00;
    font-size: 0.95rem;
}

.top-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.top-right a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

@media (max-width: 767px) {
    .top-left {
        font-size: 0.67rem;
        text-align: center;
    }

    .top-left span {
        margin-right: 8px;
    }

    .top-right {
        justify-content: center;
        margin-top: 4px;
    }

    .top-header .top-right {
        display: none;
    }
}

/*================================================
NAVBAR CSS
=================================================*/

.main-navbar {
    background: #fcf9f5;
    padding: 5px 0 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 24px rgba(255, 107, 0, 0.12);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrap img {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b00;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.9rem;
    color: #6c757d;
}

.nav-links {
    gap: 4px;
}

.nav-links .nav-link {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1a1a1a !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #ff6b00;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: #ff6b00 !important;
    background: #fff3e8;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
    transform: scaleX(1);
}

/*================================================
SEARCH CSS
=================================================*/

.nav-search {
    position: relative;
    align-items: center;
    gap: 8px;
}

.search-btn {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 10px 13px 8px 13px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-btn:hover {
    background: #e05a00;
    transform: scale(1.1);
}

.search-box {
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.4s ease;
}

.search-box.open {
    max-width: 220px;
}

.search-box input {
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    outline: none;
    width: 200px;
}

/* ===== HAMBURGER ===== */

.hamburger-btn {
    background: none;
    border: none;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ff6b00;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }

    .nav-search {
        display: none !important;
    }
}

/*================================================
MOBILE SIDEBAR CSS
=================================================*/

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 1200;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: red;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: auto;
    display: block;
}

.sidebar-logo {
    border-bottom: 2px solid #fff3e8;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.sidebar-logo .brand-name {
    font-size: 1.3rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid #fff3e8;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-nav a:hover {
    color: #ff6b00;
    padding-left: 16px;
}

.sidebar-nav a i {
    color: #ff6b00;
    width: 18px;
    font-size: 18px;
}

.sidebar-contact {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid #fff3e8;
    font-size: 0.82rem;
    color: #6c757d;
}

.sidebar-contact p {
    margin-bottom: 8px;
}

.sidebar-contact i {
    color: #ff6b00;
    margin-right: 6px;
    font-size: 16px;
}

/*================================================
SECTION TITTLE CSS
=================================================*/

section {
    overflow: hidden;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF3EA;
    color: #C4520F;
    padding: 9px 15px 7px 15px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sec-title {
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 700;
    line-height: 1.12;
    color: #1C1C1C;
    margin-bottom: 16px;
}

.sec-title em {
    color: #E8651A;
    font-style: normal;
}

.sec-desc {
    color: #5A5A5A;
    font-size: .96rem;
    font-weight: 300;
    max-width: 580px;
}

/*================================================
FOOTER SECTION CSS
=================================================*/

footer {
    background-image: url(../img/common/footer-img.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    color: #ffff;
}

.footer-section {
    background-color: rgba(0, 0, 0, 0.7);
    /* backdrop-filter: blur(4px); */
}

.share-certificate {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.share-certificate a {
    text-decoration: none;
}

.share-certificate a i {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.share-certificate #facebook {
    font-size: 20px;
    padding: 14px 12px 10px 12px;
    color: #fff;
    background-color: blue;
    border-radius: 50%;
}

.share-certificate #instagram {
    font-size: 20px;
    padding: 14px 12px 10px 12px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
    border-radius: 50%;
}

.share-certificate #gmail {
    font-size: 20px;
    padding: 14px 12px 10px 12px;
    color: red;
    background-color: wheat;
    border-radius: 50%;
}

.share-certificate #whatsapp {
    font-size: 20px;
    padding: 14px 12px 10px 12px;
    color: #fff;
    background-color: green;
    border-radius: 50%;
}

.share-certificate #youtube {
    font-size: 20px;
    padding: 14px 12px 10px 12px;
    color: red;
    background-color: white;
    border-radius: 50%;
}

.address-box {
    background: rgba(146, 144, 144, 0.171);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    backdrop-filter: blur(4px)
}

.address-box h6 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.addr-line {
    display: flex;
    gap: 22px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.addr-label {
    min-width: 85px;
    color: White;
    font-weight: 500;
}

.list-unstyled li a {
    color: #ccc;
    font-weight: 500;
}

.list-unstyled li a:hover {
    color: white;
}

.contact-links {
    color: #ccc;
}

.footer-bottom {
    background: rgba(146, 144, 144, 0.356);
    backdrop-filter: blur(4px);
}

@media (max-width: 476px) {
    .bottom-content {
        font-size: 14px;
    }

    .footer-bottom-link a {
        font-size: 12px;
    }
}

/*================================================
PAGE HEADER CSS
=================================================*/

.travel-page-header {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/company/company_page-header.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.travel-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.travel-page-header-content {
    position: relative;
    z-index: 2;
}

.travel-page-header-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b00;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.travel-page-header-content h1 {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .travel-page-header {
        height: 30vh;
    }

    .travel-page-header-content h4 {
        font-size: 1rem;
    }

    .travel-page-header-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .travel-page-header {
        height: 25vh;
    }

    .travel-page-header-content h4 {
        font-size: 0.9rem;
    }

    .travel-page-header-content h1 {
        font-size: 1.8rem;
    }

    .travel-page-header-content h4::before,
    .travel-page-header-content h4::after {
        left: -20px;
        right: -20px;
    }
}

@media (max-width: 476px) {
    .travel-page-header {
        height: 25vh;
    }

    .travel-page-header-content h4 {
        font-size: 0.9rem;
    }

    .travel-page-header-content h1 {
        font-size: 1.5rem;
    }
}

/*================================================
HOME HEADER CSS
=================================================*/

#hero {
    width: 100%;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    width: 100%;
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to bottom, rgba(20, 5, 0, 0.55) 0%, rgba(20, 5, 0, 0.3) 50%, rgba(20, 5, 0, 0.7) 100%), url(../img/common/header.jpeg) center/cover no-repeat; */
    background: linear-gradient(to bottom, rgba(20, 5, 0, 0.301) 0%, rgba(20, 5, 0, 0.3) 50%, rgba(20, 5, 0, 0.7) 100%), url(../img/common/header-img.jpeg) center/cover no-repeat;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@media (max-width: 567px) {
    .hero-bg {
        width: 100%;
        position: absolute;
        inset: 0;
        background:
            linear-gradient(to bottom, rgba(20, 5, 0, 0.55) 0%, rgba(20, 5, 0, 0.3) 50%, rgba(20, 5, 0, 0.7) 100%),
            url(../img/common/header2.jpeg) center/cover no-repeat;
        animation: heroZoom 18s ease-in-out infinite alternate;
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F7B731;
    opacity: 0;
    animation: floatUp 6s ease-in infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(247, 183, 49, 0.2);
    border: 1px solid #F7B731;
    color: #F7B731;
    padding: 0.4rem 1.4rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    animation: fadeSlideDown 0.8s ease both;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    transform: rotate(90deg);
    display: inline-block;
    font-size: 15px;
    color: #ff8800;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeSlideUp 0.9s 0.2s ease both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .gold {
    color: #F7B731;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(248, 242, 230, 0.9);
    margin-bottom: 0.8rem;
    animation: fadeSlideUp 0.9s 0.4s ease both;
    font-style: italic;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 236, 215, 0.85);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    animation: fadeSlideUp 0.9s 0.6s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeSlideUp 0.9s 0.8s ease both;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #FF6B00, #D4891A);
    color: #fff;
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.55);
    color: #fff;
}

.btn-outline-hero {
    background: transparent;
    color: #F7B731;
    border: 2px solid #F7B731;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-hero:hover {
    background: #F7B731;
    color: #1A0A00;
    transform: translateY(-3px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: fadeIn 1s 1.5s ease both;
}

.scroll-dot {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(247, 183, 49, 0.6);
    border-radius: 20px;
    margin: 0 auto 0.4rem;
    position: relative;
}

.scroll-dot::after {
    content: '';
    width: 5px;
    height: 10px;
    background: #F7B731;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1
    }

    60% {
        top: 24px;
        opacity: 0.3
    }
}

.scroll-label {
    font-size: 0.65rem;
    color: rgba(255, 220, 180, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 567px) {
    #hero {
        min-height: 80vh;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 392px) {
    .hero-scroll-hint {
        display: none;
    }

    #hero {
        min-height: 70vh;
    }
}

/* Fireworks Animation */

#fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
}

/* ─── Airplane Animation ─── */

.airplane {
    position: absolute;
    width: 400px;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.airplane-left {
    animation: flyLeft 15s ease-in-out infinite;
    animation-delay: 0s;
}

.airplane-right {
    animation: flyRight 8s ease-in-out infinite;
    animation-delay: 4s;
    /* offset so they don't overlap */
}

@keyframes flyLeft {
    0% {
        left: -100px;
        bottom: 5%;
        transform: rotate(-30deg);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    45% {
        left: 60%;
        bottom: 85%;
        transform: translateX(-50%) rotate(0deg);
        opacity: 1;
    }

    50% {
        left: 60%;
        bottom: 85%;
        transform: translateX(-50%) rotate(0deg);
        opacity: 1;
    }

    95% {
        left: 120%;
        bottom: 85%;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        left: 120%;
        bottom: 85%;
        opacity: 0;
    }
}

@keyframes flyRight {
    0% {
        right: -100px;
        bottom: 5%;
        transform: rotate(30deg) scaleX(-1);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    45% {
        right: 50%;
        bottom: 75%;
        transform: translateX(50%) rotate(0deg) scaleX(-1);
        opacity: 1;
    }

    50% {
        right: 50%;
        bottom: 75%;
        transform: translateX(50%) rotate(0deg) scaleX(-1);
        opacity: 1;
    }

    95% {
        right: 110%;
        bottom: 75%;
        transform: rotate(0deg) scaleX(-1);
        opacity: 1;
    }

    100% {
        right: 110%;
        bottom: 75%;
        opacity: 0;
    }
}

@media (max-width: 999px) {
    .airplane {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .airplane {
        display: none;
    }
}

/*================================================
ROUTE STRIP CSS
=================================================*/

#route-strip {
    width: 100%;
    background: linear-gradient(135deg, #7A1A00 0%, #D4891A 50%, #7A1A00 100%);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.route-ticker {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
}

.route-ticker span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F7B731;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.route-ticker i {
    color: #ffffff;
    font-size: 16px;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

#route-strip:hover .route-ticker {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .route-ticker {
        gap: 30px;
        animation-duration: 20s;
    }

    .route-ticker span {
        font-size: 13px;
    }

    .route-ticker i {
        font-size: 14px;
    }
}

/*================================================
HOW WE WORK CSS
=================================================*/

#process {
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.proc-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 36px 30px 15px 30px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #E8E6E0;
    transition: all .4s;
}

.proc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFF3EA, #E8651A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.proc-card:hover {
    border-color: #F5832A;
    box-shadow: 0 18px 50px rgba(232, 101, 26, .12);
    transform: translateY(-6px);
}

.proc-card:hover::after {
    transform: scaleX(1);
}

.proc-num {
    font-size: 3rem;
    font-weight: 700;
    color: #FFF3EA;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color .4s;
}

.proc-card:hover .proc-num {
    color: rgba(232, 101, 26, .15);
}

.proc-icon {
    width: 52px;
    height: 52px;
    background: #FFF3EA;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .35s;
}

.proc-icon i {
    font-size: 1.3rem;
    color: #E8651A;
}

.proc-card:hover .proc-icon {
    background: #E8651A;
}

.proc-card:hover .proc-icon i {
    color: #ffffff;
}

.proc-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1C1C1C;
}

.proc-text {
    font-size: .87rem;
    color: #5A5A5A;
    text-align: justify;
}

.proc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF3EA;
    font-size: 1.6rem;
    margin-top: 40px;
    align-self: center;
}

.process-bg-top {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.20;
    z-index: 0;
    pointer-events: none;
}

.process-bg-top img {
    width: 250px;
    max-width: 100%;
}

.process-bg-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.process-bg-bottom img {
    width: 250px;
    max-width: 100%;
}

#process .container {
    position: relative;
    z-index: 2;
}

@media (max-width:480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .proc-card {
        padding: 30px 20px 15px 20px
    }
}

@media (max-width:999px) {
    .process-bg-bottom {
        display: none;
    }
}

@media (max-width:750px) {
    .process-bg-top {
        display: none;
    }
}

/*================================================
HIGHWAY CAR ANIMATION CSS
=================================================*/

/*
.highway {
    position: relative;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: rgba(22, 22, 22, 0.904) !important;
    z-index: 2;
    margin-top: 50px;
    overflow: vissibl !important;
    overflow-x: hidden;
}

.road {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: repeating-linear-gradient(to right,
            white 0,
            white 50px,
            transparent 50px,
            transparent 100px);
}

.bus {
    position: absolute;
    bottom: 5px;
    display: flex;
    align-items: center;
    will-change: transform;
}

.bus img {
    width: 150px;
    height: auto;
    display: block;
    transform: none !important;
}

.bus-right {
    z-index: 6;
    flex-direction: row;
    left: 0;
    animation: moveRightToLeft 20s linear infinite;
}

.bus-left {
    z-index: 5;
    margin-bottom: 38px;
    flex-direction: row-reverse;
    right: 0;
    animation: moveLeftToRight 20s linear infinite;
}

@keyframes moveRightToLeft {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-200px);
    }
}

@keyframes moveLeftToRight {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(200px);
    }
}

@media (max-width: 480px) {
    .bus-left {
        animation: moveLeftToRight 10s linear infinite;
    }

    .bus-right {
        animation: moveRightToLeft 10s linear infinite;
    }
}
*/

/*================================================
NAVAGRAHA SECTION CSS
=================================================*/

#navagraha {
    background: #fcf9f5 !important;
    position: relative;
    overflow: hidden;
}

.planet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.planet-card {
    background: transparent !important;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    margin-bottom: 20px;
}

.planet-card:hover::before {
    opacity: 1;
}

.planet-card:nth-child(2) .planet-icon {
    animation-delay: 0.3s;
}

.planet-card:nth-child(3) .planet-icon {
    animation-delay: 0.6s;
}

.planet-card:nth-child(4) .planet-icon {
    animation-delay: 0.9s;
}

.planet-card:nth-child(5) .planet-icon {
    animation-delay: 1.2s;
}

.planet-card:nth-child(6) .planet-icon {
    animation-delay: 1.5s;
}

.planet-card:nth-child(7) .planet-icon {
    animation-delay: 1.8s;
}

.planet-card:nth-child(8) .planet-icon {
    animation-delay: 2.1s;
}

.planet-card:nth-child(9) .planet-icon {
    animation-delay: 2.4s;
}

.planet-top-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.planet-top-img img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.planet-top-img::before {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 20px;
    width: 14px;
    height: 14px;
    background: rgba(255, 165, 0, 0.7);
    border-radius: 50%;
    animation: bubbleLeft 3s infinite ease-in-out;
    z-index: 1;
}

.planet-top-img::after {
    content: "";
    position: absolute;
    right: 15%;
    bottom: 20px;
    width: 18px;
    height: 18px;
    background: rgba(255, 165, 0, 0.6);
    border-radius: 50%;
    animation: bubbleRight 3.5s infinite ease-in-out;
    z-index: 1;
}

@keyframes bubbleLeft {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-70px) translateX(-20px);
        opacity: 0;
    }
}

@keyframes bubbleRight {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-80px) translateX(20px);
        opacity: 0;
    }
}

.planet-main-img {
    text-align: center;
    margin-bottom: 5px;
}

.planet-main-img img {
    width: 70px;
    height: 70px;
}

@keyframes bubbleUp {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(-50%) translateY(-60px);
        opacity: 0;
    }
}

.planet-name {
    padding-top: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.planet-deity {
    font-size: 0.75rem;
    color: #F5832A;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.planet-loc {
    font-size: 0.78rem;
    color: #757474;
    position: relative;
    z-index: 1;
}

.planet-loc i {
    color: #E8651A;
    margin-right: 4px;
}

.navagraha-center-text {
    text-align: center;
}

.navagraha-center-text p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 767px) {
    .planet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .planet-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/*================================================
FAMOUS TEMPLES CSS
=================================================*/

#temples {
    background: #fcf9f5 !important;
    position: relative;
}

.temple-tab-wrap {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    flex-wrap: wrap;
}

.temple-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #000;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s;
}

.temple-tab i {
    font-size: 13px;
    color: rgb(243, 39, 73);
}

.temple-tab:hover {
    color: #3d3026;
}

.temple-tab.active {
    color: #E8651A;
    border-bottom-color: #E8651A;
    font-weight: 500;
}

.temple-panel {
    display: none;
    animation: fadeUp 0.38s ease both;
}

.temple-panel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.group-heading-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c2723;
    white-space: nowrap;
}

.group-heading-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #eeeeee, transparent);
}

.group-heading-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E8651A;
    flex-shrink: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.t-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    background: #1a1410;
}

.t-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), filter 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.96) saturate(0.9);
}

.t-card:hover .t-card-img {
    transform: scale(1.06);
    filter: brightness(0.72) saturate(1.0);
}

.t-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    height: 72px;
    background: linear-gradient(to top, rgba(20, 14, 6, 0.92) 0%, rgba(20, 14, 6, 0.7) 65%, transparent 100%);
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.t-card:hover .t-card-overlay {
    transform: translateY(0);
    bottom: 0px;
}

.t-card-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 5px;
}

.t-card-loc {
    font-size: 11px;
    font-weight: 400;
    color: #e8d5ae;
    display: flex;
    align-items: center;
    gap: 5px;
}

.t-card-loc i {
    font-size: 10px;
    color: #E8651A;
}

.t-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    border: 1.5px solid #E8651A;
    opacity: 0;
    transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.t-card:hover::after {
    opacity: 0.6;
}

.group-divider {
    width: 60px;
    height: 1px;
    background: #E8651A;
    opacity: 0.4;
}

@media (max-width: 568px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .t-card-name {
        font-size: 11px;
    }

    .t-card-loc {
        font-size: 9px;
    }

}

/*================================================
STORY SECTION CSS
=================================================*/

#story {
    position: relative;
}

#lotusCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    border-radius: inherit;
}

.story-img-stack {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    background: transparent;
}

.story-img-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: inherit;
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-content p {
    color: #323232;
}

.story-quote {
    border-left: 3px solid #E8651A;
    padding: 16px 22px;
    background: #FFF3EA;
    border-radius: 0 12px 12px 0;
    margin: 28px 0;
    font-size: 1rem;
    font-style: italic;
    color: #1C1C1C;
    line-height: 1.65;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e0d8;
}

.stat-box {
    background: #FFF3EA;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.stat-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 32px;
    font-weight: 600;
    color: #E8651A;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 600;
}

.stat-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.05em;
}

@media (max-width:999px) {
    .story-img-stack {
        display: none;
    }
}

@media (max-width: 575px) {
    .story-img-stack {
        display: block;
        height: 300px;
        min-height: unset;
    }

    .stat-row {
        gap: 8px;
    }

    .stat-num {
        font-size: 24px;
    }

    .stat-suffix {
        font-size: 16px;
    }

    .stat-label {
        font-size: 11px;
    }

    .story-img-main {
        width: 100%;
        height: 300px;
    }
}

@media (max-width:767px) {
    #story::before {
        font-size: 5rem;
        right: -10px;
    }
}

/*================================================
CUSTOM SECTION CSS
=================================================*/

#custom {
    position: relative;
    overflow: hidden;
}

.custom-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.custom-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #323232;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #f7d2a8;
    transition: border-color .2s, background .2s;
}

.custom-pill:hover {
    border-color: #E8651A;
    background: #fff8f4;
}

.custom-pill i {
    color: #E8651A;
}

.custom-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.custom-btn-row a {
    text-decoration: none;
}

.custom-btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E8651A;
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #E8651A;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.custom-btn-orange:hover {
    background: #c04f0e;
    border-color: #c04f0e;
    color: #fff;
    transform: translateY(-2px);
}

.custom-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #E8651A;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #E8651A;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.custom-btn-outline:hover {
    background: #fff5ee;
    color: #c04f0e;
    transform: translateY(-2px);
}

.custom-img-wrap {
    position: relative;
}

#custom img {
    max-width: 100%;
    display: block;
}

.custom-orange-accent-bar {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid #E8651A;
    z-index: 0;
}

.custom-img-wrap img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: 4px solid #ffd1b6;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 1;
}

.custom-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 3;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .13);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
}

.custom-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #E8651A;
    flex-shrink: 0;
}

.custom-float-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.custom-float-sub {
    font-size: 11px;
    color: #888;
}

.custom-stat-badge {
    position: absolute;
    top: 20px;
    right: -16px;
    z-index: 3;
    background: #E8651A;
    color: #fff !important;
    border-radius: 14px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(232, 101, 26, .35);
}

.custom-stat-num {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.custom-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .05em;
    opacity: .85;
    margin-top: 2px;
}

.custom-features-strip {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    border: 1.5px solid #faeadd;
    border-radius: 16px;
    overflow: hidden;
}

.custom-strip-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1.5px solid #f0f0f0;
    background: #fff;
    transition: background .2s;
}

.custom-strip-item:last-child {
    border-right: none;
}

.custom-strip-item:hover {
    background: #fff8f4;
}

.custom-strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: #E8651A;
}

.custom-strip-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.custom-strip-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 991px) {

    .custom-img-wrap img {
        height: 280px;
    }

    .custom-stat-badge {
        right: 8px;
        top: 10px;
    }
}

@media (max-width: 576px) {
    .custom-strip-item {
        border-right: none;
        border-bottom: 1.5px solid #f0f0f0;
    }

    .custom-strip-item:last-child {
        border-bottom: none;
    }

    .custom-float-card {
        left: 10px;
        bottom: -16px;
    }
}

/*================================================
CONNECTION SECTION CSS
=================================================*/

#connection {
    position: relative;
    overflow: hidden;
}

.connection-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100% !important;
    max-width: 700px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.sky-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: background 0.6s ease;
}

.stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.sun {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #fff7c0 20%, #ffdd00 55%, #ff9900 100%);
    box-shadow:
        0 0 25px 8px rgba(255, 210, 0, 0.65),
        0 0 70px 25px rgba(255, 150, 0, 0.30);
    z-index: 2;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.sun::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 0, 0.18) 40%, transparent 70%);
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

.moon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 36%, #f0f0d8 55%, #b8b890 100%);
    box-shadow:
        0 0 18px 5px rgba(180, 210, 255, 0.40),
        0 0 50px 18px rgba(150, 190, 255, 0.15);
    z-index: 2;
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.moon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.07);
    top: 14px;
    left: 20px;
    box-shadow:
        14px 8px 0 rgba(0, 0, 0, 0.06),
        -4px 20px 0 rgba(0, 0, 0, 0.05);
}

.connection-image img {
    width: 100% !important;
    position: relative;
    z-index: 3;
    height: 600px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 0px transparent);
}

.time-label {
    position: absolute;
    bottom: 14px;
    right: 18px;
    z-index: 10;
    font-family: Georgia, serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.conn-points {
    margin-top: 32px;
}

.conn-pt {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #E8E6E0;
    transition: all .3s;
}

.conn-pt:last-child {
    border: none;
}

.conn-pt:hover {
    padding-left: 6px;
}

.conn-pt-dot {
    width: 40px;
    height: 40px;
    padding-top: 5px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #FFF3EA;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.conn-pt-dot i {
    font-size: .95rem;
    color: #E8651A;
}

.conn-pt:hover .conn-pt-dot {
    background: #E8651A;
}

.conn-pt:hover .conn-pt-dot i {
    color: #ffffff;
}

.conn-pt-title {
    font-weight: 600;
    font-size: .9rem;
    color: #1C1C1C;
    margin-bottom: 3px;
}

.conn-pt-text {
    font-size: .82rem;
    color: #5A5A5A;
    line-height: 1.6;
}

@media (max-width:991px) {
    .conn-visual {
        height: 340px;
    }

    .flag-my {
        top: 20px;
        left: 20px;
        width: 90px;
        height: 90px;
    }

    .flag-in {
        bottom: 20px;
        right: 20px;
        width: 90px;
        height: 90px;
    }

    .conn-center-icon {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
    }
}

/*================================================
 DEEPAM LAMP SECTION
=================================================*/

#co2-lamp {
    background: #fcf9f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#co2-lamp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(240, 90, 4, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.deepam-scene {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
}

.deepam-svg-wrap {
    filter: drop-shadow(0 0 22px rgba(232, 101, 26, .6));
    animation: deepamFloat 3s ease-in-out infinite;
}

@keyframes deepamFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.flame-main {
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
    transform-origin: 50% 100%;
}

.flame-inner {
    animation: flameFlicker 0.5s ease-in-out infinite alternate-reverse;
    transform-origin: 50% 100%;
}

@keyframes flameFlicker {
    0% {
        transform: scaleX(1) scaleY(1) skewX(0deg);
    }

    50% {
        transform: scaleX(.88) scaleY(1.1) skewX(2deg);
    }

    100% {
        transform: scaleX(1.05)scaleY(.95) skewX(-1deg);
    }
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E8651A;
    left: 50%;
    top: 20%;
    animation: sparkFly var(--sd, 1.2s) ease-out infinite;
    animation-delay: var(--sdelay, 0s);
}

@keyframes sparkFly {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(var(--sx, 0px), var(--sy, -40px)) scale(0);
    }
}

.mandala-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(245, 93, 5, 0.15);
    animation: ringRotate 18s linear infinite;
}

.mandala-ring:nth-child(2) {
    width: 310px;
    height: 310px;
    animation-duration: 28s;
    animation-direction: reverse;
    border-color: rgba(232, 101, 26, .08);
}

.mandala-ring:nth-child(3) {
    width: 400px;
    height: 400px;
    animation-duration: 40s;
    border-color: rgba(232, 101, 26, .04);
}

@keyframes ringRotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.mandala-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E8651A;
    top: 50%;
    left: -3px;
    margin-top: -3px;
    opacity: .5;
}

.lamp-tagline {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    color: #141414;
    line-height: 1.3;
    margin-bottom: 16px;
}

.lamp-tagline span {
    color: #E8651A;
    font-style: normal;
}

.lamp-desc {
    font-size: .97rem;
    color: #323232;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.85;
}

.kolam-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    opacity: .2;
}

.kolam-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff5e00;
}

.kolam-dot:nth-child(even) {
    transform: translateY(4px);
}

/*================================================
PHOTO GALLERY MOSAIC
=================================================*/

.mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 10px;
    margin-top: 48px;
}

.mos {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.mos-img {
    width: 100%;
    height: 100%;
    transition: transform .5s ease;
    background: #FFF3EA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mos-img {
    background-position: top !important;
}

.mos:hover .mos-img {
    transform: scale(1.07);
}

.mos-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 14, 14, .7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.mos:hover .mos-overlay {
    opacity: 1;
}

.mos-caption {
    font-size: .8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.mos-a {
    grid-column: 1/6;
    grid-row: 1/3;
}

.mos-b {
    grid-column: 6/9;
    grid-row: 1/2;
}

.mos-c {
    grid-column: 9/13;
    grid-row: 1/3;
}

.mos-d {
    grid-column: 6/9;
    grid-row: 2/3;
}

.mos-e {
    grid-column: 1/5;
    grid-row: 3/4;
}

.mos-f {
    grid-column: 5/9;
    grid-row: 3/4;
}

.mos-g {
    grid-column: 9/13;
    grid-row: 3/4;
}

.mos-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFF3EA;
    font-size: 2rem;
    color: #E8651A;
    transition: transform .5s;
}

.mos:hover .mos-placeholder {
    transform: scale(1.07);
}

.mos-placeholder span {
    font-size: .75rem;
    font-weight: 600;
    color: #E8651A;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media(max-width:768px) {
    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, 160px);
    }

    .mos-a {
        grid-column: 1/3;
        grid-row: 1/2;
    }

    .mos-b {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .mos-c {
        grid-column: 2/3;
        grid-row: 2/3;
    }

    .mos-d {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .mos-e {
        grid-column: 2/3;
        grid-row: 3/4;
    }

    .mos-f {
        grid-column: 1/3;
        grid-row: 4/5;
    }

    .mos-g {
        grid-column: 1/3;
        grid-row: 5/6;
    }
}

/*================================================
MISSION & VISION
=================================================*/

#co2-mv {
    background: #fcf9f5;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    padding: 52px 46px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: #0E0E0E;
    color: #fff;
}

.mv-card.vision {
    background: #E8651A;
    color: #fff;
}

.mv-card::before {
    content: attr(data-bg);
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 8rem;
    font-weight: 700;
    opacity: .06;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.mv-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 22px;
}

.mv-card.vision .mv-card-icon {
    background: rgba(0, 0, 0, .12);
}

.mv-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
}

.mv-card.vision .mv-label {
    color: rgba(255, 255, 255, .75);
}

.mv-heading {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.mv-text {
    font-size: .95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .65);
}

.mv-card.vision .mv-text {
    color: rgba(255, 255, 255, .85);
}

@media(max-width:768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/*================================================
PROMISE PLEDGE
=================================================*/

#co2-promise {
    background: #ffffff;
}

.promise-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promise-item {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid var(--bdr);
    padding: 36px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.promise-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(232, 101, 26, .1);
    border-color: #E8651A;
}

.promise-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #E8651A;
    opacity: .15;
    line-height: 1;
    margin-bottom: 8px;
}

.promise-icon {
    width: 52px;
    height: 52px;
    background: #FFF3EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #E8651A;
    margin: 0 auto 16px;
}

.promise-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0E0E0E;
    margin-bottom: 8px;
}

.promise-text {
    font-size: .87rem;
    color: #6B7280;
    line-height: 1.75;
}

@media(max-width:900px) {
    .promise-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:500px) {
    .promise-grid {
        grid-template-columns: 1fr;
    }
}

/*================================================
ANIMATED TEMPLE
=================================================*/

.co2-header {
    position: relative;
    background: #0E0E0E;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.co2-header-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0d0820 0%, #1a0a35 40%, #3a1030 70%, #0d0820 100%);
    animation: skyPulse 8s ease-in-out infinite alternate;
}

@keyframes skyPulse {
    0% {
        background: linear-gradient(180deg, #0d0820 0%, #1a0a35 40%, #3a1030 70%, #0d0820 100%);
    }

    100% {
        background: linear-gradient(180deg, #1a0520 0%, #2a1245 40%, #1a1050 70%, #050310 100%);
    }
}

.co2-header-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hstar {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: twinkle var(--d, 3s) ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: .1;
        transform: scale(1);
    }

    100% {
        opacity: .9;
        transform: scale(1.5);
    }
}

.co2-temple-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 90vw);
}

.co2-temple-wrap svg {
    width: 100%;
    display: block;
}

.temple-glow {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(232, 101, 26, .35) 0%, transparent 70%);
    filter: blur(18px);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: .6;
        width: 140px;
    }

    100% {
        opacity: 1;
        width: 220px;
    }
}

.co2-header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E8651A, transparent);
}

.finalcta-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E8651A;
    margin-bottom: 12px;
}

.finalcta-heading {
    font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.finalcta-heading em {
    font-style: italic;
    color: #E8651A;
}

.finalcta-sub {
    font-size: .88rem;
    color: #dad5d5 !important;
    max-width: 100%;
    margin: 0 auto 28px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.finalcta-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-fc-orange,
.btn-fc-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 3px;
    text-decoration: none !important;
    transition: background .25s, transform .2s, border-color .25s;
}

.btn-fc-orange {
    background: #E8651A;
    color: #fff !important;
}

.btn-fc-orange:hover {
    background: #FF8C3B;
    transform: translateY(-2px);
}

.btn-fc-ghost {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .18);
}

.btn-fc-ghost:hover {
    border-color: #E8651A;
    background: rgba(232, 101, 26, .08);
}

.co2r {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.co2r.vis {
    opacity: 1;
    transform: none;
}

.flame-main {
    animation: flameFlicker 1.2s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

.flame-inner {
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

@keyframes flameFlicker {
    0% {
        transform: scaleX(1) scaleY(1);
    }

    50% {
        transform: scaleX(.85) scaleY(1.1);
    }

    100% {
        transform: scaleX(1.1) scaleY(.9);
    }
}

@media (min-width: 375px) {
    .finalcta-heading {
        font-size: clamp(1.6rem, 6.5vw, 2.4rem);
    }

    .finalcta-label {
        font-size: .68rem;
    }

    .finalcta-sub {
        font-size: .9rem;
    }
}

@media (min-width: 480px) {

    .co2-temple-wrap {
        width: min(500px, 90vw);
    }

    .finalcta-heading {
        font-size: clamp(1.8rem, 5.5vw, 2.8rem);
    }

    .finalcta-sub {
        font-size: .94rem;
        max-width: 400px;
    }

    .btn-fc-orange,
    .btn-fc-ghost {
        padding: 13px 24px;
        font-size: .85rem;
    }
}

@media (min-width: 576px) {
    .container {
        padding-inline: 24px;
    }

    .co2-header {
        padding-top: 0;
        padding-bottom: 0;
    }

    .co2-temple-wrap {
        width: min(560px, 94vw);
    }

    .temple-glow {
        width: 200px;
        height: 70px;
    }

    .finalcta-label {
        font-size: .68rem;
        margin-bottom: 14px;
    }

    .finalcta-heading {
        font-size: clamp(2rem, 4.5vw, 3rem);
        line-height: 1.18;
    }

    .finalcta-sub {
        font-size: .95rem;
        max-width: 440px;
        margin-bottom: 32px;
    }

    .btn-fc-orange,
    .btn-fc-ghost {
        padding: 14px 28px;
        font-size: .88rem;
        gap: 9px;
    }
}

@media (min-width: 768px) {
    .container {
        padding-inline: 32px;
        max-width: 760px;
    }

    .co2-temple-wrap {
        width: min(600px, 92vw);
    }

    .temple-glow {
        width: 230px;
        height: 75px;
        bottom: 65px;
    }

    .finalcta-label {
        font-size: .7rem;
        letter-spacing: 3.5px;
    }

    .finalcta-heading {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .finalcta-sub {
        font-size: .96rem;
        max-width: 460px;
        margin-bottom: 36px;
    }

    .btn-fc-orange,
    .btn-fc-ghost {
        padding: 15px 30px;
        font-size: .9rem;
    }

    .finalcta-btns {
        gap: 12px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
        padding-inline: 40px;
    }

    .co2-temple-wrap {
        width: min(620px, 88vw);
    }

    .temple-glow {
        width: 260px;
        height: 80px;
        bottom: 60px;
    }

    @keyframes glowPulse {
        0% {
            opacity: .6;
            width: 220px;
        }

        100% {
            opacity: 1;
            width: 300px;
        }
    }

    .finalcta-label {
        font-size: .7rem;
        margin-bottom: 16px;
    }

    .finalcta-heading {
        font-size: clamp(2.6rem, 4vw, 3.6rem);
    }

    .finalcta-sub {
        font-size: .97rem;
        max-width: 480px;
        margin-bottom: 40px;
    }

    .btn-fc-orange,
    .btn-fc-ghost {
        padding: 15px 32px;
        font-size: .9rem;
        gap: 10px;
    }

    .finalcta-btns {
        gap: 14px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .co2-temple-wrap {
        width: 620px;
    }

    .finalcta-heading {
        font-size: 3.4rem;
    }

    .finalcta-sub {
        font-size: 1rem;
        max-width: 500px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .finalcta-heading {
        font-size: 3.6rem;
    }

    .finalcta-sub {
        font-size: 1.02rem;
        max-width: 520px;
    }

    .btn-fc-orange,
    .btn-fc-ghost {
        padding: 16px 36px;
        font-size: .94rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .co2-header-sky,
    .temple-glow,
    .hstar,
    .flame-main,
    .flame-inner {
        animation: none;
        opacity: 1;
    }

    .co2r {
        transition: none;
    }
}

/*================================================
HOW IT WORKS SECTION CSS
=================================================*/

#how-it-works {
    background: #FFFFFF;
    overflow-x: hidden;
}

#how-it-works .step-wrap {
    position: relative;
}

#how-it-works .step-wrap .step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

#how-it-works .step-wrap .step-card .step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #F76B1C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 6px 25px rgba(247, 107, 28, 0.35);
    position: relative;
    z-index: 2;
}

#how-it-works .step-wrap .step-card .step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(247, 107, 28, 0.4);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#how-it-works .step-wrap .step-card .step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

#how-it-works .step-wrap .step-card .step-desc {
    color: #555;
    font-size: 0.87rem;
    line-height: 1.6;
}

/*================================================
PACKAGE SECTION CSS
=================================================*/

#packages {
    background: #F8F8F8;
    position: relative;
}

.pkg-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(232, 101, 26, 0.15);
    border-color: #E8651A;
}

.pkg-card.featured {
    border: 2px solid #E8651A;
    background: #FFFFFF;
}

.pkg-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 25px;
    right: -35px;
    background: #E8651A;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.pkg-header {
    padding: 36px 32px 24px;
    position: relative;
    overflow: hidden;
}

.pkg-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #FFF3EA;
    transition: all 0.4s;
}

.pkg-card:hover .pkg-header::before {
    transform: scale(2);
    background: rgba(232, 101, 26, 0.06);
}

.pkg-icon {
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.pkg-icon img {
    width: 60px;
    height: 60px;
}

.pkg-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.pkg-tagline {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.6;
}

.pkg-header h4{
    font-size: 17px;
    font-weight: bold;
    color: #555555;
}

.pkg-header h4 i{
    color: goldenrod;
}

.pkg-price-block {
    padding: 0 32px 20px;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 24px;
}

.pkg-price-label {
    font-size: 0.78rem;
    color: #555555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pkg-price {
    font-size: 2rem;
    font-weight: 700;
    color: #E8651A;
}

.pkg-price small {
    font-size: 0.9rem;
    color: #555555;
    font-weight: 400;
}

.pkg-features {
    padding: 0 32px 15px;
}

.pkg-features ul {
    list-style: none;
    padding: 0;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #111111;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    line-height: 1.5;
}

.pkg-features li:last-child {
    border-bottom: none;
}

.pkg-features li i {
    color: #E8651A;
    margin-top: 2px;
    flex-shrink: 0;
}

.pkg-cta {
    display: block;
    margin: 0 32px 32px;
    text-align: center;
    background: #E8651A;
    color: #FFFFFF;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.pkg-cta:hover {
    background: #C4520F;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(232, 101, 26, 0.35);
    transform: translateY(-2px);
}

/*================================================
        WHAT'S INCLUDED BANNER CSS
=================================================*/

#included-banner {
    background: linear-gradient(135deg, #E8651A 0%, #C4520F 100%);
    position: relative;
    overflow: hidden;
}

#included-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

#included-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.included-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s;
    height: 100%;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.included-item i {
    font-size: 1.6rem;
    color: #FFFFFF;
    opacity: 0.9;
    flex-shrink: 0;
}

.included-item span {
    font-size: 0.92rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

/*================================================
        CTA BOTTOM SECTION CSS
=================================================*/

#pkg-bottom-cta {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pkg-bottom-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.pkg-bottom-cta-inner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #202020;
    line-height: 1.25;
    margin-bottom: 18px;
}

.pkg-bottom-cta-inner h2 em {
    color: #E8651A;
    font-style: normal;
}

.pkg-bottom-cta-inner p {
    color: #312f2f;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #E8651A;
    color: #FFFFFF;
    padding: 15px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    background: #C4520F;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 101, 26, 0.4);
}

.cta-btn-outline {
    background: transparent;
    color: #E8651A;
    padding: 15px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 2px solid #E8651A;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-outline:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .pkg-bottom-cta-inner h2 {
        font-size: 2rem;
    }

    .pkg-bottom-cta-inner p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    #pkg-bottom-cta {
        padding: 50px 15px;
    }

    .pkg-bottom-cta-inner h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .pkg-bottom-cta-inner p {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .cta-btn-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .pkg-bottom-cta-inner h2 {
        font-size: 1.5rem;
    }

    .pkg-bottom-cta-inner p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        font-size: 0.85rem;
        padding: 12px 18px;
    }
}

/*================================================
CONTACT HERO SECTION CSS
=================================================*/

.contact-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: pulse-glow 5s ease-in-out infinite 1s;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #C2410C;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: slideDown 0.8s ease both;
}

.contact-hero-badge i {
    font-size: 0.75rem;
}

.contact-hero h1 {
    font-size: clamp(1rem, 5vw, 2rem);
    line-height: 1.15;
    color: #111111;
    margin-bottom: 20px;
    animation: slideUp 0.9s ease both 0.2s;
}

.contact-hero h1 em {
    color: #F97316;
    font-style: italic;
}

.contact-hero p.lead {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.75;
    animation: slideUp 0.9s ease both 0.4s;
}

.contact-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: slideUp 0.9s ease both 0.6s;
}

.contact-hero-image-wrap {
    position: relative;
    animation: fadeInRight 1s ease both 0.3s;
}

.contact-hero-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.contact-hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.contact-hero-float-card.card-1 {
    bottom: -20px;
    left: -30px;
}

.contact-hero-float-card.card-2 {
    top: -20px;
    right: -20px;
    animation-delay: 1.5s;
}

.contact-hero-float-card .icon {
    width: 42px;
    height: 42px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-hero-float-card .info .label {
    font-size: 0.72rem;
    color: #6B7280;
    font-weight: 500;
}

.contact-hero-float-card .info .value {
    font-size: 0.92rem;
    color: #111111;
    font-weight: 700;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*================================================
CONTACT DETAILS SECTION CSS
=================================================*/

.contact-details {
    overflow: hidden;
    background: #fcf9f5;
}

.contact-card-main {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #FFE4C4;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: #F97316;
    color: #fff;
    transform: scale(1.08);
}

.contact-info .ci-label {
    font-size: 0.76rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info .ci-value {
    font-size: 0.97rem;
    color: #111111;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #F97316;
}

.map-card {
    position: relative;
    background: url(../img/contact/contact-malay.png) center/cover no-repeat;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    width: 100%;
    max-width: 600px;
}

.map-card canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.map-card .map-content {
    position: relative;
    z-index: 1;
    padding: 30px;
}

/*
        .map-placeholder {
            width: 100%;
            height: 100%;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 2px dashed rgba(249, 115, 22, 0.3);
            animation: spin-slow 12s linear infinite;
        }

        .map-placeholder::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1px dashed rgba(249, 115, 22, 0.15);
            animation: spin-slow 20s linear infinite reverse;
        }

        @keyframes spin-slow {
            to {
                transform: rotate(360deg);
            }
        }

        .map-icon-wrap {
            padding: 20px 23px 16px 23px;
            background: #F97316;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.6rem;
            box-shadow: 0 0 0 12px rgba(249, 115, 22, 0.15);
            animation: ping-map 2s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes ping-map {

            0%,
            100% {
                box-shadow: 0 0 0 12px rgba(249, 115, 22, 0.15);
            }

            50% {
                box-shadow: 0 0 0 20px rgba(249, 115, 22, 0.05);
            }
        }

        .map-label {
            font-weight: 600;
            color: #111111;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .map-sub {
            font-size: 0.85rem;
            color: #6B7280;
            position: relative;
            z-index: 1;
        } 
        */

/*================================================
ENQUIRY FORM SECTION CSS
=================================================*/

.enquiry-section {
    background: #fcf9f5;
    overflow: hidden;
}

.enquiry-form-wrap {
    background: #FFFFFF;
    border: 1.5px solid #FFE4C4;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 12px 60px rgba(249, 115, 22, 0.07);
}

.form-field {
    margin-bottom: 9px;
}

.form-field label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.form-field label span {
    color: #F97316;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 0.92rem;
    color: #111111;
    background: #fafafa;
    outline: none;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #F97316;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.form-field select option {
    background: #fff;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    border: 1.5px solid transparent;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
}

.check-item input[type="checkbox"] {
    accent-color: #F97316;
}

.check-item:hover {
    border-color: #FDBA74;
    background: rgba(249, 115, 22, 0.06);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #F97316 0%, #C2410C 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.45);
}

.enquiry-info-panel {
    padding-left: 20px;
}

.info-highlight {
    background: #FFF7ED;
    border-left: 4px solid #F97316;
    border-radius: 0 12px 12px 0;
    padding: 20px 22px;
    margin-bottom: 20px;
}

.info-highlight h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-highlight p {
    font-size: 0.84rem;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #FFE4C4;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 14px;
    text-decoration: none;
    color: #111111;
    transition: all 0.3s;
}

.quick-contact-btn:hover {
    border-color: #F97316;
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.1);
    color: #111111;
}

.qc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qc-icon.wa {
    font-size: 20px;
    padding: 10px 12px 6px 12px;
    color: #fff;
    background-color: green;
    border-radius: 12px;
}

.qc-icon.ph {
    font-size: 20px;
    padding: 10px 12px 6px 12px;
    color: #fff;
    background-color: green;
    border-radius: 12px;
}

.qc-icon.em {
    font-size: 20px;
    padding: 10px 12px 6px 12px;
    color: red;
    background-color: wheat;
    border-radius: 12px;
}

.qc-icon.face {
    font-size: 20px;
    padding: 10px 12px 6px 12px;
    color: #fff;
    background-color: blue;
    border-radius: 12px;
}

.qc-icon.insta {
    font-size: 20px;
    padding: 10px 12px 6px 12px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
    border-radius: 12px;
}

.qc-text .qc-label {
    font-size: 0.76rem;
    color: #6B7280;
    font-weight: 500;
}

.qc-text .qc-val {
    font-size: 0.93rem;
    font-weight: 600;
}

/*================================================
WHY US SECTION CSS
=================================================*/

.why-us {
    overflow: hidden;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12);
}

.why-us-img {
    width: 100%;
    height: auto;
}

.why-card .w-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.why-card h5 {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.87rem;
    line-height: 1.7;
}

.stats-row {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(1rem, 4vw, 2rem);
    color: #F97316;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 1199px) {

    .enquiry-form-wrap {
        padding: 42px 36px;
    }

    .enquiry-info-panel {
        padding-left: 0;
    }
}

@media (max-width: 991px) {

    .enquiry-form-wrap {
        padding: 36px 28px;
    }

    .contact-card-main {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {

    .enquiry-form-wrap {
        padding: 28px 22px;
    }

    .contact-card-main {
        padding: 28px 22px;
    }

    .stat-item {
        margin-bottom: 32px;
    }

}

/* ===== Malaysia → Trichy Travel Specialists ===== */

.vehicles-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vehicles-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF3E8;
    border: 1.5px solid rgba(255, 107, 0, 0.25);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #FF6B00;
    margin-bottom: 24px;
    animation: fadeInDown 0.7s ease both;
}

.vehicles-hero-title {
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #111111;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.vehicles-hero-title .highlight {
    color: #FF6B00;
}

.vehicles-lead {
    color: grey;
    font-size: 15px;
    text-align: justify;
}

.vehicles-hero-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}

.vehicles-hero-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.vehicles-hero-img-wrap:hover img {
    transform: scale(1.1);
}

.vehicles-hero-img-wrap::before,
.vehicles-hero-img-wrap::after {
    content: "";
    position: absolute;
    bottom: -20px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.vehicles-hero-img-wrap::before {
    left: 20%;
    animation: bubbleUp 2.5s infinite ease-in-out;
}

.vehicles-hero-img-wrap::after {
    left: 70%;
    width: 8px;
    height: 8px;
    animation: bubbleUp 3s infinite ease-in-out;
}

.vehicles-hero-img-wrap:hover::before,
.vehicles-hero-img-wrap:hover::after {
    opacity: 1;
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120px);
        opacity: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.vehicles-hero-features {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.vehicles-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #111111;
}

.vehicles-hero-features .feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffb300, #ff7b00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    flex-shrink: 0;
}

.vehicles-hero-features .feature-item span {
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .vehicles-hero-features {
        grid-template-columns: 1fr;
    }
}

.rotate-plane {
    display: inline-block;
    transform: rotate(90deg);
}

/* ── OUR VEHICLES ── */

.section-vehicles {
    background: #fcf9f5;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: all .35s cubic-bezier(.25, .8, .25, 1);
    border: 1px solid #E8E8E8;
    margin-bottom: 2rem;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(245, 118, 10, 0.18);
    border-color: #F5760A;
}

.vehicle-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: #0f0f0f;
}

.vehicle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.vehicle-card:hover .vehicle-img-wrap img {
    transform: scale(1.08);
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #F5760A;
    color: #ffffff;
    padding: 7px 14px 5px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.vehicle-body {
    padding: 28px;
}

.vehicle-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: .3rem;
}

.vehicle-tagline {
    color: #555555;
    font-size: .92rem;
    margin-bottom: 1.4rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: 1.4rem;
}

.spec-item {
    background: #fcf9f5;
    border-radius: 12px;
    padding: 12px 14px;
    transition: background .2s;
}

.vehicle-card:hover .spec-item {
    background: #FFE5CA;
}

.spec-label {
    font-size: .72rem;
    color: #555555;
    font-weight: 600;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: #F5760A;
    margin-top: 2px;
}

.spec-note {
    font-size: .78rem;
    color: #555555;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.4rem;
}

.feature-tag {
    background: #f2f2f2;
    color: #111111;
    padding: 8px 12px 4px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    transition: all .2s;
}

.vehicle-card:hover .feature-tag {
    background: #F5760A;
    color: #ffffff;
}

.vehicle-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    padding: 16px 20px;
    background: #FFF4EC;
    border: 1.5px solid #FDDCBF;
    color: #F5760A;
}

.price-label {
    font-size: .82rem;
    color: #F5760A;
    opacity: .75;
}

.price-value {
    font-size: 1.7rem;
    font-weight: 900;
    color: #F5760A;
}

.price-unit {
    font-size: .8rem;
    opacity: .85;
}

.btn-orange {
    display: inline-block;
    padding: 10px 20px;
    font-size: .88rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F5760A, #FF9A3C);
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-orange:hover {
    opacity: 0.88;
}

.btn-orange:active {
    transform: scale(0.97);
}

/* ── COMPARISON TABLE ── */

.section-compare {
    background: #ffffff;
}

.compare-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: none;
}

.compare-table thead th {
    background: #F5760A;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 16px;
    border: none;
    text-align: center;
}

.compare-table thead th:first-child {
    text-align: left;
    background: #D46400;
}

.compare-table tbody tr:nth-child(even) td {
    background: #fff8f2;
}

.compare-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.compare-table tbody td {
    padding: 15px 16px;
    font-size: .95rem;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.compare-table tbody td:first-child {
    font-weight: 700;
    text-align: left;
    color: #111111;
}

.compare-table tbody tr {
    transition: all .2s;
}

.compare-table tbody tr:hover td {
    background: #FFECD9 !important;
}

.check-yes {
    color: #22c55e;
    font-size: 1.1rem;
}

.check-no {
    color: #ef4444;
    font-size: 1.1rem;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 800px; /* main scroll trigger */
}

/* ─────────────────────────────
   RESPONSIVE DESIGN (FULL)
──────────────────────────── */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {

    .sec-title {
        font-size: 1.8rem;
    }

    .sec-desc {
        font-size: 0.95rem;
    }

    .compare-table {
        min-width: 800px;
        /* keeps scroll on tablet also */
    }

    .compare-table thead th {
        font-size: 0.9rem;
        padding: 14px 10px;
    }

    .compare-table tbody td {
        font-size: 0.9rem;
        padding: 12px 10px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

    .section-compare {
        padding: 30px 10px;
    }

    .sec-title {
        font-size: 1.5rem;
    }

    .sec-desc {
        font-size: 0.9rem;
    }

    .compare-table {
        min-width: 750px;
        /* IMPORTANT: enables horizontal scroll */
    }

    .compare-table thead th {
        font-size: 0.85rem;
        padding: 12px 8px;
    }

    .compare-table tbody td {
        font-size: 0.85rem;
        padding: 10px 8px;
    }

    .check-yes,
    .check-no {
        font-size: 1rem;
    }
}

/* Small Mobile (≤ 576px) */
@media (max-width: 576px) {

    .sec-tag {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .sec-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .sec-desc {
        font-size: 0.85rem;
    }

    .compare-table {
        min-width: 700px;
        /* still scrollable, no squeeze */
    }

    .compare-table thead th {
        font-size: 0.8rem;
        padding: 10px 6px;
    }

    .compare-table tbody td {
        font-size: 0.8rem;
        padding: 8px 6px;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ── COMFORT FEATURES ── */

.section-comfort {
    background: #fcf9f5;
}

.comfort-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #E8E8E8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.comfort-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F5760A, var(--orange-light));
    transform: scaleX(0);
    transition: transform .3s;
}

.comfort-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 118, 10, 0.15);
}

.comfort-card:hover::after {
    transform: scaleX(1);
}

.comfort-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #fcf9f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: #F5760A;
    transition: all .3s;
}

.comfort-card:hover .comfort-icon {
    background: #F5760A;
    color: #ffffff;
}

.comfort-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.comfort-desc {
    font-size: .9rem;
    color: #555555;
    line-height: 1.6;
}

/* ── AIRPORT PICKUP ── */

.section-airport {
    background: #fcf9f5;
}

.airport-step {
    text-align: center;
    position: relative;
    padding: 24px;
}

.airport-step::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #F5760A;
    font-size: 1.5rem;
    font-weight: 700;
}

.airport-step:last-child::after {
    display: none;
}

.airport-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fcf9f5;
    border: 3px solid #F5760A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #F5760A;
    transition: all .3s;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 118, 10, 0.3);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(245, 118, 10, 0);
    }
}

.airport-step-icon i {
    padding-top: 5px;
}

.airport-step:hover .airport-step-icon {
    background: #F5760A;
    color: #ffffff;
    transform: scale(1.1);
}

.airport-step h5 {
    font-weight: 700;
    margin-bottom: .4rem;
}

.airport-step p {
    font-size: .88rem;
    color: #555555;
}

@media (max-width: 767px) {

    .compare-table {
        font-size: .82rem;
    }

    .compare-table thead th,
    .compare-table tbody td {
        padding: 10px 8px;
    }
}

/* ===== FAQ ===== */

.faq-section {
    background: #ffffff;
}

.faq-item {
    border-radius: 14px;
    border: 2px solid #E8E8E8;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open {
    border-color: #FF6B00;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.94rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
}

.faq-item.open .faq-question {
    color: #FF6B00;
    background: #FFF3E8;
}

.faq-icon {
    padding: 6px 8px 5px 8px;
    background: #FFF3E8;
    border-radius: 50%;
    color: #FF6B00;
    font-size: 0.8rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    background: #FF6B00;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 18px 22px 18px 22px;
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-img {
    width: 100%;
    height: 440px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.12)
}

@media (max-width:991px) {
    .vehicles-hero-img-wrap {
        margin-top: 0px;
    }

    .vehicles-hero-img-wrap img {
        height: 360px;
    }

    .vehicles-hero-img-badge {
        left: 0;
    }

    .faq-img {
        height: 340px;
    }
}

@media (max-width:767px) {

    .vehicles-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .faq-img {
        height: 240px;
    }

}

@media (max-width:575px) {
    .vehicles-hero-title {
        font-size: 2rem;
    }
}