:root {
    --primary-color: #FF9933; /* Saffron */
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --muted-color: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%; /* Prevent horizontal overflow from child elements */
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Outfit', sans-serif;
}

/* Fluid Typography Overrides */
h1, .display-1 { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.2; }
h2, .display-5 { font-size: clamp(1.8rem, 5vw, 3.5rem); line-height: 1.3; }
h3, .display-6 { font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.3; }

@media (max-width: 767px) {
    section {
        padding: 40px 0 !important;
    }
    .section-title {
        margin-bottom: 30px !important;
    }
}
.logo-box img{
    width: 70px;
    transition: var(--transition);
}

@media (max-width: 480px) {
    .logo-box img {
        width: 50px;
    }
    .logo-text span {
        font-size: 16px !important;
    }
}

/* Utilities */
.text-saffron { color: var(--primary-color) !important; }
.bg-saffron { background-color: var(--primary-color) !important; }
.btn-saffron {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: var(--transition);
}
.btn-saffron:hover {
    background-color: #e68a00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}
.btn-outline-saffron {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
}
.btn-outline-saffron:hover {
    background-color: var(--primary-color);
    color: white;
}

.tracking-wider { letter-spacing: 2px; }

.section-title h2 {
    position: relative;
}
.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Navbar */
.main-nav {
    padding: 15px 0;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .main-nav {
        padding: 10px 0;
    }
    .main-nav .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.main-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 10px;
    position: relative;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 100%;
}
.main-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-phone {
    font-size: 1.05rem;
    transition: var(--transition);
}

.nav-phone span {
    letter-spacing: 0.5px;
}

.nav-phone:hover {
    color: var(--primary-color) !important;
}

.nav-phone:hover i {
    transform: scale(1.2);
}

.nav-phone i {
    transition: var(--transition);
}

@media (max-width: 991px) {
    .nav-cta {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 15px 10px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }
    .navbar-brand {
        padding: 0;
        margin-right: 0;
        display: flex !important;
        align-items: center;
    }
    .logo-text span {
        white-space: nowrap;
        font-size: 18px;
    }
    .logo-text small {
        font-size: 9px !important;
    }
}
.char{
    color: #e68a00;
}

/* Hero Section Redesign */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.584) 0%, rgba(0, 0, 0, 0.079) 60%, rgba(0, 0, 0, 0) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
}



.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.25; /* Increased for better mobile wrapping */
    font-weight: 800 !important;
}

.hero-section .lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    opacity: 0.95;
}

.hero-form {
    border-top: 6px solid var(--primary-color);
    transition: var(--transition);
}

.hero-form:hover {
    transform: translateY(-5px);
}

.hero-form .input-group-text {
    border: none;
    color: var(--primary-color);
}

.hero-form label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.hero-btns .btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.hero-btns .btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hero-trust span {
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .hero-section {
        height: auto !important;
        padding: 80px 0 40px ;
        background-attachment: scroll ;
        text-align: center ;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/hero-bg.png') ;
       
    }
    .hero-section h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px;
    }
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 30px !important;
    }
    .hero-btns {
        justify-content: center;
        gap: 12px !important;
    }
    .hero-btns .btn {
        padding: 12px 20px !important;
        font-size: 1rem;
    }
    .hero-trust {
        justify-content: center;
        margin-top: 20px !important;
        margin-bottom: 20px;
    }
    .hero-form {
        display: block !important;
        margin: 20px auto 0;
        padding: 20px !important;
    }
    .hero-form h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-btns .btn {
        width: 100%;
        margin-bottom: 5px;
    }
    .hero-trust {
        flex-direction: column;
        gap: 10px !important;
    }
    .hero-section {
        padding: 60px 0 30px !important;
    }
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
}


/* About Section */
.about-img-wrapper {
    padding-bottom: 30px;
    padding-right: 30px;
}

@media (max-width: 991px) {
    .about-img-wrapper {
        padding: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .about-img-wrapper img {
        max-width: 100%;
    }
}
.experience-badge {
    z-index: 5;
    min-width: 150px;
    border: 8px solid white;
}
.mb-n3 { margin-bottom: -1rem !important; }
.ms-n3 { margin-left: -1rem !important; }

/* Hero Swiper Customization */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
}
.hero-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }
    .hero-slider .swiper-pagination {
        bottom: 20px !important;
    }
}

/* Premium Trust Strip */
.trust-premium-section {
    background: linear-gradient(to right, #ffffff, #fffdfb, #ffffff);
    position: relative;
    border-top: 1px solid rgba(255, 153, 51, 0.1);
    z-index: 10;
}

.trust-card-premium {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f1f1;
    transition: var(--transition);
    height: 100%;
}

.trust-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.1);
    border-color: var(--primary-color);
    background: #fffcf9;
}

.trust-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 153, 51, 0.08);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
    margin-bottom: 0 !important;
}

.trust-card-premium:hover .trust-icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.trust-content-box h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.trust-content-box p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .trust-card-premium {
        padding: 15px 12px;
        text-align: center;
        flex-direction: column;
    }
    .trust-icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px !important;
    }
    .trust-content-box h4 {
        font-size: 1.1rem;
    }
    .trust-content-box p {
        font-size: 0.75rem;
    }
}


/* Vehicle Cards Redesign */
.vehicle-card {
    transition: var(--transition);
    background: var(--white);
    position: relative;
    max-width: 380px;
}
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
.vehicle-img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.feat-item {
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}
.feat-item:hover {
    background: #f1f1f1;
    border-color: var(--primary-color) !important;
}
.info-list li {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}
.btn-group-custom .btn {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Slider Continuous Motion */
.vehicle-row-ltr, .vehicle-row-rtl {
    padding: 20px 0;
}
.swiper-wrapper {
    transition-timing-function: linear !important;
}
#vehicles .swiper-slide {
    width: auto !important;
}

/* Timeline */
.timeline-ui {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-ui::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
}
.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.timeline-row:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-day {
    flex: 0 0 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    border: 5px solid white;
    box-shadow: 0 0 0 2px #e9ecef;
}
.timeline-content {
    flex: 0 0 calc(50% - 70px);
    background: var(--light-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.timeline-center {
    position: relative;
    text-align: center;
    margin-top: -20px;
    z-index: 3;
}
.timeline-center i {
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Feature Box */
.feature-box i {
    width: 50px;
}

/* Lead Form */
.lead-form-container {
    background: white;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 767px) {
    .floating-btns {
        bottom: 100px; /* Increased to avoid clash with mobile bar icons */
        right: 20px;
        gap: 15px;
    }
    .btn-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}
.btn-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-whatsapp { 
    background: #25d366; 
    color: white;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.btn-call { background: #007bff; }
.btn-top { background: var(--secondary-color); display: none; }
.btn-float:hover {
    transform: scale(1.1);
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: var(--secondary-color);
    z-index: 1000;
}
.sticky-mobile-bar span {
    font-size: 12px;
    font-weight: 500;
}

/* Carousel Testimonials */
.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section { height: 70vh; }
    .display-3 { font-size: 2.5rem; }
    .timeline-ui::before { left: 40px; }
    .timeline-row { flex-direction: row !important; align-items: flex-start; justify-content: flex-start; }
    .timeline-day { flex: 0 0 60px; height: 60px; font-size: 0.9rem; margin-right: 20px; }
    .timeline-content { flex: 1; }
    .floating-btns { bottom: 85px; right: 20px; }
}

@media (max-width: 576px) {
    .section-title h2 { font-size: 1.8rem; }
}

/* Why Choose Us Section - Premium Dark Theme */
.why-choose-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.why-choose-section::before {
    content: 'CHARDHAM';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 15vw, 15rem);
    font-weight: 900;
    color: rgba(255, 153, 51, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 20px;
}

.why-choose-section .display-5 {
    color: white;
}

.choose-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.choose-card:hover::after {
    opacity: 1;
}

.icon-box {
    width: 75px;
    height: 75px;
    background: rgba(255, 153, 51, 0.12);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.choose-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 153, 51, 0.3);
}

.choose-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.choose-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Lead Form Section Redesign */
.contact-info-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 50px;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.1;
}

.info-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    margin-bottom: 20px;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 50px;
}

.info-item h6 {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.lead-form-premium {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
}

.trust-badge-row {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    color: var(--primary-color);
}

/* FAQ Section Redesign */
.faq-premium-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.faq-premium-accordion .accordion-button {
    background: white;
    padding: 20px 25px;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.faq-premium-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.1);
    background: #fffbf7;
    border-color: rgba(255, 153, 51, 0.2);
}

.faq-premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
    background-size: 1.2rem;
    transition: var(--transition);
}

.faq-premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF9933'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-premium-accordion .accordion-body {
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 20px 25px;
    color: var(--muted-color);
    border: 1px solid #f0f0f0;
    border-top: none;
    margin-top: -5px;
}

.faq-img-wrapper {
    position: relative;
    padding: 20px;
}

.faq-img-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: -10px;
    left: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    z-index: 0;
    opacity: 0.2;
}

.faq-img-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* CTA Premium Section */
.cta-premium-section {
    background: linear-gradient(135deg, #FF9933 0%, #e68a00 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/mountain-high.png');
    opacity: 0.05;
    pointer-events: none;
}

.cta-premium-section h2 {
    font-size: 3rem;
    font-weight: 800;
}

.cta-premium-section .btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.cta-premium-section .btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
}

.pulse-btn {
    animation: pulse-saffron 2s infinite;
}

@keyframes pulse-saffron {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Premium Footer Styles */
.premium-footer {
    background-color: #0d0d0d;
    padding-top: 80px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-social-links .social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-links .social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    color: white;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-contact-item {
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-contact-item span {
    color: #999;
    font-size: 0.95rem;
}

.premium-footer-bottom {
    background: #000;
    padding: 30px 0;
}

.payment-badges img {
    height: 25px;
    margin-left: 15px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.payment-badges img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Gallery & Testimonials Refinements */
.gallery-slider {
    padding: 50px 0;
}

.gallery-slider .swiper-slide {
    width: 600px;
}

@media (max-width: 1024px) {
    .gallery-slider .swiper-slide {
        width: 450px;
    }
}

@media (max-width: 767px) {
    .gallery-slider .swiper-slide {
        width: 100%;
        padding: 0 15px;
    }
}

.gallery-item-premium {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

@media (max-width: 767px) {
    .gallery-item-premium img {
        height: 250px;
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 153, 51, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition);
}

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

.gallery-item-premium:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-premium:hover .gallery-overlay i {
    transform: scale(1);
}

/* Testimonials Premium */
.testimonial-card-premium {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    position: relative;
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.1);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 153, 51, 0.15);
}

.quote-icon-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(255, 153, 51, 0.05);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.star-rating {
    margin-bottom: 20px;
}

.star-rating i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.visitor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Footer Links Re-style */
.footer-links a {
    color: var(--muted-color);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Testimonial Navigation Styling */
.testimonial-slider .testimonial-next,
.testimonial-slider .testimonial-prev {
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-slider .testimonial-next:hover,
.testimonial-slider .testimonial-prev:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-slider .testimonial-next::after,
.testimonial-slider .testimonial-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 991px) {
    .testimonial-slider .testimonial-next,
    .testimonial-slider .testimonial-prev {
        display: none;
    }
}

/* How It Works Section Styling */
.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.1);
    border-color: var(--primary-color);
}

.process-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 51, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 30px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover .process-icon-box {
    background: var(--primary-color);
    color: white;
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

@media (min-width: 992px) {
    .process-row {
        position: relative;
    }
    .process-row::before {
        content: '';
        position: absolute;
        top: 25%;
        left: 20%;
        width: 60%;
        height: 2px;
        background: rgba(255, 153, 51, 0.2);
        border-top: 2px dashed var(--primary-color);
        z-index: 0;
    }
}

