/*
Theme Name: Replaced Car Keyz - FIXED COLORS
Theme URI: https://replacedcarkeyz.ca
Description: FIXED - Hero badges darker (better contrast), WhatsApp button same size as Call button, all working!
Author: Replaced Car Keyz
Version: FIXED-COLORS
*/

:root {
    --primary-color: #FF6B00;
    --secondary-color: #1a1a1a;
    --accent-color: #FFD700;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --whatsapp-green: #25D366;
    --facebook-blue: #1877F2;
    --instagram-gradient: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px !important;
    width: auto;
    display: block;
}

.logo span {
    color: var(--text-light);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social-icons {
    display: flex !important;
    gap: 0.8rem;
    align-items: center;
}

.header-social-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.15) !important;
}

.header-social-icon:hover {
    transform: scale(1.15);
    background: var(--primary-color) !important;
}

.header-social-icon svg {
    fill: white !important;
    width: 18px !important;
    height: 18px !important;
}

.phone-number {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background: #e55f00;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    padding: 150px 2rem 100px;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b00" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-cta-buttons .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.whatsapp-button {
    background: var(--whatsapp-green);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    color: var(--primary-color);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255,107,0,0.15);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 2rem;
    background: white;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: var(--bg-light);
    height: 350px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
    color: #999;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.gallery-placeholder::before {
    content: '📸';
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* About Section */
.about-section {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1.2rem;
}

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

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.about-image {
    background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(255,107,0,0.3);
}

.about-image h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-image p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white !important;
}

.about-image .phone-display {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
}

.why-choose-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.why-choose-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s;
}

.why-choose-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-choose-card .feature-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    font-size: 2rem;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.why-choose-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 2rem;
    background: white;
}

.reviews-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.review-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.review-service {
    color: #888;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Service Area Section */
.service-area-section {
    padding: 100px 2rem;
    background: white;
}

.service-area-list {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.area-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.area-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,0,0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-item .feature-icon {
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 1.05rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #e55f00;
}

.social-icons {
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem !important;
    margin-top: 0.75rem;
}

.social-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem !important;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon svg {
    width: 24px !important;
    height: 24px !important;
    fill: white !important;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon.facebook {
    background: #1877F2 !important;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4) !important;
}

.social-icon.tiktok {
    background: #000000 !important;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.contact-form button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,0,0.3);
}

/* Footer */
.site-footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

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

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

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.sticky-call-btn, .sticky-whatsapp-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: all 0.3s;
}

.sticky-call-btn {
    background: var(--primary-color);
    color: white;
}

.sticky-whatsapp-btn {
    background: var(--whatsapp-green);
    color: white;
}

.sticky-call-btn:hover, .sticky-whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        padding: 0.5rem 1rem;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .logo img {
        max-height: 50px !important;
    }
    
    .header-right {
        order: 2;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.4rem;
        margin: 0;
    }
    
    .header-social-icons {
        display: flex !important;
        gap: 0.3rem;
    }
    
    .header-social-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .header-social-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .header-phone {
        display: flex;
        gap: 0.4rem;
        align-items: center;
    }
    
    .phone-number {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .cta-button {
        padding: 0.4rem 0.7rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        order: 3;
        flex-shrink: 0;
        position: static;
        margin-left: 0.3rem;
        padding: 0.3rem;
        font-size: 1.6rem;
    }
    
    /* FIXED MENU - FULL WIDTH */
    .main-nav {
        order: 4;
        position: fixed;
        left: 0;
        right: 0;
        top: 60px;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--secondary-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 998;
    }
    
    .main-nav.active {
        max-height: 500px !important;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.5rem;
        width: 100%;
        margin: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
    
    .header-phone {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .main-nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons .cta-button,
    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .header-phone {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .sticky-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .sticky-call-btn, .sticky-whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}