/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    background-color: #f5f7fa;
    overflow-x: hidden; /* Prevents horizontal scroll */
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #fb8c00, #e65100);
    color: #ffffff;
    font-size: 12px;
    padding: 8px 0;
}

.top-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar .divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.top-bar a {
    color: #ffffff;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-left a i {
    background: #ffffff;
    color: #e65100;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(251, 140, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.top-bar-left a:hover i {
    transform: scale(1.15) rotate(15deg);
}

.top-bar a:hover {
    color: #ffe0b2;
}

.whatsapp-btn-top {
    background-color: #25D366;
    color: white !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
}

.whatsapp-btn-top:hover {
    background-color: #128C7E;
    color: white !important;
    transform: translateY(-1px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #ffffff;
    color: #e65100;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Header Wrapper */
.header-wrapper {
    display: contents; /* Allows children to participate in the parent's flex/grid/block formatting context */
}

/* Header Styles */
.main-header {
    background-color: #122442;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    width: 100%;
    position: relative; /* Changed from sticky */
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Animated Sticky Header */
.main-header.header-sticky-animated {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(18, 36, 66, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 8px 0; /* Slightly smaller padding when sticky */
    animation: headerSlideDown 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0b1a30;
}

.logo-img {
    height: 70px;
    object-fit: contain;
}

.text-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: -5px;
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #fb8c00;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-subtitle .line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #fb8c00;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 28px;
}

.main-nav ul li {
    position: relative;
    padding: 10px 0;
}

.main-nav ul li a {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.main-nav ul li a:hover {
    color: #fb8c00;
}

/* Active State with Underline */
.main-nav ul li a.active {
    color: #fb8c00;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fb8c00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

@media (min-width: 992px) {
    .main-header .container {
        position: relative;
    }
    .main-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .nav-wrapper {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }
}

/* Dropdown styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0 !important;
    padding: 10px 0 !important;
    border-radius: 6px;
    z-index: 100;
    border-top: 3px solid #fb8c00;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0 !important;
    white-space: nowrap;
}

.dropdown-menu li a {
    padding: 12px 20px !important;
    color: #475569 !important;
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: block !important;
    white-space: nowrap !important;
}

.dropdown-menu li a:hover {
    background-color: #fffaf5;
    color: #fb8c00 !important;
}

.dropdown-menu li a::after {
    display: none !important;
}

/* Call to Action Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.book-now-btn {
    background: #ffffff;
    color: #122442;
    padding: 12px 20px;
    border-radius: 50px; /* Pill shape for modern look */
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(18, 36, 66, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: orange-pulse 2s infinite;
}

.book-now-btn i {
    color: #fb8c00;
    font-size: 16px;
    transition: color 0.4s ease;
}

/* Shimmer Effect */
.book-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(251,140,0,0) 0%, rgba(251,140,0,0.3) 50%, rgba(251,140,0,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
    z-index: 2;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #fb8c00, #e65100);
    transition: all 0.4s ease-out;
    z-index: -1;
    border-radius: 50px;
}

.book-now-btn:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(251, 140, 0, 0.5);
    animation: none; /* Stop pulse on hover */
}

.book-now-btn:hover i {
    color: #ffffff;
}

.book-now-btn:hover::before {
    width: 100%;
}

.book-now-btn:active {
    transform: translateY(1px) scale(0.98);
}

@keyframes orange-pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(251, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 140, 0, 0); }
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.call-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fb8c00 0%, #e65100 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px; /* Rounded pill shape */
    gap: 15px;
    box-shadow: 0 8px 20px rgba(251, 140, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(251, 140, 0, 0.45);
    color: white;
}

.call-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.call-icon-wrapper i {
    animation: phone-shake 2s infinite ease-in-out;
}

@keyframes phone-shake {
    0%, 10%, 100% { transform: rotate(0deg); }
    2% { transform: rotate(-15deg); }
    4% { transform: rotate(15deg); }
    6% { transform: rotate(-15deg); }
    8% { transform: rotate(15deg); }
}

.pulse-anim {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(251, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 140, 0, 0); }
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-now-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 2px;
}

.call-number {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}

/* Responsive (Basic) */
@media (max-width: 1150px) {
    .main-nav ul {
        gap: 15px;
    }
    .main-nav ul li a {
        font-size: 12px;
    }
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    position: relative;
    background-color: #122442;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-fallback {
    width: 100%;
    height: 50vh;
    background-color: #122442;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fb8c00;
}

.hero-content p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

/* Divine Blessings Section */
.divine-blessings {
    padding: 60px 20px;
    background-color: #fcfaf8; /* Very light, warm off-white */
    display: flex;
    justify-content: center;
}

.divine-container {
    max-width: 1100px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
    border: 2px dashed #fb8c00; /* Offer card dashed border */
    border-radius: 16px;
    padding: 35px 45px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.divine-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(251, 140, 0, 0.2);
    border-radius: 12px;
    pointer-events: none;
}

.divine-image-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.2);
    overflow: hidden;
    position: relative;
}

.divine-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    pointer-events: none;
}

.divine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.divine-container:hover .divine-img {
    transform: scale(1.08);
}

.divine-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.divine-top-label {
    align-self: flex-start;
    background: linear-gradient(135deg, #fb8c00, #e65100);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px; /* Badge style */
    box-shadow: 0 4px 10px rgba(251, 140, 0, 0.3);
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divine-title {
    font-size: 26px;
    font-family: 'Times New Roman', Times, serif;
    color: #122442;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.divine-title .leaf-icon {
    font-size: 20px;
}

.divine-title .highlight {
    background: linear-gradient(135deg, #d97706, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

.divine-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #f0e6d2, transparent);
    margin-bottom: 15px;
}

.divine-quote {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Times New Roman', Times, serif;
}

.divine-footer {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    border-top: 1px dashed #e6dcc8;
    padding-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

@media (max-width: 768px) {
    .divine-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .divine-top-label {
        align-self: center;
    }
    
    .divine-title {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .divine-divider {
        background: linear-gradient(to right, transparent, #f0e6d2, transparent);
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #122442;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}

.section-header .highlight-text {
    color: #fb8c00;
    font-family: 'Georgia', 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.1em;
    font-weight: 550;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #fff3e0, #ffffff);
    transition: height 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(251, 140, 0, 0.1);
    border-bottom: 4px solid #fb8c00;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fff3e0;
    color: #fb8c00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(251, 140, 0, 0.15);
}

.feature-card:hover .feature-icon {
    background: #fb8c00;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 20px;
    color: #122442;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-spacing: -0.05em;
}

/* Our Services Section */
.our-services {
    padding: 50px 20px;
    background-color: #ffffff;
}

.our-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #fffaf2, #ffffff);
    transition: width 0.5s ease;
    z-index: -1;
    border-top: 4px solid #fb8c00;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 140, 0, 0.08);
    border-color: #fce8d5;
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff3e0, #ffffff);
    color: #fb8c00;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(251, 140, 0, 0.1);
    border: 1px solid rgba(251, 140, 0, 0.15);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #fb8c00, #e65100);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(251, 140, 0, 0.3);
}

.service-card h3 {
    font-size: 24px;
    color: #122442;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #fb8c00;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-size: 14px;
    font-weight: 700;
    color: #122442;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .read-more {
    color: #fb8c00;
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* Popular Destinations Section */
.popular-destinations {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.popular-destinations .container {
    max-width: 1350px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 140, 0, 0.15);
    border-color: rgba(251, 140, 0, 0.4);
}

.tour-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

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

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #232f3e;
    color: #fb8c00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(251, 140, 0, 0.4);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tour-content {
    padding: 20px;
}

.tour-title {
    font-size: 22px;
    color: #0d1b2a;
    margin-bottom: 8px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-title {
    color: #fb8c00;
}

.tour-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-tags .tag {
    background: #f4f5f7;
    color: #4a5568;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.tour-tags .tag i {
    color: #fb8c00;
    font-size: 13px;
}

.tour-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tour-actions a {
    padding: 12px 10px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-call {
    background: linear-gradient(135deg, #ffa726, #fb8c00); 
    color: #0d1b2a;
    box-shadow: 0 4px 10px rgba(251, 140, 0, 0.25);
    border: 1px solid #fb8c00;
}

.btn-call:hover {
    background: linear-gradient(135deg, #ffb74d, #f57c00);
    box-shadow: 0 6px 15px rgba(251, 140, 0, 0.4);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #34d399, #10b981); 
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
    border: 1px solid #10b981;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #6ee7b7, #059669);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-3px);
}

/* Fleet Section Styling */
.our-fleet {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e6e6e6 0%, #e6e6e6 100%);
    position: relative;
}

.our-fleet .section-header h2 {
    color: #0d1b2a;
}

.our-fleet .section-header p {
    color: #475569;
}

.our-fleet .container {
    max-width: 1350px;
    margin: 0 auto;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(251, 140, 0, 0.15);
    border-color: rgba(251, 140, 0, 0.3);
}

.fleet-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.fleet-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-title {
    font-size: 20px;
    color: #0d1b2a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.fleet-card:hover .fleet-title {
    color: #fb8c00;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fleet-features span {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.fleet-card:hover .fleet-features span {
    background: #ffffff;
    border-color: rgba(251, 140, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.fleet-features span i {
    color: #fb8c00;
    font-size: 15px;
    width: 20px;
    text-align: center;
}

.btn-book-fleet {
    background: linear-gradient(135deg, #ffa726, #fb8c00); 
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(251, 140, 0, 0.25);
    border: 1px solid #fb8c00;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
}

.btn-book-fleet:hover {
    background: linear-gradient(135deg, #ffb74d, #f57c00);
    box-shadow: 0 6px 15px rgba(251, 140, 0, 0.4);
    transform: translateY(-3px);
}

/* Booking Process Styling */
.booking-process {
    padding: 80px 20px;
    background-color: #ffffff;
}

.booking-process .container {
    max-width: 1350px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(251, 140, 0, 0.12);
    border-color: rgba(251, 140, 0, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(251, 140, 0, 0.2);
}

.process-icon i {
    font-size: 32px;
    color: #fb8c00;
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #fb8c00, #f57c00);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.process-card h3 {
    font-size: 22px;
    color: #0d1b2a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.process-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

/* Gallery Section Styling */
.travel-gallery {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.travel-gallery .container {
    max-width: 1350px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

@media (min-width: 768px) {
    .item-mountains {
        grid-column: span 2;
        grid-row: span 2;
        height: 625px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.4) 60%, transparent);
    padding: 40px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

/* Customer Reviews Styling */
.customer-reviews {
    padding:50px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.customer-reviews .container {
    max-width: 1250px;
    margin: 0 auto;
}

.customer-reviews .section-header h2 {
    color: #ffffff;
}

.customer-reviews .section-header p {
    color: #cbd5e1;
}

.reviews-slider {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0 40px;
    margin-top: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    width: 320px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    scroll-snap-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.active {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: scale(1.05);
    z-index: 2;
}

.review-card.active:hover {
    transform: scale(1.05) translateY(-5px);
}

.review-card.active .review-text {
    color: #cbd5e1;
}

.review-card.active .reviewer-name {
    color: #ffffff;
}

.review-card.active .reviewer-info {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.review-card.active::before {
    color: rgba(255, 255, 255, 0.05);
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #f1f5f9;
    z-index: 0;
}

.review-stars {
    color: #fb8c00;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: justify;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb8c00, #f57c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 25px;
}

.reviewer-name {
    font-size: 18px;
    color: #0d1b2a;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 60px 20px;
    background: #fb8c00;
    position: relative;
    
    /* Attractive scalloped mask for top and bottom */
    -webkit-mask-image: 
        radial-gradient(circle at 50px 0px, transparent 25px, black 26%), 
        radial-gradient(circle at 50px 100%, transparent 25px, black 26%);
    -webkit-mask-size: 100px 51%, 100px 51%;
    -webkit-mask-position: top left, bottom left;
    -webkit-mask-repeat: repeat-x, repeat-x;
    
    mask-image: 
        radial-gradient(circle at 50px 0px, transparent 25px, black 26%), 
        radial-gradient(circle at 50px 100%, transparent 25px, black 26%);
    mask-size: 100px 51%, 100px 51%;
    mask-position: top left, bottom left;
    mask-repeat: repeat-x, repeat-x;
}

.statistics-section .container {
    max-width: 1250px;
    margin: 0 auto;
}

.statistics-section .section-header h2 {
    color: #ffffff;
}

.statistics-section .section-header p {
    color: #ffffff;
}

.statistics-section .section-header .highlight-text {
    color: #1e293b; /* Dark navy for contrast against orange background */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 50px 20px 40px;
    background: linear-gradient(to top, rgba(251, 140, 0, 0.25) 0%, transparent 40%), #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card * {
    transition: all 0.3s ease;
}

.stat-card::before, .stat-card::after {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:hover i {
    background: #fb8c00;
    color: #ffffff;
}

/* Dots in top right */
.stat-card::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    height: 10px;
    background-image: radial-gradient(#fb8c00 1.5px, transparent 1.5px);
    background-size: 5px 5px;
}

/* Orange dashed circle behind icon */
.stat-card::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px dashed #fb8c00;
    border-right-color: transparent;
    border-bottom-color: transparent;
    z-index: 1;
}

.stat-card i {
    font-size: 35px;
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #fb8c00;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 45px;
    font-weight: 800;
    margin: 0;
    color: #fb8c00;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

/* Dash under number */
.stat-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #fb8c00;
    border-radius: 2px;
}

.stat-text {
    font-size: 16px;
    margin: 15px 0 0 0;
    font-weight: 700;
    color: #1e293b;
    text-transform: capitalize;
    letter-spacing: normal;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #fcfaf8;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 140, 0, 0.1);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(251, 140, 0, 0.1);
    border-color: rgba(251, 140, 0, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #122442;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fb8c00;
}

.faq-question i {
    color: #fb8c00;
    transition: transform 0.4s ease;
    font-size: 16px;
    background: #fff3e0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background-color: #fafbfc;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(-10px);
}

/* Active State */
.faq-item.active {
    border-color: #fb8c00;
}

.faq-item.active .faq-question {
    color: #fb8c00;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #fb8c00;
    color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
    padding-top: 5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #122442 0%, #1a365d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: #fb8c00;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-title {
    color: #ffffff;
    font-size: 42px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #fb8c00, #e65100);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(251, 140, 0, 0.3);
    border: none;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(251, 140, 0, 0.4);
    color: #ffffff;
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cta-secondary:hover {
    background: #ffffff;
    color: #122442;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Main Footer */
.main-footer {
    background-color: #0b1a30;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid #fb8c00;
}

.main-footer .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #fb8c00;
}

/* About Col */
.about-col .footer-logo {
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 25px;
    text-align: justify;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #fb8c00;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fb8c00;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a0aec0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    color: #fb8c00;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fb8c00;
    padding-left: 5px;
}

/* Contact Details */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    color: #fb8c00;
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fb8c00;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background-color: #081221;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #718096;
    font-size: 14px;
    margin: 0;
}

.copyright strong {
    color: #fb8c00;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #718096;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fb8c00;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* =========================================
   About Us Page Styles
   ========================================= */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(11, 26, 48, 0.8), rgba(11, 26, 48, 0.8)), url('../images/banner-img.png') center/cover;
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
}

.breadcrumb {
    font-size: 16px;
    color: #cbd5e1;
}

.breadcrumb a {
    color: #fb8c00;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    margin: 0 10px;
    color: #94a3b8;
}

/* About Page Section */
.about-page-section {
    padding: 50px 20px;
    background-color: #f8fafc;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-feature-card {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-box {
    background-color: rgba(251, 140, 0, 0.1);
    color: #fb8c00;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature-card h5 {
    color: #1e293b;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

.about-feature-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

.about-page-image .image-wrapper {
    position: relative;
    border-radius: 12px;
}

.main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #fb8c00;
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(251, 140, 0, 0.3);
    border: 4px solid #ffffff;
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

/* Vision & Mission */
.vision-mission-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-box {
    background: #fbfcfd;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-bottom: 4px solid #fb8c00;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: #fb8c00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(251, 140, 0, 0.3);
    transition: transform 0.3s;
}

.vm-box:hover .vm-icon {
    transform: scale(1.05);
}

.vm-box h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
}

.vm-box p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* Common Heading Styles */
.section-subtitle {
    color: #fb8c00;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #fb8c00;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 50px 20px;
    background-color: #f8fafc;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fb8c00;
    z-index: -1;
    transition: height 0.4s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-card:hover::before {
    height: 100%;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(251, 140, 0, 0.1);
    color: #fb8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: background 0.4s, color 0.4s;
}

.why-card:hover .why-icon {
    background: #ffffff;
    color: #fb8c00;
}

.why-card h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.4s;
}

.why-card:hover h4 {
    color: #ffffff;
}

.why-card p {
    color: #64748b;
    line-height: 1.6;
    transition: color 0.4s;
}

.why-card:hover p {
    color: #ffffff;
}

/* Statistics Counter */
.stats-counter-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(11, 26, 48, 0.92), rgba(11, 26, 48, 0.92)), url('../images/gallery/mountains.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(251, 140, 0, 0.15);
    border-color: #fb8c00;
}

.stat-icon {
    font-size: 45px;
    color: #fb8c00;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
}

.stat-item p {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbd5e1;
    margin-bottom: 0;
    font-weight: 600;
}

/* Our Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #fb8c00;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(251, 140, 0, 0.1);
    color: #fb8c00;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s, color 0.3s;
}

.value-card:hover .value-icon {
    background: #fb8c00;
    color: #ffffff;
}

.value-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
}

.value-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

/* Contact Page Unified Section */
.contact-page-wrapper {
    padding: 50px 0;
    background-color: #f4f7f6;
}

.contact-box-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-info-panel {
    background-color: #0b1a30;
    padding: 50px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 140, 0, 0.15);
    color: #fb8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
}

.info-text p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

.info-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0 30px;
}

.follow-us h4 {
    font-size: 13px;
    color: #fb8c00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #fb8c00;
    border-color: #fb8c00;
}

.contact-form-panel {
    padding: 60px 50px;
}

.contact-form-panel h2 {
    font-size: 36px;
    color: #0b1a30;
    margin-bottom: 10px;
    font-weight: 700;
}

.italic-highlight {
    font-style: italic;
    color: #fb8c00;
    font-family: 'Times New Roman', Times, serif;
}

.form-desc {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 15px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-new {
    margin-bottom: 20px;
}
.form-row-2 .form-group-new {
    margin-bottom: 0;
}

.form-control-new {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #f8fafc;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    background-color: #f8fafc;
    font-family: inherit;
    transition: all 0.3s;
}

.form-control-new:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #cbd5e1;
}

textarea.form-control-new {
    resize: vertical;
}

.btn-submit-new {
    background-color: #0b1a30;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit-new:hover {
    background-color: #fb8c00;
}

.error-msg {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

/* Car Search Booking Form */
.car-search-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 60px;
}

.search-form-wrapper {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: none !important;
}

.search-form-title {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 25px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}

.seo-highlight {
    color: #f59e0b;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.search-input-group label {
    display: block;
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
    font-weight: 600;
}

.search-input-group label i {
    color: #fb8c00;
    margin-right: 5px;
}

.search-control {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    font-family: inherit;
}

.search-control:focus {
    outline: none;
    border-color: #fb8c00;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(251, 140, 0, 0.15);
}

.search-btn-group {
    display: flex;
}

.btn-search-car {
    background: #fb8c00;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 47px;
}

.btn-search-car:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Rental Packages Section */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #fb8c00;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 140, 0, 0.1);
    color: #fb8c00;
    font-size: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    background: #fb8c00;
    color: #ffffff;
}

.package-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

/* Available Cars Section */
.car-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.car-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.car-img-wrapper {
    position: relative;
    height: 200px;
    background: #f8fafc;
    overflow: hidden;
}

.car-img-wrapper {
    position: relative;
    height: 220px;
    background: #f8fafc;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.car-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-img-wrapper img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    background: #fb8c00;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.price-tag span {
    font-size: 20px;
    color: #fb8c00;
    font-weight: 800;
}

.car-details {
    padding: 25px;
    text-align: left;
}

.car-details h3 {
    font-size: 24px;
    color: #0f172a;
    margin: 0 0 5px 0;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
}

.car-subtitle {
    font-size: 11px;
    color: #fb8c00;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.car-features-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 20px 0;
    margin: 0 0 20px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.car-features-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    text-align: center;
}

.car-features-list li i {
    color: #fb8c00;
    font-size: 16px;
}

.car-card-actions {
    display: flex;
    gap: 15px;
}

.btn-call-now {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    background: #fb8c00;
    color: #ffffff;
    border: 1px solid #fb8c00;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.btn-call-now:hover {
    background: #f57c00;
    border-color: #f57c00;
}

.btn-whatsapp {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    background: #f0fdf4;
    color: #22c55e;
    border: 1px solid #dcfce7;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.btn-whatsapp:hover {
    background: #dcfce7;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .car-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .car-search-section {
        margin-top: -30px;
    }
}

@media (max-width: 991px) {
    .about-page-grid {
        grid-template-columns: 1fr;
    }
    .vm-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-box-layout {
        display: flex;
        flex-direction: column-reverse;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .car-list-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


@media (max-width: 768px) {
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    .about-highlights {
        grid-template-columns: 1fr;
    }
    .why-choose-section {
        padding: 40px 10px !important;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .why-card {
        padding: 15px 10px;
    }
    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin: 0 auto 8px;
    }
    .why-card h3, .why-card h4 {
        font-size: 13px;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    .why-card p {
        font-size: 11px;
        line-height: 1.4;
        hyphens: none;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-form-panel {
        padding: 25px 15px;
    }
    .contact-form-panel h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .form-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .form-group-new {
        margin-bottom: 15px;
    }
    .form-control-new {
        padding: 12px 15px;
        font-size: 14px;
    }
    .submit-btn-new {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
    }
    .contact-info-panel {
        padding: 25px 15px;
    }
    .info-item {
        margin-bottom: 20px;
        gap: 15px;
    }
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .map-section iframe {
        height: 250px !important;
    }
    .info-text h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .info-text p {
        font-size: 13px;
    }
    .follow-us h4 {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
    .car-search-section {
        margin-top: 3px;
    }
    .search-form-wrapper {
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    .search-form-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .search-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        display: block;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    form#tempo9BookingForm {
        display: block;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .search-btn-group {
        display: block;
        width: auto !important;
        margin-top: 15px !important;
    }
    .search-input-group {
        display: block;
        width: auto !important;
        margin-bottom: 12px !important;
    }
    .search-input-group label {
        margin-bottom: 5px;
        font-size: 13px;
        display: block;
    }
    .search-control {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 12px;
        font-size: 13px;
        display: block;
    }
    .btn-search-car {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px;
        font-size: 13.5px;
        margin-top: 5px;
        display: block;
    }
    .rental-packages-section {
        padding: 40px 0 !important;
    }
    .rental-packages-section > .container > div:first-child {
        margin-bottom: 20px !important;
    }
    .rental-packages-section .container {
        padding: 0 10px !important;
    }
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .package-card {
        padding: 20px 10px;
    }
    .package-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0 auto 10px;
    }
    .package-card h3 {
        font-size: 15px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .available-cars-section {
        padding: 40px 0 !important;
    }
    .available-cars-section .container {
        padding: 0 10px !important;
    }
    .available-cars-section > .container > div:first-child {
        margin-bottom: 20px !important;
    }
    .car-features-section {
        padding: 40px 10px !important;
    }
    .car-features-section > .container > div:first-child {
        margin-bottom: 20px !important;
    }
    .features-grid {
        gap: 12px;
    }
    .feature-card {
        padding: 15px 10px;
    }
    .feature-icon {
        width: 45px;
        height: 45px;
        background: rgba(251, 140, 0, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 10px auto;
        font-size: 20px;
    }
    .feature-card h3 {
        font-size: 14px;
    }
    .booking-process-section {
        padding: 40px 10px !important;
    }
    .booking-process-section > .container > div:first-child {
        margin-bottom: 25px !important;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .process-card {
        padding: 25px 10px 15px;
        margin-top: 15px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: -15px;
    }
    .process-icon {
        font-size: 24px;
        margin-bottom: 10px;
        width: 70px;
        height: 70px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .process-card h3 {
        font-size: 14px;
    }
    .car-list-grid {
        grid-template-columns: 1fr !important;
    }
    .car-img-wrapper {
        height: 180px;
    }
    .car-details {
        padding: 15px;
    }
    .car-details h3 {
        font-size: 20px !important;
    }
    .car-details p {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    .car-details ul {
        margin-bottom: 15px !important;
    }
    .car-details ul li {
        font-size: 9px !important;
        padding: 3px 5px !important;
    }
    .car-card-actions {
        gap: 10px;
    }
    .btn-call-now, .btn-whatsapp {
        padding: 10px 8px;
        font-size: 11px;
    }
    .car-badge {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }

    .india-tour-packages {
        padding: 40px 0 !important;
    }
    .india-tour-packages .container {
        padding: 0 15px;
    }
    .india-tour-packages > .container > div:first-child {
        margin-bottom: 30px !important;
    }
    .india-tour-packages h2 {
        font-size: 28px !important;
    }
    .india-tour-packages p {
        font-size: 14px !important;
    }
}

/* Booking Process Section */
.booking-process-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    text-align: center;
    position: relative;
    padding: 40px 20px 30px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-top: 20px;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #fb8c00;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fb8c00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(251,140,0,0.3);
}

.process-icon {
    font-size: 45px;
    color: #0f172a;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.process-card:hover .process-icon {
    color: #fb8c00;
}

.process-card h3 {
    font-size: 18px;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Car Features Section */
.car-features-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #fb8c00;
    box-shadow: 0 10px 25px rgba(251,140,0,0.1);
}

.feature-icon {
    font-size: 35px;
    color: #fb8c00;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 16px;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .car-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: border-color 0.3s ease;
    display: block;
    height: auto !important;
}

.faq-item[open] {
    border-color: #fb8c00;
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: #fb8c00;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(251, 140, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-item[open] summary i {
    background: #fb8c00;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-item[open] summary {
    color: #fb8c00;
    padding-bottom: 10px;
    border-bottom: none;
}

.faq-answer {
    padding: 0 25px 30px 25px !important;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    display: block;
    height: auto !important;
}

.faq-answer p {
    margin: 0;
}

/* Mobile Menu Base Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 26px;
    color: #fb8c00;
    cursor: pointer;
    transition: transform 0.3s;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Top Bar Mobile Responsiveness */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 8px 10px;
    }
    .top-bar-left {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }
    .top-bar-right {
        display: none;
    }
    .hide-mobile-text {
        display: none;
    }
    .top-bar {
        font-size: 11px;
    }
    .top-bar-left a i {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .social-icons a {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .whatsapp-btn-top {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    /* Main Header Responsiveness (Hamburger Menu) */
    .main-header {
        padding: 5px 0;
    }
    .main-header.scrolled {
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }
    .logo-img {
        max-width: 100px !important;
        height: auto;
    }
    
    /* Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    
    /* Nav Wrapper sliding down */
    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #122442;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        
        /* Animation */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
    }
    .nav-wrapper.active {
        max-height: 600px; /* Big enough to fit menu */
        padding: 10px 20px 30px 20px;
    }
    
    /* Reset Nav */
    .main-nav {
        width: 100%;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav ul li {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    .main-nav ul li a {
        padding: 15px 0;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
    }
    .main-nav ul li a::after {
        display: none; /* Hide hover underline */
    }
    
    /* Dropdown on mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(255,255,255,0.05);
        border-top: none;
        border-radius: 8px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin: 0;
        padding: 0 !important; /* Hide padding when closed */
        
        /* Smooth Animation */
        display: flex !important;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, margin 0.4s ease-out;
    }
    .dropdown.mobile-dropdown-active .dropdown-menu {
        max-height: 600px;
        margin: 5px 0 15px 0;
    }
    .dropdown > a i {
        transition: transform 0.3s ease;
    }
    .dropdown.mobile-dropdown-active > a i {
        transform: rotate(180deg);
    }
    .dropdown-menu li a {
        color: #e2e8f0 !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
        border-bottom: none;
        white-space: nowrap !important;
    }
    
    /* CTA */
    .header-cta {
        margin-top: 25px;
        justify-content: center;
        width: 100%;
    }
    .book-now-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px;
    }
    
    /* Divine Blessings Mobile Responsiveness */
    .divine-blessings {
        padding: 15px 10px;
    }
    .divine-container {
        padding: 15px 10px;
        border-width: 1px;
        border-radius: 10px;
    }
    .divine-image-wrapper {
        margin-bottom: 5px;
        width: 110px;
        height: 110px;
    }
    .divine-img {
        width: 100%;
        height: 100%;
        border-width: 2px;
        border-radius: 50%;
        object-fit: cover;
    }
    .divine-top-label {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 8px;
    }
    .divine-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .divine-quote {
        font-size: 13px;
        padding: 0 5px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .divine-divider {
        margin: 10px 0;
    }
    .divine-footer {
        font-size: 11px;
        line-height: 1.4;
    }
    
    /* Section Headers Mobile Responsiveness */
    .section-header {
        margin-bottom: 15px;
        text-align: left;
    }
    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    
    /* Service Card Mobile Responsiveness */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .service-card {
        padding: 20px 15px;
        border-radius: 10px;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
    }
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .read-more {
        font-size: 13px;
    }
    
    /* Tour Card Mobile Responsiveness */
    .destinations-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .tour-card {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    .tour-content {
        padding: 15px;
    }
    .tour-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .tour-desc {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .tour-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 15px;
    }
    .tour-tags .tag {
        font-size: 11px;
        padding: 4px 8px;
        margin: 0;
    }
    .tour-actions {
        flex-direction: column;
        gap: 10px;
    }
    .tour-actions a {
        font-size: 13px;
        padding: 10px;
        width: 100%;
        justify-content: center;
    }
    
    /* Process Card Mobile Responsiveness */
    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .process-card {
        padding: 15px 5px;
        box-sizing: border-box;
        width: 100%;
        margin-top: 15px;
    }
    .process-icon {
        font-size: 22px;
        margin-bottom: 8px;
        width: 60px;
        height: 60px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .step-number {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: -10px;
    }
    .process-card h3 {
        font-size: 14px;
        margin-bottom: 0px;
    }
    .process-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Gallery Mobile Responsiveness */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .gallery-item {
        height: 150px;
        border-radius: 10px;
    }
    .gallery-overlay {
        padding: 20px 10px 10px;
    }
    .gallery-overlay h3 {
        font-size: 14px;
    }
    
    /* Reviews Mobile Responsiveness */
    .reviews-slider {
        justify-content: flex-start;
        padding: 10px 0 30px;
        gap: 15px;
        scroll-padding-left: 0;
    }
    .review-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        padding: 20px 15px;
        scroll-snap-align: center;
        border-radius: 12px;
    }
    .review-card.active {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .review-card.active:hover {
        transform: scale(1);
    }
    .review-text {
        font-size: 14px;
        line-height: 1.5;
    }
    .reviewer-name {
        font-size: 16px;
    }
    
    /* Statistics Mobile Responsiveness */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .stat-card, .stat-item {
        padding: 10px 5px !important;
        border-radius: 8px !important;
    }
    .stat-card i, .stat-item .stat-icon i {
        font-size: 20px !important;
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-bottom: 5px !important;
    }
    .stat-icon {
        margin-bottom: 5px !important;
    }
    .stat-card::before {
        width: 40px;
        height: 40px;
        top: 5px;
    }
    .stat-card::after {
        top: 5px;
        right: 5px;
    }
    .stat-number, .stat-item h3 {
        font-size: 18px !important;
        padding-bottom: 0 !important;
        margin-bottom: 2px !important;
    }
    .stat-text, .stat-item p {
        font-size: 10px !important;
        margin-top: 0 !important;
        line-height: 1.2;
    }
    
    /* FAQ Mobile Responsiveness */
    .faq-section {
        padding: 40px 15px !important;
    }
    .faq-container {
        gap: 10px;
    }
    .faq-item summary {
        padding: 15px 15px;
        font-size: 14px !important;
    }
    .faq-item summary i {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .faq-answer {
        padding: 0 15px 15px;
        font-size: 13px !important;
        line-height: 1.4;
        text-align: justify !important;
    }
    
    /* CTA Mobile Responsiveness */
    .cta-section {
        padding: 50px 15px;
    }
    .cta-subtitle {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    .cta-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .cta-buttons {
        gap: 12px;
        flex-direction: column;
    }
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Footer Mobile Responsiveness */
    .footer-top {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-col .footer-logo img {
        max-width: 150px;
    }
    .footer-about {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    .footer-links li {
        margin-bottom: 10px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-contact li {
        margin-bottom: 12px;
        gap: 10px;
    }
    .footer-contact p, .footer-contact a {
        font-size: 13px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .copyright {
        font-size: 11px;
        line-height: 1.5;
    }
    
    /* Page Banner Mobile Responsiveness */
    .page-banner {
        padding: 40px 15px 30px !important;
    }
    .page-banner h1, 
    .page-banner div h1 {
        font-size: 32px !important;
    }
    .breadcrumb, 
    .page-banner .breadcrumb {
        font-size: 14px !important;
    }
    
    /* Common Heading Mobile Responsiveness */
    .section-title {
        font-size: 26px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    .section-subtitle {
        font-size: 12px !important;
        padding-left: 40px !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
    }
    .section-subtitle::before {
        width: 30px !important;
    }
    
    /* About Page Mobile Fixes */
    .about-page-grid,
    .about-features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .about-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-feature-card p {
        text-align: justify !important;
    }
    .experience-badge {
        padding: 10px 15px !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 10px !important;
        width: 80% !important;
        justify-content: center !important;
    }
    .experience-badge .years {
        font-size: 26px !important;
    }
    .experience-badge .text {
        font-size: 11px !important;
    }
    
    /* Vision & Mission Mobile Fixes */
    .vision-mission-section {
        padding: 50px 25px !important;
    }
    .vision-mission-section > .container > div:first-child {
        text-align: left !important;
        padding: 0 5px !important;
    }
    .vm-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .vm-box {
        padding: 20px 15px !important;
    }
    .vm-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin: 0 auto 15px !important;
    }
    .vm-box h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    .vm-box p {
        font-size: 13px !important;
        text-align: justify !important;
    }
    
    /* Global Section Header Mobile Fixes */
    .section-title, 
    .section-header,
    .container > div[style*="text-align: center"] {
        text-align: left !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .section-subtitle {
        text-align: left !important;
    }
    
    /* Our Values Mobile Fixes */
    .our-values-section {
        padding: 50px 25px !important;
    }
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .value-card {
        padding: 25px 20px !important;
    }
    .value-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 24px !important;
        margin: 0 auto 15px !important;
    }
    .value-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    .value-card p {
        font-size: 13px !important;
        text-align: justify !important;
    }
    
    /* Why Choose Us Mobile Fixes */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .why-card {
        padding: 15px 5px !important;
    }
    .why-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        margin: 0 auto 10px !important;
    }
    .why-card h3, .why-card h4 {
        font-size: 14px !important;
        margin-bottom: 0px !important;
    }
    .why-card p {
        font-size: 12px !important;
        text-align: justify !important;
    }
    
    /* Tour Packages */
    .india-tour-packages {
        padding: 40px 0 !important;
    }
    .india-tour-packages .container {
        padding: 0 15px;
    }
    .india-tour-packages > .container > div:first-child {
        margin-bottom: 30px !important;
    }
    .india-tour-packages h2 {
        font-size: 28px !important;
    }
    .india-tour-packages p {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   CUSTOM SUCCESS MODAL POPUP STYLES (Inquiry Form Submission)
   ========================================================================== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 26, 48, 0.75);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.custom-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.custom-modal-card {
    background: #ffffff;
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #e2e8f0;
}

.custom-modal-overlay.show .custom-modal-card {
    transform: scale(1);
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    margin: 0 auto 24px auto;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
}

.modal-icon-wrapper.error-theme {
    background: #fef2f2;
    color: #ef4444;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.2);
}

.custom-modal-card h3 {
    color: #0b1a30;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: inherit;
}

.custom-modal-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-modal-done {
    background-color: #0b1a30;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
    width: 100%;
    max-width: 220px;
    box-shadow: 0 4px 6px -1px rgba(11, 26, 48, 0.2);
}

.btn-modal-done:hover {
    background-color: #fb8c00;
    transform: translateY(-2px);
    color: #ffffff;
}

/* =========================================
   GOOGLE REVIEWS COMPONENT
   ========================================= */
.google-reviews-section {
    padding: 60px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.google-reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-reviews-text {
    flex: 1;
}

.g-section-subtitle {
    color: #ea4335;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 14px;
}

.g-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 5px;
    margin-bottom: 8px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.2;
}

.g-section-description {
    color: #64748b;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 0;
    max-width: 650px;
    line-height: 1.5;
}

.google-review-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.g-rating-score {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.g-rating-stars {
    margin: 8px 0;
    font-size: 14px;
}

.g-rating-count {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.g-header-right-side {
    display: flex;
    align-items: center;
    gap: 30px;
}

.g-slider-nav-btns {
    display: none; /* removed from header but kept class just in case */
}

.g-slider-container {
    overflow: hidden;
    padding: 30px 20px 50px; 
    margin: 0 -20px;
    position: relative;
}

@media (min-width: 992px) {
    .g-slider-container {
        padding: 30px 40px 60px; 
        margin: 0 -40px;
    }
}

.g-slider-btn-left,
.g-slider-btn-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    margin-top: -20px; /* Adjust for dots padding */
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.g-slider-btn-left {
    left: 10px;
}

.g-slider-btn-right {
    right: 10px;
}

@media (min-width: 992px) {
    .g-slider-btn-left {
        left: 0px;
    }
    .g-slider-btn-right {
        right: 0px;
    }
}

.g-slider-btn-left:hover,
.g-slider-btn-right:hover {
    transform: translateY(-50%) scale(1.1);
    background: #fb8c00;
    color: #fff;
    border-color: #fb8c00;
    box-shadow: 0 10px 25px rgba(251, 140, 0, 0.4);
}

/* Swiper Overrides */
.g-swiper-pagination {
    position: relative;
    margin-top: 25px;
    bottom: 0 !important;
}

.swiper-pagination-bullet-active {
    background: #fb8c00 !important;
}

@media (max-width: 767px) {
    .g-header-right-side {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.g-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.g-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: #cbd5e1;
}

.g-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.g-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.g-review-author-info {
    flex: 1;
}

.g-review-author-name {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
}

.g-review-meta {
    font-size: 13px;
    color: #64748b;
}

.g-review-stars {
    margin-bottom: 15px;
    color: #fbbc04; /* Google yellow */
    font-size: 14px;
    display: flex;
    gap: 3px;
    filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.3));
}

.g-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    position: relative;
    padding-left: 10px;
}

.g-review-text::before {
    content: '"';
    font-size: 40px;
    color: #e2e8f0;
    position: absolute;
    left: -10px;
    top: -15px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.g-review-icon {
    font-size: 24px;
    color: #ea4335; /* Google red */
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 4px 8px rgba(234, 67, 53, 0.15);
}

.google-reviews-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.btn-view-all-google i {
    color: #ea4335;
    font-size: 18px;
}

.btn-view-all-google:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.no-reviews-msg {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-style: italic;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .g-section-title {
        font-size: 22px;
    }

    .g-section-subtitle {
        font-size: 12px;
    }

    .g-section-description {
        font-size: 14px;
    }
    
    .google-review-summary {
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
        padding: 15px;
    }

    .g-rating-score {
        font-size: 26px;
    }

    .g-review-card {
        padding: 20px 15px; /* Reduced card padding for mobile */
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #fb8c00;
    color: white;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #e65100;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Falling Flowers Animation */
.petal {
    position: absolute;
    top: -20px;
    z-index: 5;
    pointer-events: none;
    font-size: 14px;
    animation: fall linear infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}
