/* Additional styles specific to business-portraits page */

/* Hero Section with Background Image - ONLY for business-portraits page */
/* Note: This file is only loaded on business-portraits/index.html */
body .hero {
    background-image: url('../images/Hero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

/* Dark overlay for text readability - override default */
body .hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.55) 0%, rgba(26, 26, 26, 0.45) 100%) !important;
    z-index: 0 !important;
}

/* Ensure content is above overlay */
body .hero .container {
    position: relative;
    z-index: 1;
}

body .hero-content {
    position: relative;
    z-index: 1;
}

/* Make hero text white for better contrast */
body .hero h1,
body .hero .hero-subtitle,
body .hero-badge {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Urgency banner - make it stand out on dark background */
body .hero .urgency-banner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Container Narrow */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
}

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

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9375rem;
    color: var(--gray);
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 42, 42, 0.12);
}

.audience-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.audience-examples {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

/* Location Section */
.location-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(42, 42, 42, 0.08);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.location-info h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.location-info p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.location-info ul {
    margin: 0.5rem 0;
}

.location-info ul li {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.location-amenities {
    list-style: none;
    padding: 0;
}

.location-amenities li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--charcoal);
}

.location-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 20px rgba(42, 42, 42, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(42, 42, 42, 0.15);
}

.package-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.package-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.package-card .price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--charcoal);
    font-weight: 600;
    margin: 1rem 0;
}

.package-card .duration {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.package-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.package-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.package-card .deposit {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Navigation CTA */
.nav-cta {
    background: var(--charcoal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* Section Backgrounds */
.section-gray {
    background: #F9FAFB;
}

.section-petrol {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1A1A1A 100%);
    color: var(--white);
}

.section-petrol h2,
.section-petrol p {
    color: var(--white);
}

.section-petrol .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.section-petrol .btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* CTA Section Specific */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Checkmarks list */
.hero-checkmarks {
    list-style: none;
    margin: 3rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-checkmarks li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--charcoal);
}

.hero-checkmarks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Styles Grid */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.style-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(42, 42, 42, 0.06);
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(42, 42, 42, 0.12);
}

.style-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--beige);
    position: relative;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-content {
    padding: 2rem;
}

.style-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.style-content p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 2px 20px rgba(42, 42, 42, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(42, 42, 42, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--charcoal);
    margin: 1.5rem 0;
    line-height: 1;
}

.pricing-duration {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0 3rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.pricing-deposit {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(42, 42, 42, 0.04);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question span:first-child {
    font-weight: 500;
    color: var(--charcoal);
    font-size: 1.0625rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #FEF3E2 0%, #FAE8C8 100%);
    border-left: 4px solid var(--gold);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.urgency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.urgency-text {
    flex: 1;
    color: var(--charcoal);
}

.urgency-text strong {
    font-weight: 600;
    color: var(--gold-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    opacity: 0.9;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1A1A1A 100%);
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-section .btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* ===================================
   RESPONSIVE - MOBILE OPTIMIZATION
   =================================== */

/* Tablets */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Hero Stats - stack vertically */
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .hero-stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.875rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Audience Grid - single column */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
    
    .audience-emoji {
        font-size: 2.5rem;
    }
    
    /* Features, Styles, Stats - single column */
    .features-grid,
    .styles-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .style-card {
        margin-bottom: 1rem;
    }
    
    .style-content {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    /* Pricing Grid - single column, no scale */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        border: 2px solid var(--gold);
    }
    
    .pricing-card:hover {
        transform: translateY(-3px);
    }
    
    .pricing-badge {
        top: -12px;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .pricing-name {
        font-size: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2.75rem;
        margin: 1rem 0;
    }
    
    .pricing-duration {
        font-size: 0.875rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .package-btn {
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    /* Location Section */
    .location-box {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .location-info h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .location-info:first-child h4:first-of-type {
        margin-top: 0;
    }
    
    .location-info p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .location-info ul li {
        font-size: 0.9375rem;
    }
    
    .location-amenities li {
        padding: 0.4rem 0;
        font-size: 0.9375rem;
    }
    
    /* FAQ - optimized for mobile reading */
    .faq-container {
        margin-top: 2rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 0.9375rem;
    }
    
    .faq-question span:first-child {
        font-size: 0.9375rem;
        line-height: 1.4;
        padding-right: 2rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1.25rem;
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Urgency Banner */
    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 8px;
    }
    
    .urgency-icon {
        font-size: 1.75rem;
    }
    
    .urgency-text {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Checkmarks - centered on mobile */
    .hero-checkmarks {
        text-align: center;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-checkmarks li {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.875rem;
    }
    
    /* CTA Section */
    .cta-section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn {
        font-size: 0.9375rem;
    }
    
    /* Container Narrow on Mobile */
    .container-narrow {
        max-width: 100%;
        padding: 0 1.25rem;
    }
    
    /* Package Cards - better mobile layout */
    .package-card h3 {
        font-size: 1.375rem;
    }
    
    .package-card .price {
        font-size: 2.5rem;
    }
    
    .package-card ul {
        margin: 1.25rem 0;
    }
}

/* Small phones - extra optimization */
@media (max-width: 480px) {
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .pricing-price {
        font-size: 2.25rem;
    }
    
    .pricing-name {
        font-size: 1.25rem;
    }
    
    .location-box {
        padding: 1.5rem 1rem;
    }
    
    .location-info h4 {
        font-size: 0.9375rem;
    }
    
    .faq-question {
        padding: 1rem 0.875rem;
    }
    
    .faq-answer-content {
        padding: 0 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .audience-card {
        padding: 1.25rem;
    }
    
    .audience-emoji {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .urgency-banner {
        padding: 0.875rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   WhatsApp Integration Styles
   ============================================ */

/* WhatsApp Soft Exit Block */
.whatsapp-soft-exit {
    background: #FAF7F2;
    border: 1.5px solid #E8E3DA;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-soft-exit-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 98, 0.3);
}

.soft-exit-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0 0 0.75rem 0;
}

.soft-exit-text {
    font-size: 0.9375rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid #2A2A2A;
    color: #2A2A2A;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-whatsapp:hover {
    background: #2A2A2A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 42, 42, 0.15);
}

.btn-whatsapp-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.btn-whatsapp-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #C9A962;
    color: #2A2A2A;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(201, 169, 98, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(201, 169, 98, 0.5);
    width: auto;
    padding: 0 1.5rem;
    border-radius: 30px;
}

.whatsapp-float svg {
    flex-shrink: 0;
}

.whatsapp-float-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-left: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    max-width: 150px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-soft-exit {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .soft-exit-headline {
        font-size: 1rem;
    }

    .soft-exit-text {
        font-size: 0.875rem;
    }

    .btn-whatsapp {
        width: 100%;
        padding: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float:hover {
        width: 56px;
        padding: 0;
        border-radius: 50%;
    }

    .whatsapp-float-label {
        display: none;
    }
}

/* Ensure floating button doesn't overlap cookie banner */
@media (max-width: 768px) {
    body.ccm19-modal-open .whatsapp-float {
        bottom: 200px;
    }
}
