/* ==========================================================================
   Modern Professional Premium Styles
   ========================================================================== */
:root {
    --brand-primary: #0f172a;
    /* Deep Navy / Slate 900 - Very professional */
    --brand-secondary: #1e293b;
    /* Slate 800 */
    --brand-accent: #2563eb;
    /* Royal Blue - Trustworthy, clean action color */

    --brand-light: #ffffff;
    --brand-bg: #f8fafc;
    /* Slate 50 - Very subtle off-white */

    --text-main: #1e293b;
    --text-muted: #64748b;

    /* Clean, professional geometry (not childishly round, not starkly sharp) */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-subtle: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
    --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.08);

    --transition: all 0.3s ease-in-out;
}

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

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

body {
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--text-main);
    background-color: var(--brand-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

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

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

/* ==========================================================================
   Header (Clean & Corporate)
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: var(--shadow-subtle);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 4px 8px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.lang-btn:hover {
    color: var(--brand-primary);
    background: #f1f5f9;
}

.lang-btn.active {
    color: var(--brand-accent);
    font-weight: 700;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: var(--brand-light);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-button:hover {
    background: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

@media (max-width: 768px) {
    .header-actions {
        gap: 12px;
    }

    .contact-button span {
        display: none;
    }

    .contact-button {
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        min-height: 44px;
        min-width: 40px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .lang-switch {
        gap: 4px;
    }
}

/* ==========================================================================
   Hero Section (Professional Full-Color)
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 140px;
    background-color: var(--brand-primary);
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4)), url('../images/hero-old.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--brand-light);
    text-align: center;
    box-shadow: inset 0 -100px 100px -50px #ffffff0a, 0 20px 40px rgba(0,0,0,0.1);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero {
        background-position: left center; /* Focus on the truck for mobile */
        padding: 120px 0 100px;
    }
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: var(--brand-light);
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: #22c55e;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    letter-spacing: 0.5px;
}

.hero-callback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #3b82f6;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.hero-tel:hover, .hero-callback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-tel:hover { background: #16a34a; }
.hero-callback-btn:hover { background: #2563eb; }

@keyframes phonePulse {
    0% { transform: scale(1); }
    15% { transform: scale(1.2) rotate(-15deg); }
    30% { transform: scale(1.2) rotate(15deg); }
    45% { transform: scale(1.2) rotate(-15deg); }
    60% { transform: scale(1.2) rotate(15deg); }
    75% { transform: scale(1); }
}

.hero-huge-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin: 24px 0 40px;
    letter-spacing: 2px;
    display: block;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-tel {
        font-size: 1.4rem;
        padding: 14px 28px;
    }
    .hero-tel i {
        font-size: 1.2rem;
    }
    .hero-huge-number {
        font-size: 3rem;
        margin: 20px 0 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-huge-number {
        font-size: 2.2rem;
        margin: 15px 0 25px;
    }
    .hero-tel {
        flex-direction: column; /* Stack 'Call Us' and 'Number' vertically */
        gap: 6px;
        font-size: 1.25rem;
        padding: 12px 24px;
        width: auto;
        min-width: 260px;
        display: inline-flex;
    }
    .hero-tel span {
        font-size: 0.9rem;
        opacity: 0.9;
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24; /* Gold/Yellow */
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.hero-trust span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 480px) {
    .hero-trust {
        margin-top: 20px;
    }
    .stars {
        font-size: 1rem;
    }
    .hero-trust span {
        font-size: 0.8rem;
    }
}
.btn-accent:hover {
    background: #1d4ed8;
    /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--brand-light);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
        word-wrap: break-word;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .btn {
        padding: 14px 28px;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Services Grid (Clean & Structured)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: var(--brand-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service-card {
    background: var(--brand-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

/* Full color photos restored */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 32px 28px;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   Trust / Stats Section
   ========================================================================== */
.trust-section {
    padding: 80px 0;
    background: var(--brand-primary);
    color: var(--brand-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--brand-light);
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

.stat-item p {
    font-size: 0.95rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--brand-secondary);
    color: var(--brand-light);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--brand-light);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 350px;
    font-size: 1rem;
}

.footer-cols h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--brand-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
    color: #94a3b8;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-light);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 32px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
    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: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #1ebe57;
}

/* ==========================================================================
   Floating Call Button (Mobile Only)
   ========================================================================== */
.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Opposite of WhatsApp for balance */
    width: 60px;
    height: 60px;
    background-color: var(--brand-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.05);
    background-color: #1d4ed8;
}

@media (min-width: 769px) {
    .call-float {
        display: none;
    }
}

/* ==========================================================================
   Elite Trust Block
   ========================================================================== */
.elite-trust-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--brand-accent);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--brand-primary);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 24px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--brand-accent);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--brand-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: #cbd5e1;
}

.review-stars {
    color: #f59e0b; /* Amber 500 */
    display: flex;
    gap: 4px;
}

.review-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brand-primary);
    line-height: 1.7;
}

.review-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= CALLBACK MODAL & FLOATING BUTTON ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    color: #1e293b;
    text-align: center;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 24px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #94a3b8;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover { color: #0f172a; }

#callbackPhone {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

/* ==========================================================================
   How It Works (Process) Section
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: var(--transition);
}

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.step-num {
    width: 50px;
    height: 50px;
    background: var(--brand-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card h3 { margin-bottom: 12px; font-weight: 700; color: var(--brand-primary); }
.step-card p { color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--brand-accent);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--brand-primary); }
.price-desc { color: var(--text-muted); margin-bottom: 24px; }
.price-value { font-size: 2.5rem; font-weight: 800; color: var(--brand-accent); margin-bottom: 30px; }

.price-features { list-style: none; padding: 0; text-align: left; margin-top: 20px; }
.price-features li { margin-bottom: 12px; color: var(--brand-secondary); display: flex; align-items: center; gap: 10px; }
.price-features i { color: #22c55e; }

/* ==========================================================================
   Google Reviews Enhancements
   ========================================================================== */
.google-badge-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars-static { color: #fbbf24; font-size: 1.4rem; letter-spacing: 2px; }

.google-icon-wrapper {
    margin-bottom: 15px;
}

.verified-tick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.verified-tick i { color: #3b82f6; font-size: 0.9rem; }

@media (max-width: 768px) {
    .pricing-grid { gap: 40px; }
    .price-card.popular { transform: scale(1); }
    .process-steps { flex-direction: column; }
}

#callbackPhone:focus { border-color: #22c55e; }

/* Unused floating callback styles removed */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 30% auto;
    }
}

/* ==========================================================================
   Pricing Card Actions
   ========================================================================== */
.price-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.price-actions .btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.price-actions .btn-call {
    background-color: #f1f5f9;
    color: var(--brand-primary);
    border: 1px solid #e2e8f0;
}

.price-actions .btn-call:hover {
    background-color: #e2e8f0;
}

.price-actions .btn-book {
    background-color: var(--brand-accent);
    color: white;
}

.price-actions .btn-book:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   Sticky Mobile Call-to-Action (Turnaround Fix v26.4.0)
   ========================================================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    gap: 10px;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s;
}

.sticky-cta-btn.call {
    background: #2563eb;
    color: white;
    animation: pulse-blue 2s infinite;
}

.sticky-cta-btn.whatsapp {
    background: #22c55e;
    color: white;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: grid;
    }
    body {
        padding-bottom: 70px; /* Space for the bar */
    }
    /* Hide floating buttons when bar is active */
    .whatsapp-float, .call-float {
        display: none !important;
    }
}
