:root {
    --primary-color: #0d47a1;
    --primary-light: #1565c0;
    --accent-color: #ff9800;
    --accent-hover: #f57c00;
    --dark-color: #1a202c;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    padding-bottom: 60px;
    /* Space for mobile sticky footer */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: #d1d5db;
    font-size: 0.85rem;
}

.top-bar a {
    color: #d1d5db;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.floating-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
}

.popup-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Continuous Floating Animation */
    animation: floatBounce 3s ease-in-out infinite;
}

/* Staggered animation delay for floating effect */
.popup-btn.whatsapp {
    background-color: #25D366;
    animation-delay: 0s;
}

.popup-btn.call {
    background-color: #0d6efd;
    animation-delay: 0.4s;
}

/* Continuous Pulse Ring Waves (Outer Animation) */
.popup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    animation: pulseWave 2s infinite;
}

.whatsapp::before {
    background-color: rgba(37, 211, 102, 0.6);
}

.call::before {
    background-color: rgba(13, 110, 253, 0.6);
}

/* Hover Animations */
.popup-btn:hover {
    transform: scale(1.18) rotate(5deg);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.popup-btn:hover i {
    animation: shakeIcon 0.5s ease-in-out;
}

/* ==================== KEYFRAMES ==================== */

/* Floating Up & Down */
@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Expanding Glow Pulse Wave */
@keyframes pulseWave {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Icon Shake Effect on Hover */
@keyframes shakeIcon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }
}

/* Service Cards Hover Effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}



/* Header Navbar */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    font-weight: 500;
    color: #4a5568 !important;
    margin: 0 6px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-custom-quote {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-custom-quote:hover {
    background-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(5, 34, 78, 0.74), rgba(3, 37, 76, 0.85)),
        url('./Asset/head.jpeg') center / cover no-repeat;
    color: #fff;
    padding: 70px 0;
    position: relative;
    
    /* Responsiveness aur behtareen display ke liye yeh properties add karein */
    background-size: cover;       /* Image ko poore area mein fit karta hai */
    background-position: center;  /* Image ko hamesha center mein rakhta hai */
    background-attachment: scroll; /* Mobile devices par performance achhi rakhta hai */
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0; /* Mobile screens par padding kam kar di hai */
        background-position: center;
    }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.badge-trust {
    background-color: var(--accent-color);
    color: #000;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

/* Quote Form Card */
.quote-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #333;
}

.quote-card h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.15);
}



/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h6 {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title h2 {
    font-weight: 800;
    color: var(--dark-color);
    font-size: 2.2rem;
}

.title-line {
    width: 70px;
    height: 4px;
    background: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}




/* about the company */
.blog-section {
    background-color: #f8fafc;
    padding: 60px 0;
    color: #334155;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.dropcap::first-letter {
    font-size: 3.2rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: #0d6efd;
}

/* MAIN UNIQUE SECTION */
.se-modern-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Glowing Background Circles */
.se-modern-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(243, 112, 33, 0.15);
    filter: blur(100px);
    border-radius: 50%;
}

.se-modern-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(13, 110, 253, 0.15);
    filter: blur(100px);
    border-radius: 50%;
}

/* Section Badge */
.se-badge {
    background: rgba(243, 112, 33, 0.15);
    color: #f37021;
    border: 1px solid rgba(243, 112, 33, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.se-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Left Content Glass Card */
.se-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.se-glass-card.show {
    opacity: 1;
    transform: translateY(0);
}

.se-highlight-text {
    color: #38bdf8;
    font-weight: 600;
}

/* Right Grid Feature Box */
.se-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.se-feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

.se-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #0d6efd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.se-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(243, 112, 33, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.se-feature-card:hover::before {
    opacity: 1;
}

.se-icon-wrapper {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.2), rgba(13, 110, 253, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f37021;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.se-feature-card:hover .se-icon-wrapper {
    transform: rotate(-8deg) scale(1.1);
    color: #38bdf8;
}

.se-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.se-card-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Stats Strip */
.se-stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.se-stat-item:last-child {
    border-right: none;
}

.se-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f37021;
}

.se-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .se-title {
        font-size: 1.8rem;
    }

    .se-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .se-stat-item:last-child {
        border-bottom: none;
    }
}

/* main section  */
.single-mover-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.service-card {
    border: none;
    border-radius: 70px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-item i {
    color: #198754;
    font-size: 18px;
    margin-right: 10px;
}

.city-badge {
    background-color: #e2e8f0;
    color: #334155;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin: 3px;
    font-weight: 500;
}

.cta-box {
    background-color: #0f172a;
    border-radius: 12px;
}

/* Feature Cards */
.feature-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    border-bottom: 3px solid transparent;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 71, 161, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
}

/* Services Grid */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-body {
    padding: 22px;
}

.service-body h4 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Work Process */
.shifting-process-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Header */
.sp-subtitle {
    color: #f37021;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.sp-title {
    color: #0f172a;
    font-weight: 800;
    font-size: 2.3rem;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.sp-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #f37021;
    border-radius: 10px;
}

/* Steps Container & Horizontal Connector Line */
.sp-process-wrapper {
    position: relative;
}

/* Animated Dashed Connection Line */
.sp-process-line {
    position: absolute;
    top: 75px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: repeating-linear-gradient(to right, #f37021 0, #f37021 12px, transparent 12px, transparent 24px);
    z-index: 1;
    opacity: 0.4;
}

/* Step Card Box */
.sp-step-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
    height: 100%;
}

/* Staggered Animation Trigger Class */
.sp-step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect for Card */
.sp-step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(243, 112, 33, 0.15);
    border-color: rgba(243, 112, 33, 0.3);
}

/* Step Badge (Circle Number) */
.sp-number-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.35);
    position: relative;
    transition: all 0.4s ease;
}

/* Glowing Pulse Animation on Badge */
.sp-number-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed #f37021;
    border-radius: 50%;
    animation: spinCircle 12s linear infinite;
    opacity: 0.6;
}

@keyframes spinCircle {
    100% {
        transform: rotate(360deg);
    }
}

.sp-step-card:hover .sp-number-badge {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

/* Icons Inside Card */
.sp-step-icon {
    font-size: 1.5rem;
    color: #f37021;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.sp-step-card:hover .sp-step-icon {
    transform: scale(1.2);
}

/* Title & Paragraph */
.sp-card-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.sp-card-desc {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sp-process-line {
        display: none;
        /* Hide line on tablets and mobile for clean stacked view */
    }

    .sp-title {
        font-size: 1.8rem;
    }

    .sp-step-card {
        margin-bottom: 20px;
    }
}

/* Estimator Section */
.calculator-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.price-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

/* Testimonials */
.se-reviews-light-section {
    background-color: #f8fafc;
    /* Subtle light background */
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Subtitle & Title */
.se-review-subtitle {
    background-color: rgba(243, 112, 33, 0.1);
    color: #f37021;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.se-review-title {
    color: #0f172a;
    font-size: 2.3rem;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 50px;
}

/* Review Card Design */
.se-review-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 30px 25px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
}

/* Animate in on scroll */
.se-review-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Animation */
.se-review-card:hover {
    transform: translateY(-12px);
    border-color: rgba(243, 112, 33, 0.4);
    box-shadow: 0 20px 40px rgba(243, 112, 33, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Background Quote Watermark */
.se-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: #f1f5f9;
    transition: color 0.3s ease, transform 0.3s ease;
}

.se-review-card:hover .se-quote-icon {
    color: rgba(243, 112, 33, 0.15);
    transform: scale(1.1) rotate(-10deg);
}

/* Stars Rating */
.se-stars {
    color: #ffb703;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.se-stars i {
    margin-right: 2px;
    transition: transform 0.2s ease;
}

.se-review-card:hover .se-stars i {
    display: inline-block;
    animation: pulseStar 0.4s ease infinite alternate;
}

@keyframes pulseStar {
    100% {
        transform: scale(1.2);
    }
}

/* Route Tag */
.se-route-tag {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

/* Review Body Text */
.se-review-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* User Profile Footer */
.se-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

/* User Avatar Image Style */
.se-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f37021;
    box-shadow: 0 4px 10px rgba(243, 112, 33, 0.2);
    transition: transform 0.3s ease;
}

.se-review-card:hover .se-user-img {
    transform: scale(1.08);
}

.se-user-name {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    margin: 0;
}

.se-user-status {
    font-size: 0.78rem;
    color: #16a34a;
    /* Green verified tag */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .se-review-title {
        font-size: 1.8rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #a0aec0;
    padding-top: 60px;
    padding-bottom: 20px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-bar a {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-call-sticky {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-whatsapp-sticky {
    background-color: #25d366;
    color: #fff;
}