/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLING - PACKERS MOVERS KOLKATA
   ========================================================================== */

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

/* --- Root Variables --- */
:root {
    --primary-color: #0a1f44;       /* Deep Navy Blue */
    --accent-color: #e87722;        /* Orange/Amber */
    --accent-hover: #c85f11;        /* Darker Orange for hover */
    --bg-light: #f5f5f5;            /* Alternating section light grey */
    --bg-white: #ffffff;
    --text-dark: #222222;           /* Charcoal body text */
    --text-muted: #666666;
    --text-light: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --max-width: 1200px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 6px;
    --header-height: 85px;
}

/* --- Base Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: var(--font-family);
    font-size: 1rem;
    outline: none;
}

ul {
    list-style: none;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.eyebrow {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 119, 34, 0.3);
}

.btn-secondary {
    background-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #0d2a5a;
    box-shadow: 0 5px 15px rgba(10, 31, 68, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   HEADER & TOP BAR
   ========================================================================== */

/* --- Top Info Bar --- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--accent-color);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.top-bar-socials a:hover {
    color: var(--accent-color);
}

/* --- Sticky Nav Header --- */
.main-header {
    background-color: var(--bg-white);
    height: var(--header-height);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header.sticky {
    height: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    height: 55px;
    width: auto;
    transition: var(--transition-fast);
}

.main-header.sticky .logo-wrapper img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-color);
}

/* --- Hamburger Menu (Mobile Only) --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION & QUICK QUOTE FORM
   ========================================================================== */
.hero-section {
    position: relative;
    background-image: linear-gradient(rgba(10, 31, 68, 0.75), rgba(10, 31, 68, 0.75)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--text-light);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- Floating Quick Quote Form --- */
.quote-form-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--text-dark);
    width: 100%;
    max-width: 420px;
    margin-left: auto;
}

.quote-form-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.1);
}

textarea.form-control {
    resize: none;
    height: 80px;
}

/* ==========================================================================
   ABOUT INTRO SECTION
   ========================================================================== */
.about-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.social-sharing-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.social-sharing-row span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.social-sharing-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-sharing-row a:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.about-intro-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    object-fit: cover;
    width: 100%;
    height: 400px;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.service-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.learn-more-link {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more-link:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   STATS COUNTER ROW
   ========================================================================== */
.stats-counter-band {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.why-us-item {
    display: flex;
    gap: 20px;
}

.why-us-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.why-us-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-us-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-us-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-rating {
    color: #ffb400;
    margin-bottom: 15px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 60px 0;
}

.cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--primary-color);
    color: #aeb9cc;
    padding: 70px 0 20px;
    border-top: 4px solid var(--accent-color);
}

.footer-widget h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
}

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

.newsletter-box p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--accent-hover);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-socials a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   PAGE BANNER & BREADCRUMBS
   ========================================================================== */
.page-banner {
    position: relative;
    background-image: linear-gradient(rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
}

.page-banner h1 {
    color: var(--text-light);
    font-size: 2.75rem;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumbs a {
    color: #aeb9cc;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
    color: var(--accent-color);
}

/* ==========================================================================
   PAGE SPECIFIC CSS
   ========================================================================== */

/* --- About Us Page --- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 20px;
}

.mission-card-icon {
    font-size: 2.25rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.mission-card p {
    color: var(--text-muted);
}

/* --- Services Page --- */
.full-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.full-service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition-medium);
}

.full-service-card:hover {
    transform: translateY(-8px);
}

.full-service-img-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.full-service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.full-service-card:hover .full-service-img-wrapper img {
    transform: scale(1.1);
}

.full-service-content {
    padding: 30px;
}

.full-service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.full-service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* --- Contact Us Page --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-card-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-card-details p,
.info-card-details a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.google-map {
    height: 450px;
    border: none;
    display: block;
    width: 100%;
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* --- Sticky Call Now Button (Mobile Only) --- */
.mobile-call-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-light);
    display: none; /* Show only via media queries */
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.mobile-call-sticky:hover {
    background-color: var(--accent-hover);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* --- Tablet Breakpoint (Max 1024px) --- */
@media screen and (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-section .container {
        flex-direction: column;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .quote-form-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro-image img {
        height: 350px;
    }

    .why-us-image img {
        height: 350px;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions a {
        width: 100%;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .full-services-grid {
        grid-template-columns: 1fr;
    }

    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Mobile Breakpoint (Max 767px) --- */
@media screen and (max-width: 767px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .top-bar {
        display: none; /* Hide top bar on mobile to save space */
    }

    /* Navigation Menu Toggle styles */
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 20px;
        transition: var(--transition-fast);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5deg, -5px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-counter-band {
        padding: 40px 0;
    }

    .stats-counter-band .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .stat-item .counter {
        font-size: 2.25rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .main-footer {
        padding: 50px 0 70px; /* Leave space at bottom for sticky call button */
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    /* Show Mobile Call Sticky Button */
    .mobile-call-sticky {
        display: flex;
    }

    /* Adjust WhatsApp float position up slightly so it doesn't overlap sticky call bar */
    .whatsapp-float {
        bottom: 70px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }
}
