/********** Template CSS **********/
:root {
    --primary: #6DBF2A;
    --secondary: #2F3B4A;
    --accent: #4A5563;
    --light: #FFFFFF;
    --dark: #2F3B4A;
    --gradient: linear-gradient(135deg, #6DBF2A 0%, #5FA625 100%);
    --gradient-secondary: linear-gradient(135deg, #2F3B4A 0%, #4A5563 100%);
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Hero Section ***/
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/*** Carousel ***/
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.owl-carousel-item {
    position: relative;
}

.owl-carousel-inner {
    position: relative;
    z-index: 2;
}

/*** Badge ***/
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*** Service Page Styles ***/
.service-detail-card,
.process-card,
.feature-card,
.stat-card,
.franchise-benefit-card,
.franchise-detail-card,
.rental-plan-card,
.rental-feature-card {
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover,
.process-card:hover,
.feature-card:hover,
.stat-card:hover,
.franchise-benefit-card:hover,
.franchise-detail-card:hover,
.rental-plan-card:hover,
.rental-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 10;
}

.service-detail-card::before,
.process-card::before,
.feature-card::before,
.stat-card::before,
.franchise-benefit-card::before,
.franchise-detail-card::before,
.rental-plan-card::before,
.rental-feature-card::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: left 0.5s ease;
}

.service-detail-card:hover::before,
.process-card:hover::before,
.feature-card:hover::before,
.stat-card:hover::before,
.franchise-benefit-card:hover::before,
.franchise-detail-card:hover::before,
.rental-plan-card:hover::before,
.rental-feature-card:hover::before {
    left: 100%;
}

.service-detail-icon,
.process-number,
.feature-icon,
.stat-icon,
.franchise-benefit-icon,
.franchise-detail-icon,
.rental-plan-icon,
.rental-feature-icon {
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon > div,
.process-card:hover .process-number > div,
.feature-card:hover .feature-icon > div,
.stat-card:hover .stat-icon > div,
.franchise-benefit-card:hover .franchise-benefit-icon > div,
.franchise-detail-card:hover .franchise-detail-icon > div,
.rental-plan-card:hover .rental-plan-icon > div,
.rental-feature-card:hover .rental-feature-icon > div {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-detail-card:hover h4,
.process-card:hover h5,
.feature-card:hover h5,
.franchise-benefit-card:hover h5,
.franchise-detail-card:hover h4,
.rental-plan-card:hover h5,
.rental-feature-card:hover h5 {
    color: #3B82F6;
    transform: translateY(-2px);
}

.service-detail-card:hover .btn,
.process-card:hover .btn,
.feature-card:hover .btn,
.stat-card:hover .btn,
.franchise-benefit-card:hover .btn,
.franchise-detail-card:hover .btn,
.rental-plan-card:hover .btn,
.rental-feature-card:hover .btn {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Features List */
.service-features,
.franchise-features,
.rental-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li,
.franchise-features li,
.rental-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-features li:hover,
.franchise-features li:hover,
.rental-features li:hover {
    transform: translateX(5px);
    color: #3B82F6;
}

.service-features li:last-child,
.franchise-features li:last-child,
.rental-features li:last-child {
    border-bottom: none;
}

/* Process Card Special Effects */
.process-card:hover .process-number > div {
    animation: pulse 1s infinite;
}

/* Feature Card Special Effects */
.feature-card:hover .feature-icon > div {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
}

.feature-card:hover .feature-icon i {
    color: white !important;
}

/* Stat Card Special Effects */
.stat-card:hover h3 {
    transform: scale(1.1);
    font-weight: 800;
}

/* Franchise Card Special Effects */
.franchise-benefit-card:hover .franchise-benefit-icon > div.bg-purple {
    background: linear-gradient(135deg, #9333EA, #7C3AED) !important;
}

.franchise-benefit-card:hover .franchise-benefit-icon > div.bg-success {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.franchise-benefit-card:hover .franchise-benefit-icon > div.bg-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
}

.franchise-detail-card:hover .franchise-detail-icon > div.bg-purple {
    background: linear-gradient(135deg, #9333EA, #7C3AED) !important;
}

.franchise-detail-card:hover .franchise-detail-icon > div.bg-success {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.franchise-detail-card:hover .franchise-detail-icon > div.bg-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
}

.franchise-detail-card:hover .franchise-detail-icon > div.bg-info {
    background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
}

/* Rental Card Special Effects */
.rental-plan-card:hover .rental-plan-icon > div.bg-primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
}

.rental-plan-card:hover .rental-plan-icon > div.bg-success {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.rental-plan-card:hover .rental-plan-icon > div.bg-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
}

.rental-feature-card:hover .rental-feature-icon > div.bg-primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
}

.rental-feature-card:hover .rental-feature-icon > div.bg-success {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.rental-feature-card:hover .rental-feature-icon > div.bg-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
}

.rental-feature-card:hover .rental-feature-icon > div.bg-info {
    background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
}

/* Color-specific hover effects */
.service-detail-card:hover .service-detail-icon > div.bg-primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
}

.service-detail-card:hover .service-detail-icon > div.bg-success {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.service-detail-card:hover .service-detail-icon > div.bg-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
}

.service-detail-card:hover .service-detail-icon > div.bg-info {
    background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
}

/* Button hover effects */
.service-detail-card .btn:hover,
.franchise-benefit-card .btn:hover,
.franchise-detail-card .btn:hover,
.rental-plan-card .btn:hover,
.rental-feature-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-detail-card:hover,
    .process-card:hover,
    .feature-card:hover,
    .stat-card:hover,
    .franchise-benefit-card:hover,
    .franchise-detail-card:hover,
    .rental-plan-card:hover,
    .rental-feature-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .service-detail-card:hover .service-detail-icon > div,
    .process-card:hover .process-number > div,
    .feature-card:hover .feature-icon > div,
    .stat-card:hover .stat-icon > div,
    .franchise-benefit-card:hover .franchise-benefit-icon > div,
    .franchise-detail-card:hover .franchise-detail-icon > div,
    .rental-plan-card:hover .rental-plan-icon > div,
    .rental-feature-card:hover .rental-feature-icon > div {
        transform: scale(1.05) rotate(3deg);
    }
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/*** Impact Cards Styling ***/
.impact-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.impact-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.impact-card:hover .impact-hover-bg {
    opacity: 1;
}

.impact-card:hover .impact-icon-bg {
    transform: scale(1.1);
}

.impact-card:hover .impact-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.impact-icon-wrapper {
    perspective: 1000px;
}

.impact-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.impact-icon-bg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: blur(8px);
    opacity: 0.3;
}

.impact-card:hover .impact-icon-bg {
    filter: blur(4px);
    opacity: 0.6;
}

.counter-wrapper {
    position: relative;
}

.counter-wrapper h2 {
    transition: all 0.3s ease;
}

.impact-card:hover .counter-wrapper h2 {
    transform: scale(1.1);
}

/*** Button Hover Effects ***/
.hover-lift {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(109,191,42,0.3);
}

.hover-lift::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: left 0.5s;
}

.hover-lift:hover::before {
    left: 100%;
}

/*** Animated Background Elements ***/
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.position-absolute.top-10.start-10 {
    animation: float 6s ease-in-out infinite;
}

.position-absolute.bottom-10.end-10 {
    animation: float 8s ease-in-out infinite reverse;
}

/*** Counter Animation ***/
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/*** Join Step Cards ***/
.join-step-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.join-step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.join-step-card:hover .position-absolute:first-child {
    opacity: 1;
}

.join-step-card:hover .step-number-bg {
    transform: scale(1.3);
    opacity: 0.5;
}

.join-step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.step-number-wrapper {
    perspective: 1000px;
}

.step-number {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-number-bg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*** Progress Steps ***/
.progress-steps {
    max-width: 600px;
    margin: 0 auto;
}

.step-dot {
    transition: all 0.3s ease;
}

.step-dot-inner {
    transition: all 0.3s ease;
}

.step-dot:hover .step-dot-inner {
    transform: scale(1.2);
}

/*** Feature Pills ***/
.doc-item,
.scooter-option,
.feature-item,
.app-feature {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.doc-item:hover,
.scooter-option:hover,
.feature-item:hover,
.app-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/*** CTA Section ***/
.cta-section {
    transition: all 0.3s ease;
}

.cta-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(109,191,42,0.1);
}

.trust-badge {
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
}

/*** Responsive Adjustments ***/
@media (max-width: 768px) {
    .progress-steps {
        max-width: 100%;
    }
    
    .step-indicator {
        padding: 0 10px;
    }
    
    .step-dot-inner {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem;
    }
    
    .join-step-card {
        margin-bottom: 1.5rem;
    }
}

/*** Savings Calculator Styles ***/
.calculator-section {
    transition: all 0.3s ease;
}

.calculator-section:hover {
    transform: translateY(-2px);
}

.form-range::-webkit-slider-thumb {
    background: var(--primary);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(109,191,42,0.3);
}

.form-range::-moz-range-thumb {
    background: var(--primary);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(109,191,42,0.3);
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 2px 12px rgba(109,191,42,0.5);
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 2px 12px rgba(109,191,42,0.5);
}

/*** Comparison Cards ***/
.comparison-card-petrol,
.comparison-card-ev {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-card-petrol:hover,
.comparison-card-ev:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.comparison-icon-wrapper {
    perspective: 1000px;
}

.comparison-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-icon-bg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-card-petrol:hover .comparison-icon-bg,
.comparison-card-ev:hover .comparison-icon-bg {
    transform: scale(1.3);
    opacity: 0.5;
}

.comparison-card-petrol:hover .comparison-icon,
.comparison-card-ev:hover .comparison-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cost-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cost-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*** Savings Showcase ***/
.savings-showcase {
    transition: all 0.3s ease;
}

.savings-stat {
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 1px solid transparent;
}

.savings-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/*** Animated Values ***/
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.calculating {
    animation: countUp 0.6s ease-out;
}

/*** Mobile Responsiveness ***/
@media (max-width: 768px) {
    .calculator-section .row {
        gap: 1.5rem;
    }
    
    .comparison-card-petrol,
    .comparison-card-ev {
        margin-bottom: 1.5rem;
    }
    
    .savings-stat .display-4 {
        font-size: 2rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/*** Portfolio Item ***/
.portfolio-item {
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

/*** Comparison Cards ***/
.comparison-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(47,59,74,0.1);
}

.savings-card {
    background: linear-gradient(135deg, rgba(109,191,42,0.1) 0%, rgba(95,166,37,0.05) 100%);
    border: 2px solid var(--primary);
}

/*** Partner Cards ***/
.partner-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.partner-card:hover .position-absolute:first-child {
    opacity: 1;
}

.partner-card:hover .partner-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
}

.partner-card:hover .partner-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.partner-icon-wrapper {
    perspective: 1000px;
}

.partner-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-icon-bg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-features {
    transition: all 0.3s ease;
}

.partner-stats {
    transition: all 0.3s ease;
}

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

/*** Feature Badges ***/
.feature-badge {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/*** Partner Benefits Section ***/
.partner-benefits {
    transition: all 0.3s ease;
}

.partner-benefits:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59,130,246,0.1);
}

.benefit-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
}

.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/*** Trust Indicators ***/
.trust-indicator {
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid transparent;
}

.trust-indicator:hover {
    transform: translateY(-2px);
    background: rgba(109,191,42,0.05);
    border-color: var(--primary);
}

/*** Mobile Responsiveness ***/
@media (max-width: 768px) {
    .partner-card {
        margin-bottom: 1.5rem;
    }
    
    .partner-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .partner-icon-bg {
        width: 80px !important;
        height: 80px !important;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/*** Testimonial Carousel ***/
.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel .owl-stage {
    padding: 20px 0;
}

.testimonial-carousel .owl-item {
    padding: 0 15px;
}

.testimonial-item {
    transition: all 0.4s ease;
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-avatar {
    transition: all 0.3s ease;
}

.testimonial-avatar img {
    transition: all 0.3s ease;
}

.testimonial-avatar .bg-success {
    animation: pulse 2s ease-in-out infinite;
}

.testimonial-stats {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stats {
    background: rgba(109,191,42,0.05);
    border-radius: 8px;
}

/*** Custom Navigation ***/
.testimonial-nav {
    max-width: 600px;
    margin: 0 auto;
}

.btn-nav-prev,
.btn-nav-next {
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
}

.btn-nav-prev:hover,
.btn-nav-next:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(109,191,42,0.3);
}

/*** Progress Dots ***/
.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: var(--primary);
}

.dot:hover {
    background: var(--primary);
    opacity: 0.7;
    transform: scale(1.2);
}

/*** Auto-scroll Animation ***/
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-item.active {
    animation: slideIn 0.6s ease-out;
}

/*** Footer Styles ***/
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-about {
    position: relative;
}

.footer-logo-wrapper {
    position: relative;
}

.footer-logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 2px;
    height: 40px;
    background: var(--primary);
    transform: translateY(-50%);
    opacity: 0.7;
}

.footer-stat {
    background: rgba(109,191,42,0.1);
    border: 1px solid rgba(109,191,42,0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-stat:hover {
    background: rgba(109,191,42,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109,191,42,0.2);
}

.footer-social h6 {
    position: relative;
    display: inline-block;
}

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

.btn-social-footer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-social-footer.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-social-footer.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-social-footer.btn-facebook {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.btn-social-footer.btn-facebook:hover {
    background: #0E5FCC;
    border-color: #0E5FCC;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.btn-social-footer.btn-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-color: transparent;
    color: white;
}

.btn-social-footer.btn-instagram:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.3);
}

.btn-social-footer.btn-linkedin {
    background: #0077B5;
    border-color: #0077B5;
    color: white;
}

.btn-social-footer.btn-linkedin:hover {
    background: #005885;
    border-color: #005885;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.btn-social-footer.btn-youtube {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.btn-social-footer.btn-youtube:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.footer-links h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px !important;
}

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

.footer-link {
    color: #b8b8b8 !important;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-link i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

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

.footer-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-services h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px !important;
}

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

.footer-service-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.footer-service-item:hover {
    background: rgba(109,191,42,0.1);
    border-color: rgba(109,191,42,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109,191,42,0.2);
}

.footer-service-item i {
    font-size: 16px;
}

.footer-contact h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px !important;
}

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

.contact-info {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(109,191,42,0.1);
    border-color: rgba(109,191,42,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109,191,42,0.2);
}

.contact-box {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-box:hover {
    background: rgba(109,191,42,0.05);
    margin: 0 -10px;
    padding: 12px 10px;
    border-radius: 8px;
}

.contact-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.contact-box-header i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.contact-box-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.contact-box small {
    font-size: 12px;
    color: #b8b8b8;
    margin-left: 34px;
    display: block;
}

.footer-cta .btn {
    background: linear-gradient(135deg, var(--primary) 0%, #5FA625 100%);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-cta .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: left 0.5s;
}

.footer-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109,191,42,0.4);
}

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

.footer-bottom-links a {
    color: #b8b8b8 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary) !important;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/*** Core Values Section ***/
.value-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: transparent;
}

.value-card:hover .position-absolute:first-child {
    opacity: 1;
}

.value-card:hover .value-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
    filter: blur(8px);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-card:hover h5 {
    transform: translateY(-3px);
    color: white;
}

.value-card:hover p {
    transform: translateY(-2px);
    color: rgba(255,255,255,0.9);
}

.value-icon-wrapper {
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: translateY(-5px);
}

.value-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Specific hover colors for each card */
.value-card:nth-child(1):hover {
    border-color: #22C55E;
}

.value-card:nth-child(2):hover {
    border-color: #3B82F6;
}

.value-card:nth-child(3):hover {
    border-color: #F59E0B;
}

.value-card:nth-child(4):hover {
    border-color: #9333EA;
}

/* Icon color changes on hover */
.value-card:nth-child(1):hover .value-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
}

.value-card:nth-child(2):hover .value-icon {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
}

.value-card:nth-child(3):hover .value-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.value-card:nth-child(4):hover .value-icon {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    color: white;
}

/* Pulse animation for cards on hover */
@keyframes cardPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(109,191,42,0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(109,191,42,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(109,191,42,0);
    }
}

.value-card:hover {
    animation: cardPulse 2s infinite;
}

/* Mobile responsiveness for Core Values */
@media (max-width: 768px) {
    .value-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .value-card:hover .value-icon {
        transform: scale(1.05);
    }
}

/*** Contact Info Cards ***/
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.contact-info-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: transparent;
}

.contact-info-card:hover .position-absolute:first-child {
    opacity: 1;
}

.contact-info-card:hover .contact-icon-bg {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.6;
    filter: blur(8px);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-info-card:hover h5 {
    transform: translateY(-2px);
}

.contact-info-card:hover p {
    transform: translateY(-1px);
}

.contact-icon-wrapper {
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: translateY(-5px);
}

.contact-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Specific hover colors for each card */
.contact-info-card:nth-child(1):hover {
    border-color: #22C55E;
}

.contact-info-card:nth-child(2):hover {
    border-color: #3B82F6;
}

.contact-info-card:nth-child(3):hover {
    border-color: #F59E0B;
}

.contact-info-card:nth-child(4):hover {
    border-color: #9333EA;
}

/* Icon background changes on hover */
.contact-info-card:nth-child(1):hover .contact-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
}

.contact-info-card:nth-child(2):hover .contact-icon {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
}

.contact-info-card:nth-child(3):hover .contact-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.contact-info-card:nth-child(4):hover .contact-icon {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    color: white;
}

/* Button hover effects */
.contact-info-card .btn {
    transition: all 0.3s ease;
}

.contact-info-card:hover .btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Mobile responsiveness for Contact Cards */
@media (max-width: 768px) {
    .contact-info-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .contact-info-card:hover .contact-icon {
        transform: scale(1.05);
    }
}

/*** WhatsApp Floating Button ***/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-icon {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(15deg);
}

/* Pulse animation for WhatsApp button */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2.5s infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.05);
    }
}

/*** Enhanced Contact Form ***/
.contact-form-wrapper {
    transition: all 0.4s ease;
}

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

/* Enhanced Form Inputs */
.contact-input-enhanced .form-control {
    border: 2px solid transparent !important;
    background: rgba(59,130,246,0.02);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-input-enhanced .form-control:focus {
    border-color: #3B82F6 !important;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(59,130,246,0.1);
    transform: translateY(-2px);
}

.contact-input-enhanced label {
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contact-input-enhanced .form-control:focus + label {
    color: #3B82F6;
    transform: translateY(-2px);
}

/* Icon Animations */
.contact-form-icon-wrapper {
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover .contact-form-icon-wrapper > div {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(59,130,246,0.2);
}

/* Button Enhancements */
.contact-form-wrapper .btn {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
}

.contact-form-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-form-wrapper:hover {
        transform: translateY(-3px);
    }
    
    .contact-form-wrapper .btn:hover {
        transform: translateY(-1px);
    }
}

.faq-category:hover .position-absolute:first-child {
    opacity: 1;
}

/*** Rental Page Styles ***/
.rental-plan-card,
.rental-feature-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.rental-plan-card:hover,
.rental-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.rental-plan-icon,
.rental-feature-icon {
    transition: all 0.3s ease;
}

.rental-plan-card:hover .rental-plan-icon > div,
.rental-feature-card:hover .rental-feature-icon > div {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.rental-price h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.rental-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.rental-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rental-features li:last-child {
    border-bottom: none;
}

/* Rental Form Styles */
.rental-form-wrapper {
    transition: all 0.4s ease;
}

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

.rental-input-enhanced .form-control {
    border: 2px solid transparent !important;
    background: rgba(59,130,246,0.02);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.rental-input-enhanced .form-control:focus {
    border-color: #3B82F6 !important;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(59,130,246,0.1);
    transform: translateY(-2px);
}

.rental-input-enhanced label {
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.rental-input-enhanced .form-control:focus + label {
    color: #3B82F6;
}

/* Icon Animations */
.rental-form-icon-wrapper {
    transition: all 0.3s ease;
}

.rental-form-wrapper:hover .rental-form-icon-wrapper > div {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(59,130,246,0.2);
}

/* Button Enhancements */
.rental-form-wrapper .btn {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
}

.rental-form-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .rental-plan-card:hover,
    .rental-feature-card:hover {
        transform: translateY(-5px);
    }
    
    .rental-form-wrapper:hover {
        transform: translateY(-3px);
    }
    
    .rental-form-wrapper .btn:hover {
        transform: translateY(-1px);
    }
}

.faq-category:hover .faq-icon {
    transform: scale(1.1);
}

/*** Franchise Page Styles ***/
.franchise-benefit-card,
.franchise-detail-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.franchise-benefit-card:hover,
.franchise-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.franchise-benefit-icon,
.franchise-detail-icon {
    transition: all 0.3s ease;
}

.franchise-benefit-card:hover .franchise-benefit-icon > div,
.franchise-detail-card:hover .franchise-detail-icon > div {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.franchise-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.franchise-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.franchise-features li:last-child {
    border-bottom: none;
}

/* Franchise Form Styles */
.franchise-form-wrapper {
    transition: all 0.4s ease;
}

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

.franchise-input-enhanced .form-control {
    border: 2px solid transparent !important;
    background: rgba(147,51,234,0.02);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.franchise-input-enhanced .form-control:focus {
    border-color: #9333EA !important;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(147,51,234,0.1);
    transform: translateY(-2px);
}

.franchise-input-enhanced label {
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.franchise-input-enhanced .form-control:focus + label {
    color: #9333EA;
}

/* Icon Animations */
.franchise-form-icon-wrapper {
    transition: all 0.3s ease;
}

.franchise-form-wrapper:hover .franchise-form-icon-wrapper > div {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(147,51,234,0.2);
}

/* Button Enhancements */
.franchise-form-wrapper .btn {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    border: none;
}

.franchise-form-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147,51,234,0.3);
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .franchise-benefit-card:hover,
    .franchise-detail-card:hover {
        transform: translateY(-5px);
    }
    
    .franchise-form-wrapper:hover {
        transform: translateY(-3px);
    }
    
    .franchise-form-wrapper .btn:hover {
        transform: translateY(-1px);
    }
}

.faq-question {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question:hover .position-absolute:first-child {
    opacity: 1;
}

.faq-question.active .position-absolute:first-child {
    opacity: 1;
}

.faq-question.active .faq-toggle-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-toggle-icon {
    transition: all 0.3s ease;
}

.faq-icon-wrapper {
    transition: all 0.3s ease;
}

.faq-question:hover .faq-icon-wrapper {
    transform: scale(1.1);
}

/*** FAQ Badges ***/
.faq-answer .badge {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-answer .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*** FAQ CTA ***/
.faq-cta {
    transition: all 0.3s ease;
}

.faq-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251,146,60,0.1);
}

/*** FAQ Badge Styles ***/
.badge.bg-orange {
    background: linear-gradient(135deg, #FB923C, #F97316) !important;
}

.badge.bg-cyan {
    background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
}

/*** Mobile Responsiveness for FAQ ***/
@media (max-width: 768px) {
    .faq-category {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem !important;
    }
    
    .faq-answer {
        padding: 1rem !important;
    }
    
    .faq-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    .faq-toggle-icon {
        font-size: 0.8rem;
    }
}

/*** Accordion ***/
.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(109,191,42,0.25);
}

/*** Hero Carousel ***/
.header-carousel .owl-carousel-item {
    height: 600px;
    position: relative;
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(47,59,74,0.7) 0%, rgba(74,85,99,0.5) 100%);
}

.carousel-inner .container {
    z-index: 1;
}

/*** Modal Styling ***/
.modal-header {
    border-bottom: 1px solid rgba(109,191,42,0.2);
}

.modal-footer {
    border-top: 1px solid rgba(109,191,42,0.2);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(109,191,42,0.25);
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(109,191,42,0.25);
}

/*** WhatsApp Button ***/
.btn-social:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.btn-social[href*="wa.me"]:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: white !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Header Navbar Styles ***/
.nav-link-custom {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 25px 15px !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #5FA625);
    transform: translateX(-50%);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-link-custom:hover {
    color: var(--primary) !important;
    background: rgba(109,191,42,0.05);
    transform: translateY(-2px);
}

.nav-link-custom:hover::before {
    width: 80%;
}

.nav-link-custom.active {
    color: var(--primary) !important;
    background: rgba(109,191,42,0.08);
}

.nav-link-custom.active::before {
    width: 80%;
}

.header-cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #5FA625 100%);
    border: none;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(109,191,42,0.3);
    margin-left: 15px;
    line-height: 1.2;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cta-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: left 0.5s;
}

.header-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109,191,42,0.4);
    background: linear-gradient(135deg, #5FA625 0%, var(--primary) 100%);
}

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

.header-cta-btn:active {
    transform: translateY(-1px);
}

/* Mobile responsiveness for navbar */
@media (max-width: 991.98px) {
    .navbar-nav {
        border-top: 2px solid var(--primary);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
    }
    
    .nav-link-custom {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(109,191,42,0.1);
        margin: 0;
    }
    
    .nav-link-custom:hover {
        background: rgba(109,191,42,0.1);
        transform: none;
    }
    
    .nav-link-custom::before {
        display: none;
    }
    
    .header-cta-btn {
        margin: 15px;
        width: calc(100% - 30px);
        text-align: center;
    }
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature Items ***/
.feature-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-item:hover .position-absolute:first-child {
    opacity: 1;
}

.feature-item:hover .feature-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.feature-icon-wrapper {
    perspective: 1000px;
}

.feature-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon-bg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*** Stats Overlay ***/
.stats-overlay {
    transition: all 0.3s ease;
}

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

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

.stat-item:hover {
    transform: scale(1.05);
}

/*** Trust Badge ***/
.trust-badge {
    transition: all 0.3s ease;
}

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

/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*** Mobile Responsiveness ***/
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .feature-icon-bg {
        width: 70px !important;
        height: 70px !important;
    }
    
    .stats-overlay {
        margin-bottom: 1rem;
    }
    
    .trust-badge {
        margin-bottom: 1rem;
    }
}

/*** Blog Carousel ***/
.blog-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-carousel .owl-stage {
    padding: 20px 0;
}

.blog-carousel .owl-item {
    padding: 0 15px;
}

.blog-item {
    transition: all 0.4s ease;
}

.blog-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-meta {
    transition: all 0.3s ease;
}

.blog-stats {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-stats {
    transform: translateY(-3px);
}

.blog-title {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    transition: all 0.3s ease;
}

.blog-footer {
    transition: all 0.3s ease;
}

/*** Blog Navigation ***/
.blog-nav {
    max-width: 600px;
    margin: 0 auto;
}

.btn-blog-prev,
.btn-blog-next {
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
}

.btn-blog-prev:hover,
.btn-blog-next:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(109,191,42,0.3);
}

/*** Blog Dots ***/
.blog-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: var(--primary);
}

.blog-dot:hover {
    background: var(--primary);
    opacity: 0.7;
    transform: scale(1.2);
}

/*** Blog Badge Styles ***/
.badge.bg-purple {
    background: linear-gradient(135deg, #9333EA, #7C3AED) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #22C55E, #16A34A) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #EF4444, #DC2626) !important;
}

/*** Mobile Responsiveness for Blog ***/
@media (max-width: 768px) {
    .blog-carousel .owl-item {
        padding: 0 10px;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-nav {
        padding: 0 20px;
    }
    
    .btn-blog-prev,
    .btn-blog-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .blog-dot {
        width: 8px;
        height: 8px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.875rem;
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}