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

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC700;
    --light-yellow: #FFE44D;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary-yellow);
}

.logo-text strong {
    color: var(--primary-yellow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-yellow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--primary-yellow);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-yellow);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 16px;
}

.feature-icon {
    font-size: 24px;
    background: rgba(255, 215, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-icon {
    font-size: 20px;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-price {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.price-value sup {
    font-size: 28px;
}

.price-unit {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 5px;
}

.card-features {
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.card-features p {
    color: var(--black);
    font-weight: 600;
    margin: 8px 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-yellow);
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.section-badge.dark {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 700;
}

.btn-service {
    margin-top: 25px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 25px;
}

/* Why Reconditioned Section */
.why-reconditioned {
    padding: 100px 0;
    background: var(--light-gray);
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 36px;
    background: var(--primary-yellow);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

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

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.stat-card.highlight-stat {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    grid-column: 1 / -1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.highlight-stat .stat-number,
.highlight-stat .stat-label {
    color: var(--black);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.testimonial-rating {
    color: var(--primary-yellow);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
}

.author-name {
    font-weight: 700;
    color: var(--white);
}

.author-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Differentials Section */
.differentials {
    padding: 100px 0;
    background: var(--white);
}

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

.differential-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
}

.differential-item:hover {
    background: var(--light-gray);
}

.diff-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.differential-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.differential-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: var(--black);
    color: var(--primary-yellow);
    border-color: var(--black);
}

.cta-section .btn-primary:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.cta-section .btn-secondary:hover {
    background: var(--black);
    color: var(--primary-yellow);
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 600;
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-info {
    text-align: center;
    max-width: 800px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 20px;
}

.contact-image {
    margin-bottom: 50px;
}

.contact-image img {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
    align-items: center;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    max-width: 500px;
    width: 100%;
    padding: 20px;
}

.method-icon {
    font-size: 36px;
    background: var(--primary-yellow);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.method-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 20px;
}

.contact-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    transition: var(--transition);
    font-size: 18px;
}

.contact-link:hover {
    color: var(--dark-yellow);
}

.business-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-yellow);
    max-width: 500px;
    margin: 0 auto;
}

.business-hours h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.business-hours p {
    color: var(--medium-gray);
    margin: 12px 0;
    font-size: 18px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--primary-yellow);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        padding: 30px;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }

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

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-item {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 20px;
        min-width: 40px;
        padding: 8px;
    }

    .hero-card {
        padding: 30px 25px;
    }

    .card-header {
        font-size: 16px;
    }

    .price-value {
        font-size: 42px;
    }

    .price-value sup {
        font-size: 22px;
    }

    .services,
    .why-reconditioned,
    .process,
    .testimonials,
    .differentials,
    .cta-section,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-grid,
    .differentials-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .service-card,
    .differential-item {
        padding: 30px 20px;
    }

    .service-icon,
    .diff-icon {
        font-size: 36px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 15px;
    }

    .btn-service {
        font-size: 14px;
        padding: 10px 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

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

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 15px;
    }

    .testimonials-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 16px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 16px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-info > p {
        font-size: 16px;
    }

    .method-icon {
        font-size: 28px;
        width: 60px;
        height: 60px;
    }

    .method-content h4 {
        font-size: 20px;
    }

    .method-content p {
        font-size: 18px;
    }

    .contact-link {
        font-size: 16px;
    }

    .business-hours {
        padding: 25px 20px;
        max-width: 100%;
    }

    .business-hours h4 {
        font-size: 20px;
    }

    .business-hours p {
        font-size: 16px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-logo {
        font-size: 20px;
    }

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

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 26px;
    }
}
