/* ==================== MODERN MOVERS & PACKERS - STYLESHEET ==================== */

/* ==================== LOCAL FONT FACES ==================== */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ==================== CSS VARIABLES ==================== */
:root {
    /* ============ SUGGESTED PALETTE ============ */
    --primary-color: #0D3B66;           /* Deep Blue */
    --primary-dark: #0A2847;            /* Darker Deep Blue */
    --secondary-color: #F97316;         /* Bright Orange */
    --accent-color: #3B82F6;            /* Light Blue */
    --background-color: #F8FAFC;        /* Soft White */
    --text-color: #1E293B;              /* Dark Gray */
    
    /* ============ SEMANTIC COLORS ============ */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: var(--text-color);
    --light-color: var(--background-color);
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --text-muted: #6b7280;
    
    /* ============ EFFECTS ============ */
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html {
    scroll-behavior: smooth;
    overflow-x: hidden;
} */

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    /* overflow-x: hidden; */
    width: 100%;
    background-color: var(--background-color);
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

@media (hover:hover) {
    a:hover {
        color: var(--primary-dark);
    }
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--gray-100);
    border: 1px solid rgba(13, 59, 102, 0.2);
    display: inline-block;
    margin-bottom: 1rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    /* position: sticky;
    top: 0;
    z-index: 1050; */
}

/* header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1060;
    background: #fff;
} */
.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease;
}

@media (hover:hover) {
    .navbar-brand:hover {
        transform: scale(1.05);
    }
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.75rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 1.5rem);
}

@media (hover:hover) {
    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }
    
    .navbar-nav .nav-link:hover::after {
        width: calc(100% - 1.5rem);
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 59, 102, 0.3);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-warning {
    background: linear-gradient(135deg, var(--secondary-color), #ea6317);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

@media (hover:hover) {
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(13, 59, 102, 0.4);
        color: var(--white);
    }
    
    .btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        background-color: var(--light-color);
        color: var(--primary-dark);
    }
    
    .btn-warning:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
        color: var(--white);
    }
    
    .btn-outline-light:hover {
        background-color: var(--white);
        color: var(--primary-color);
        transform: translateY(-3px);
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: slideBackground 15s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.get-quote{
    border: 2px solid transparent;
}

.quick-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

@media (hover:hover) {
    .quick-info:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-5px);
    }
}

.quick-info i {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quick-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    padding: 4rem 0;
}

.trust-card {
    padding: 1.75rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

@media (hover:hover) {
    .trust-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(13, 59, 102, 0.12);
    }
}

.trust-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    padding: 5rem 0;
    position: relative;
}

.why-us-section img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

@media (hover:hover) {
    .why-us-section img:hover {
        transform: scale(1.03);
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--success-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==================== SERVICE SECTION ==================== */
.services-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.service-card-img {
    padding: 0;
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    flex-shrink: 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card.service-card-img > h3,
.service-card.service-card-img > p,
.service-card.service-card-img > a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.service-card.service-card-img > h3 {
    padding-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card.service-card-img > p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card.service-card-img > a {
    padding-bottom: 1.25rem;
    margin-top: auto;
}

@media (hover:hover) {
    .service-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(13, 59, 102, 0.15);
    }
    
    .service-card:hover .service-img {
        transform: scale(1.08);
    }
    
    .service-card:hover .service-overlay {
        opacity: 1;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
    }
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

@media (hover:hover) {
    .service-link:hover {
        gap: 1rem;
    }
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    padding: 5rem 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(13, 59, 102, 0.02), transparent);
    pointer-events: none;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .process-line {
        display: none;
    }
}

.process-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    height: 100%;
}

@media (hover:hover) {
    .process-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 40px rgba(13, 59, 102, 0.15);
        border-color: var(--primary-color);
    }
}

.process-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(13, 59, 102, 0.25);
}

.process-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.process-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.75rem;
    color: rgba(13, 59, 102, 0.08);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 3.5rem;
    color: rgba(13, 59, 102, 0.08);
    font-family: Georgia, serif;
}

@media (hover:hover) {
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(13, 59, 102, 0.12);
        border-color: var(--primary-color);
    }
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 0.15rem;
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 5rem 0;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    padding: 1.25rem;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 59, 102, 0.04);
    color: var(--primary-color);
    box-shadow: none;
    border-bottom: 2px solid var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: rgba(13, 59, 102, 0.04);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D3B66'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: var(--text-muted);
    background-color: rgba(248, 250, 252, 0.5);
    border-bottom: 1px solid var(--gray-200);
    line-height: 1.7;
    font-size: 0.9rem;
}

.accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media (hover:hover) {
    .accordion-item:hover {
        box-shadow: 0 8px 20px rgba(13, 59, 102, 0.1);
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 59, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-info-item h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    padding-right: 7rem;
}

.contact-info-item a {
    color: var(--white);
    text-decoration: none;
}

@media (hover:hover) {
    .contact-info-item a:hover {
        color: var(--secondary-color);
    }
}

.quote-form {
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 3;
}

.quote-form h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quote-form .form-floating {
    margin-bottom: 1rem;
}

.quote-form .form-floating:last-child {
    margin-bottom: 0.75rem;
}

.quote-form .form-floating .form-control,
.quote-form .form-floating .form-select,
.quote-form .form-floating textarea.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    /* padding: 1.25rem 1rem 0.75rem; */
    font-weight: 500;
    font-size: 0.95rem;
    background-color: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    /* min-height: 60px; */
}

.quote-form .form-floating textarea.form-control {
    min-height: 130px;
    padding-top: 1.35rem;
}

.quote-form .form-floating .form-select {
    padding-top: 1.35rem;
}

.quote-form .form-floating label {
    color: var(--gray-600);
    /* padding: 0.85rem 0.95rem 0; */
    pointer-events: none;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.quote-form .form-floating .form-control:focus,
.quote-form .form-floating .form-select:focus,
.quote-form .form-floating textarea.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 59, 102, 0.15);
}

.quote-form .form-floating .form-control::placeholder,
.quote-form .form-floating textarea.form-control::placeholder {
    color: transparent;
}

.quote-form .form-floating .form-select option[value=""] {
    color: var(--gray-500);
}

.quote-form .btn {
    padding: 0.95rem 1rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 5rem 0;
}

.about-section img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

@media (hover:hover) {
    .about-section img:hover {
        transform: scale(1.03);
    }
}

.about-section ul li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    transition: all 0.3s ease;
    padding-left: 0;
    font-size: 0.95rem;
}

@media (hover:hover) {
    .about-section ul li:hover {
        padding-left: 0.75rem;
        color: var(--primary-color);
    }
}

/* ==================== FOOTER ==================== */
.footer-section {
    padding: 4rem 0 1.5rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, #0f1819 100%);
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

@media (hover:hover) {
    .footer-social a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        transform: translateY(-4px);
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    display: inline-flex;
    width: fit-content;
    font-size: 0.9rem;
    text-decoration: none;
}

@media (hover:hover) {
    .footer-links a:hover {
        color: var(--secondary-color);
        padding-left: 0.3rem;
    }
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--secondary-color);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

@media (hover:hover) {
    .footer-contact-item a:hover {
        color: var(--secondary-color);
    }
}

.footer-section hr {
    opacity: 0.08;
    margin: 2rem 0 1.5rem;
}

.footer-section small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 998;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

@media (hover:hover) {
    .floating-whatsapp:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.floating-call-mobile {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 998;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(13, 59, 102, 0.4);
    transition: all 0.3s ease;
}

@media (hover:hover) {
    .floating-call-mobile:hover {
        color: var(--white);
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(13, 59, 102, 0.6);
    }
}

@media (min-width: 992px) {
    .floating-call-mobile {
        display: none;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 997;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 5px 20px rgba(13, 59, 102, 0.3);
    transition: all 0.3s ease;
    padding: 0;
}

.back-to-top.show {
    display: flex;
}

@media (hover:hover) {
    .back-to-top:hover {
        background: var(--primary-dark);
        transform: translateY(-5px);
        box-shadow: 0 8px 28px rgba(13, 59, 102, 0.4);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    h1, .display-4 {
        font-size: 2rem;
    }
    
    h2, .display-5 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        min-height: 75vh;
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        max-width: 300px;
        width: 100%;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .quick-info {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    .quick-info p{
        font-size: 0.75rem;
    }
    
    .quick-info i {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .navbar-nav .nav-link::after {
        left: 0.5rem;
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: calc(100% - 1rem);
    }
}

@media (max-width: 768px) {
    h1, .display-4 {
        font-size: 1.75rem;
    }
    
    h2, .display-5 {
        font-size: 1.35rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: 65vh;
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .quick-info {
        padding: 0.6rem;
        text-align: center;
    }
    
    .quick-info i {
        font-size: 1rem;
    }
    
    .quick-info p {
        font-size: 0.75rem;
    }
    
    .trust-card {
        padding: 1.25rem;
    }
    
    .trust-card h3 {
        font-size: 1.75rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-img-wrapper {
        height: 200px;
    }
    
    .service-card.service-card-img > h3,
    .service-card.service-card-img > p,
    .service-card.service-card-img > a {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .feature-item {
        gap: 0.75rem;
    }
    
    .feature-item i {
        font-size: 1.25rem;
    }
    
    .process-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .process-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-card p {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .quote-form {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .quote-form h3 {
        font-size: 1.25rem;
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link.active {
        border-left: 3px solid var(--primary-color);
        padding-left: 0.5rem;
    }
}

@media (max-width: 576px) {
    :root {
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 55vh;
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .quick-info {
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .quick-info p {
        font-size: 0.7rem;
    }
    
    .trust-card {
        padding: 1rem;
    }
    
    .trust-card h3 {
        font-size: 1.5rem;
    }
    
    .trust-card p {
        font-size: 0.8rem;
    }
    
    .service-card {
        border-radius: 10px;
    }
    
    .service-img-wrapper {
        height: 150px;
    }
    
    .service-card.service-card-img > h3 {
        font-size: 0.95rem;
        padding-top: 0.75rem;
    }
    
    .service-card.service-card-img > p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .service-link {
        font-size: 0.8rem;
    }
    
    .feature-item {
        gap: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1rem;
        margin-top: 0.1rem;
    }
    
    .feature-item h3 {
        font-size: 0.9rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
    }
    
    .process-card {
        padding: 1rem;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .process-card p {
        font-size: 0.75rem;
    }
    
    .process-icon {
        font-size: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
    }
    
    .testimonial-rating {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-author h3 {
        font-size: 0.85rem;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .quote-form {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .quote-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .quote-form .form-control,
    .quote-form .form-select {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .floating-whatsapp,
    .floating-call-mobile {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.1rem;
    }
    
    .floating-call-mobile {
        bottom: 70px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section h5 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* ==================== ANIMATIONS ==================== */

/* Lightweight fade-in animation replacement */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.rounded-lg {
    border-radius: 12px;
}

.shadow-lg {
    box-shadow: 0 15px 40px rgba(13, 59, 102, 0.12);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 5rem 0;
}

.section-gray {
    background-color: var(--light-color);
}

/* ==================== PREVENT LAYOUT SHIFT ==================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
}

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .floating-whatsapp,
    .floating-call-mobile,
    .back-to-top {
        display: none !important;
    }
}
