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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    min-height: 48px;
    width: 100%;
    max-width: 280px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-brand {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.btn-brand:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.btn-large {
    padding: 16px 24px;
    font-size: 1rem;
    max-width: 320px;
}

/* Header - 2025 Standards */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: auto;
}

.logo:hover {
    /* Hover effect removed */
}

.logo i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav {
    display: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

.nav.active {
    display: flex;

}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    position: relative;
    font-size: 0.95rem;
}

.nav a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 80%;
}

.cta-button {
    display: none;
    margin-left: auto;
}

.mobile-menu-toggle {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-size: 1.25rem;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-menu-toggle:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle:active {
    /* Active state removed */
}



/* Header Scroll Effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Mobile Menu */
.nav.active {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav.active a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin: 0.25rem 0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.nav.active a:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Hero Section */
.hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 2rem;
}

.hero-content h2 {
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    align-items: center;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.trust-item i {
    color: #667eea;
    font-size: 1rem;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

/* What We Fix Section */
.what-we-fix {
    padding: 4rem 0;
    background: #f8f9fa;
}

.what-we-fix .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* Brands Section */
.brands {
    padding: 2rem 0;
    background: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.brand-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;

}

.brand-card:hover {
    /* Hover effect removed */
}

.brand-card img {
    width: 60px;
    height: auto;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.brand-card h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.brand-card p {
    margin-bottom: 1rem;
    color: #666;
}

/* Brand Logo Styles */
.brand-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.brand-logo img {
    width: 120px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Why Choose Us */
.why-choose-us {
    padding: 2rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Sony Page Specific Sections */
.sony-models, .sony-problems, .sony-services, .why-sony {
    padding: 2rem 0;
    background: white;
}

.sony-models {
    background: #f8f9fa;
}

.sony-problems {
    background: white;
}

.sony-services {
    background: #f8f9fa;
}

.why-sony {
    background: white;
}

/* LG Page Specific Sections */
.lg-models, .lg-problems, .lg-services, .why-lg {
    padding: 2rem 0;
    background: white;
}

.lg-models {
    background: #f8f9fa;
}

.lg-problems {
    background: white;
}

.lg-services {
    background: #f8f9fa;
}

.why-lg {
    background: white;
}

/* Samsung Page Specific Sections */
.samsung-models, .samsung-problems, .samsung-services, .why-samsung {
    padding: 2rem 0;
    background: white;
}

.samsung-models {
    background: #f8f9fa;
}

.samsung-problems {
    background: white;
}

.samsung-services {
    background: #f8f9fa;
}

.why-samsung {
    background: white;
}

/* Panasonic Page Specific Sections */
.panasonic-models, .panasonic-problems, .panasonic-services, .why-panasonic {
    padding: 2rem 0;
    background: white;
}

.panasonic-models {
    background: #f8f9fa;
}

.panasonic-problems {
    background: white;
}

.panasonic-services {
    background: #f8f9fa;
}

.why-panasonic {
    background: white;
}

.models-grid, .problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.model-card, .problem-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.model-card:hover, .problem-card:hover {
    transform: translateY(-5px);
}

.model-card i, .problem-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.model-card h3, .problem-card h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.model-card ul, .problem-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-card li, .problem-card li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    min-width: 24px;
}

.contact-item h4 {
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;

}

.contact-item a:hover {
    text-decoration: underline;
}

/* Location Info */
.location-info {
    text-align: center;
    margin-top: 2rem;
}

.location-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.location-info p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

/* Keywords Table */
.keywords-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.keywords-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
}

.keywords-table th,
.keywords-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.keywords-table th {
    background: #667eea;
    color: white;
    font-weight: 600;
}

.keywords-table tr:hover {
    background: #f8f9fa;
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: white;
    font-size: 1.2rem;
}

/* Contact Form */
.contact {
    padding: 2rem 0;
    background: white;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background: white;
}

.service-areas .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #667eea;
}

.area-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.area-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.area-item p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section {
    text-align: center;
}

.footer h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

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

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #667eea;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #999;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top.visible {
    display: flex;
}

/* Floating Buttons */
.whatsapp-float,
.call-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float {
    background: #25d366;
    color: white;
    bottom: 20px;
}

.call-float {
    background: #007bff;
    color: white;
    bottom: 90px;
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Ensure Sony page sections are always visible */
.sony-models, .sony-problems, .sony-services, .why-sony {
    opacity: 1 !important;
}

.sony-models .section-title,
.sony-problems .section-title,
.sony-services .section-title,
.why-sony .section-title {
    opacity: 1 !important;
}

.sony-models .models-grid,
.sony-problems .problems-grid,
.sony-services .services-grid,
.why-sony .features-grid {
    opacity: 1 !important;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error States */
.success {
    border-color: #28a745 !important;
    background-color: #f8fff9 !important;
}

.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Enhanced Button States */
.btn-primary:focus,
.btn-secondary:focus,
.btn-brand:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Form Input Enhancements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .call-float,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .logo {
        margin-right: auto;
        order: 1;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .cta-button {
        order: 2;
        margin-left: auto;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        padding: 1.25rem 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .nav {
        margin: 0;
    }
    
    .cta-button {
        margin-left: 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 1.75rem;
    }
    
    .nav {
        display: flex;
        width: auto;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    .cta-button {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero .container {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
        max-width: none;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
    }
    
    .btn-primary, .btn-secondary, .btn-brand {
        width: auto;
        max-width: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .models-grid, .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .what-we-fix {
        padding: 5rem 0;
    }
    
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .sony-models, .sony-problems, .sony-services, .why-sony {
        padding: 3rem 0;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .brands {
        padding: 60px 0;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .keywords-section {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .nav a {
        font-size: 1.05rem;
        padding: 0.875rem 1.5rem;
    }
    
    .nav a:hover {
        transform: translateY(-3px);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero .container {
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .models-grid, .problems-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .sony-models, .sony-problems, .sony-services, .why-sony {
        padding: 3rem 0;
    }
    
    .lg-models, .lg-problems, .lg-services, .why-lg {
        padding: 3rem 0;
    }
    
    .samsung-models, .samsung-problems, .samsung-services, .why-samsung {
        padding: 3rem 0;
    }
    
    .panasonic-models, .panasonic-problems, .panasonic-services, .why-panasonic {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .brands {
        padding: 3rem 0;
    }
    
    .why-choose-us {
        padding: 3rem 0;
    }
    
    .keywords-section {
        padding: 3rem 0;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .map-section {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
    
    .brand-card img {
        width: 80px;
    }
    
    .brand-logo img {
        width: 150px;
    }
}
