@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #003399;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #002266;
    border-color: #002266;
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: #fff;
    transition: padding 0.3s ease-in-out;
}
.navbar.navbar-scrolled {
    padding: 8px 0;
}
.navbar-brand img {
    height: 40px;
    transition: height 0.3s ease-in-out;
}
.navbar.navbar-scrolled .navbar-brand img {
    height: 32px;
}
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 10px;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-blue) !important;
}
.nav-item.dropdown .nav-link::after {
    vertical-align: middle;
}
.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-blue) !important;
}
.dropdown-item:active, .dropdown-item.active, .dropdown-item:focus {
    background-color: var(--primary-blue) !important;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    padding: 50px 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 65%), url('../../images/hero_camry.png') no-repeat right center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-subtitle {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.hero-title span {
    color: var(--primary-blue);
}
.hero-desc {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}
.hero-feature-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

/* Section Headings */
.section-subtitle {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Features Section */
.feature-box {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    gap: 15px;
}
.feature-box:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-color: transparent;
}
.feature-icon {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 0;
    flex-shrink: 0;
}
.feature-content h3 {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}
.feature-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* Slider Styles */
.slider-container {
    position: relative;
    padding: 0 40px;
}
.slider-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.slider-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.slider-item {
    flex: 0 0 auto;
}
.fleet-slider .slider-item {
    width: calc(100% / 6 - 15px); /* Show 6 items */
}
.testimonial-slider .slider-item {
    width: calc(100% / 3 - 15px); /* Show 3 items */
}
@media (max-width: 991.98px) {
    .fleet-slider .slider-item { width: calc(100% / 3 - 15px); }
    .testimonial-slider .slider-item { width: calc(100% / 2 - 15px); }
}
@media (max-width: 767.98px) {
    .fleet-slider .slider-item { width: calc(100% / 2 - 15px); }
    .testimonial-slider .slider-item { width: 100%; }
}


.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #b3ccff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    z-index: 10;
}
.slider-nav:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}
.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }

/* Fleet Section */
.fleet-section {
    padding: 50px 0;
}
.fleet-card {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.fleet-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.fleet-img {
    height: 140px;
    width: 100%;
    object-fit: cover;
}
.fleet-content {
    padding: 15px;
}
.fleet-name {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}
.fleet-meta {
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border-color);
    height: 100%;
}
.quote-icon {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.client-name {
    font-weight: 700;
    margin: 0;
    font-size: 14px;
    color: var(--primary-blue);
}
.client-designation {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

/* Branches */
.branch-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #fff;
    height: 100%;
}
.branch-img {
    height: 140px;
    object-fit: cover;
    width: 100%;
}
.branch-content {
    padding: 15px;
}
.branch-title {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}
.branch-address {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.branch-link {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-blue);
    border-radius: 8px;
    padding: 30px;
    color: #fff;
    margin: 40px 0;
}
.cta-icon {
    font-size: 32px;
    margin-right: 15px;
}
.cta-title {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}
.cta-desc {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    background: #fff;
    border-top: 1px solid var(--border-color);
}
.footer-logo {
    height: 30px;
    margin-bottom: 15px;
}
.footer-desc {
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    margin-right: 8px;
    font-size: 12px;
    transition: all 0.3s;
}
.social-links a:hover {
    background: #002266;
}
.footer-heading {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: var(--text-dark);
    font-size: 12px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary-blue);
}
.footer-contact li {
    display: flex;
    gap: 8px;
    color: var(--text-dark);
    font-size: 12px;
    margin-bottom: 10px;
}
.footer-contact i {
    color: var(--primary-blue);
    margin-top: 2px;
}
.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-section {
        background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%), url('../../images/hero_camry.png') no-repeat right center/cover;
    }
    .cta-banner {
        text-align: center;
        flex-direction: column;
    }
    .cta-icon {
        margin: 0 0 20px 0;
    }
    .cta-content {
        margin-bottom: 20px;
    }
}

/* Custom Fleet Pills */
.fleet-pills .nav-link {
    color: var(--text-dark);
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.fleet-pills .nav-link:hover {
    background-color: #e9ecef;
    color: var(--primary-blue);
    border-color: #b3ccff;
}
.fleet-pills .nav-link.active {
    background-color: var(--primary-blue) !important;
    color: #fff !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 4px 12px rgba(0, 51, 153, 0.2);
}

/* Form Styling overrides: Reduce input/select heights by 10% and standardize style */
.form-control,
.form-select {
    padding: 0.3375rem 0.75rem; /* ~10% reduction from Bootstrap's default 0.375rem */
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: #8099ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 153, 0.15);
    outline: 0;
}

/* Heartbeat pulse animation for green SLA status bulb */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Elegant light contact cards on Contact Us Page */
.contact-info-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact-info-card:hover {
    border-color: #8099ff !important;
    box-shadow: 0 8px 24px rgba(0, 51, 153, 0.05);
    transform: translateY(-2px);
}

/* Services Section Cards */
.service-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 51, 153, 0.08) !important;
    border-color: rgba(0, 51, 153, 0.15);
}

.service-img-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.service-icon-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 51, 153, 0.25);
    border: 3px solid #fff;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-icon-badge {
    background-color: #002266;
    transform: scale(1.08);
}

.service-card-body {
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.service-link i {
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: #002266;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Button Hover Micro-Animations */
.btn i {
    transition: transform 0.2s ease;
    display: inline-block;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Advantages Section */
.advantages-section {
    padding: 35px 0;
    background-color: #ffffff;
}

.advantage-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    transition: transform 0.2s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-icon-wrapper {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 51, 153, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(0, 51, 153, 0.15);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon-wrapper {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.advantage-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.advantage-content p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Comparison Table Styling */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.comparison-table th {
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 14px;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 8px 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 12.5px;
}

.comparison-table .feature-title {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.comparison-table .feature-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

.comparison-table .other-brand-col {
    background-color: rgba(220, 53, 69, 0.01);
}

.comparison-table .ezoo-col {
    background-color: rgba(0, 51, 153, 0.015);
}

.comparison-table tr:hover td {
    background-color: #fafbfe;
}

.comparison-table tr:hover td.other-brand-col {
    background-color: rgba(220, 53, 69, 0.02);
}

.comparison-table tr:hover td.ezoo-col {
    background-color: rgba(0, 51, 153, 0.03);
}

.comparison-table i.bi-x-circle-fill {
    filter: drop-shadow(0 2px 4px rgba(220, 53, 69, 0.25));
}

.comparison-table i.bi-check-circle-fill {
    filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.25));
}

/* Floating Quick Contact Buttons */
.floating-contact-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1050;
}

.floating-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.08);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.whatsapp:hover {
    background-color: #20ba5a;
}

.floating-btn.call {
    background-color: #003399;
}

.floating-btn.call:hover {
    background-color: #002266;
}

/* Tooltip style */
.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 46px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation on the buttons to make them feel dynamic and alive */
.floating-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.floating-btn.whatsapp::after {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: floating-pulse-whatsapp 2.5s infinite;
}

.floating-btn.call::after {
    box-shadow: 0 0 0 0 rgba(0, 51, 153, 0.6);
    animation: floating-pulse-call 2.5s infinite;
}

@keyframes floating-pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        opacity: 1;
    }
    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        opacity: 0;
    }
}

@keyframes floating-pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 51, 153, 0.7);
        opacity: 1;
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 51, 153, 0);
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 51, 153, 0);
        opacity: 0;
    }
}


