/*
Theme Name: Cerrajeros Meliana Ferrovia
Description: Tema profesional para servicios de cerrajería en Meliana, Valencia. Diseño limpio, intuitivo y completamente responsive con funcionalidad para cambiar fácilmente el teléfono.
Author: Desarrollador Web
Version: 1.1
Text Domain: cerrajeros-meliana-ferrovia
*/

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Header Mejorado */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1f2937;
    flex: 1;
}

.logo-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    fill: #2563eb;
}

.site-title {
    font-size: 22px;
    font-weight: bold;
    color: #1f2937;
}

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

.urgency-badge {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.urgency-badge i {
    margin-right: 6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.phone-button {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    white-space: nowrap;
}

.phone-button:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.phone-button i {
    font-size: 16px;
}

/* Hero Section Mejorada */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 100px 0;
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #fbbf24;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.6);
    text-decoration: none;
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
    text-decoration: none;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section Mejorada */
.services-section {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.service-content h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.service-time, .service-guarantee {
    font-size: 14px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    background: #dcfce7;
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6b7280;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background: white;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.coverage-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.coverage-text p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.coverage-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Contact Section Profesional Mejorada */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.method-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.method-info h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.method-info .highlight {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.method-info .description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 5px 0 0 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-emergency {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-emergency:hover::before {
    left: 100%;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    text-decoration: none;
    color: white;
}

.btn-whatsapp-contact {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp-contact:hover::before {
    left: 100%;
}

.btn-whatsapp-contact:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: white;
}

/* Footer */
.site-footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

/* SEO Content Section */
.seo-content-section {
    padding: 80px 0;
    background: #f9fafb;
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content h2 {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin: 40px 0 24px 0;
    line-height: 1.3;
}

.main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 32px 0 16px 0;
}

.main-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 24px 0 12px 0;
}

.main-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.main-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.main-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.highlight-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2563eb;
}

.highlight-item h4 {
    color: #1f2937;
    margin-bottom: 12px;
}

.emergency-situations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.situation-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
}

.situation-item h4 {
    color: #dc2626;
    margin-bottom: 12px;
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.area-column {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.area-column h4 {
    color: #1f2937;
    margin-bottom: 16px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 8px;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 4px 0;
    border-bottom: 1px solid #e5e7eb;
}

.area-column li:last-child {
    border-bottom: none;
}

.services-list {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 24px 0;
}

.services-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-content .stars {
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #374151;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-author small {
    color: #9ca3af;
    font-size: 12px;
}

/* Enlaces externos con estilo */
.main-content a[href^="http"] {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.main-content a[href^="http"]:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* RESPONSIVE DESIGN MEJORADO */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .contact-content h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header responsive */
    .header-content {
        height: 60px;
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    
    .urgency-badge {
        display: none !important;
    }
    
    .phone-button {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    /* Hero responsive */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 12px;
    }
    
    .feature-item {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        justify-content: center;
    }
    
    /* Contact section responsive */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 0 15px;
    }
    
    .contact-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .contact-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-method {
        padding: 20px;
        border-radius: 15px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .method-info h3 {
        font-size: 18px;
    }
    
    .method-info .highlight {
        font-size: 16px;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-emergency,
    .btn-whatsapp-contact {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        justify-content: center;
    }
    
    /* Services responsive */
    .services-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    /* Content responsive */
    .main-content {
        padding: 0 15px;
    }
    
    .main-content h2 {
        font-size: 24px;
    }
    
    .main-content h3 {
        font-size: 20px;
    }
    
    .content-highlights,
    .emergency-situations {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .coverage-areas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .site-title {
        font-size: 16px;
    }
    
    .phone-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn-primary,
    .btn-whatsapp,
    .btn-emergency,
    .btn-whatsapp-contact {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .contact-content h2 {
        font-size: 24px;
    }
    
    .contact-method {
        padding: 16px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .main-content {
        padding: 0 10px;
    }
}
