/* 
===============================================
Acro Packers and Movers Logistics - Custom CSS
===============================================
*/

/* --- Variables --- */
:root {
    --primary-color: #0B3B68;
    --accent-color: #E46A24;
    --light-bg: #F8FAFC;
    --text-dark: #1A1A1A;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Global Styles --- */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
}

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

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

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

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

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

.text-light-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.hover-white:hover {
    color: #ffffff !important;
}

.section-padding {
    padding: 80px 0;
}

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

/* --- Buttons --- */
.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #cc5c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 106, 36, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #082a4d;
    color: white;
    transform: translateY(-2px);
}

/* --- Topbar & Navbar --- */
.topbar {
    background-color: var(--primary-color);
    font-size: 14px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--accent-color) !important;
}

#navbar {
    transition: all 0.3s ease;
}

#navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0;
    min-height: 80vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 59, 104, 0.9) 0%, rgba(11, 59, 104, 0.7) 100%);
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Feature Cards --- */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent !important;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom-color: var(--accent-color) !important;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-color);
}

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

/* --- About Section --- */
.experience-badge {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 4px solid white;
}

/* --- Service Cards --- */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.service-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-card:hover .read-more {
    gap: 10px;
}

/* --- Process Timeline --- */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

@media (max-width: 991px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background-color: var(--accent-color) !important;
    transform: scale(1.1);
}

/* --- Location Cards --- */
.location-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.location-card:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* --- Testimonials --- */
.testimonial-card {
    background: #fff;
    border-top: 4px solid var(--accent-color) !important;
}

.testimonial-swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
}

/* --- Pricing Cards --- */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.transform-scale {
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 991px) {
    .transform-scale {
        transform: scale(1);
    }
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    padding: 5px 40px;
    font-size: 12px;
    text-transform: uppercase;
}

/* --- FAQ Accordion --- */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(11, 59, 104, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

/* --- Blog Cards --- */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* --- Footer --- */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* --- Floating Actions --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    display: none !important;
}

.mobile-action-bar .action-btn {
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-action-bar .action-btn:active {
    background-color: #f8f9fa !important;
}

@media (max-width: 991px) {
    .floating-whatsapp {
        bottom: 80px;
        /* Above mobile action bar */
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 20px;
    }
}