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

/* CSS Variables for Theming */
:root {
    --bg-color: #f5f5f5;
    --text-color: #333333;
    --card-bg: #ffffff;
    --border-color: #e1e1e1;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2d2d2d;
    --border-color: #404040;
}

/* Theme Toggle Styles */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.theme-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-btn.active {
    background: var(--bg-color);
    color: white;
    transform: translateY(0);
}

.theme-btn i {
    margin-right: 8px;
}

/* Update existing sections to use CSS variables */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

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

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #34495e;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.company-name-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5DADE2;
}

.logo-text h1 {
    color: #5DADE2;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #5DADE2;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #0078D4;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 50%, rgba(174, 214, 241, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #5DADE2;
    color: white;
}

.btn-primary:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: #3498db;
    color: white;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
    font-size: 3rem;
    color: #5DADE2;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.service-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Repairs Section */
.repairs-special {
    padding: 80px 0;
    background: white;
}

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

.repair-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.repair-item:hover {
    transform: translateY(-5px);
}

.repair-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Special Offer */
.special-offer {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.offer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #5DADE2;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 50%, rgba(174, 214, 241, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 40px 0;
}

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

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

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

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

.footer-section a {
    color: #ffffff; /* White text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5DADE2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #ffffff; /* White text */
}

.slogan {
    font-style: italic;
    color: #ffffff; /* White text */
    margin-top: 0.5rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 50%, rgba(174, 214, 241, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-header .container h1 {
    color: #ffffff !important; /* Explicit white with importance */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header .container p {
    color: #ffffff !important; /* Explicit white with importance */
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Contact Page Styles */
.contact-main {
    padding: 60px 0;
}

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

.contact-info-section h2 {
    text-align: left;
    color: #000000; /* Black text */
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #5DADE2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25d366;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-details a {
    color: #5DADE2;
    text-decoration: none;
    font-weight: 500;
}

.location-info,
.hours-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-info h3,
.hours-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.address {
    display: flex;
    align-items: flex-start;
}

.address i {
    color: #e74c3c;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #2c3e50;
}

.time {
    color: #5DADE2;
    font-weight: 500;
}

/* Contact Form */
.form-container {
    background: #f0f0f0; /* Light grey background */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: left;
    color: #000000; /* Black text */
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #000000; /* Black borders */
    border-radius: 8px;
    font-size: 1rem;
    background: transparent; /* Transparent to show grey container */
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Quick Contact */
.quick-contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.quick-contact h2 {
    margin-bottom: 2rem;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quick-btn i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-call i {
    color: #5DADE2;
}

.quick-whatsapp i {
    color: #25d366;
}

.quick-email i {
    color: #3498db;
}

.quick-btn span {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.quick-btn small {
    color: #7f8c8d;
}

/* Services Page */
.services-hero {
    padding: 60px 0;
    background: #f8f9fa;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.main-services {
    padding: 80px 0;
    background: white;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-icon i {
    font-size: 3rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5DADE2;
    font-weight: bold;
}

.service-content ul li:last-child {
    border-bottom: none;
}

/* Repairs Detailed */
.repairs-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.repairs-detailed p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
}

.repairs-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.repair-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.repair-icon {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 2rem;
    text-align: center;
}

.repair-icon i {
    font-size: 2.5rem;
}

.repair-content {
    padding: 2rem;
}

.repair-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.repair-content p {
    text-align: left;
    margin-bottom: 0.5rem;
}

.repair-content strong {
    color: #5DADE2;
}

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

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #5DADE2;
    margin-bottom: 1rem;
}

.requirement-item i {
    font-size: 2.5rem;
    color: #5DADE2;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* TVs For Sale Page */
.tvs-hero {
    padding: 60px 0;
    background: #f8f9fa;
}

.filter-section {
    padding: 40px 0;
    background: white;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e74c3c;
    background: white;
    color: #e74c3c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e74c3c;
    color: white;
}

.tvs-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tvs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tv-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tv-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-placeholder {
    text-align: center;
    color: white;
}

.tv-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tv-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tv-badge.new {
    background: #27ae60;
    color: white;
}

.tv-badge.used {
    background: #f39c12;
    color: white;
}

.tv-badge.demo {
    background: #3498db;
    color: white;
}

.tv-info {
    padding: 1.5rem;
}

.tv-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tv-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tv-specs span {
    background: #ecf0f1;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #555;
}

.tv-specs i {
    margin-right: 0.25rem;
    color: #5DADE2;
}

.tv-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5DADE2;
}

.original-price {
    text-decoration: line-through;
    color: #95a5a6;
    margin-left: 0.5rem;
}

.tv-actions {
    display: flex;
    gap: 0.5rem;
}

.tv-actions .btn {
    flex: 1;
}

/* Price Ranges */
.price-ranges {
    padding: 80px 0;
    background: white;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.price-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5DADE2;
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    text-align: left;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 1.5rem;
}

.price-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-card ul li:last-child {
    border-bottom: none;
}

/* Trade In Info */
.trade-in-info {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.8) 0%, rgba(133, 193, 226, 0.8) 100%),
                url('background.png') center/cover;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
}

.trade-in-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.trade-in-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.trade-in-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trade-in-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #f39c12;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .tvs-grid {
        grid-template-columns: 1fr;
    }

    .tv-actions {
        flex-direction: column;
    }

    .trade-in-features {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text .tagline {
        font-size: 0.7rem;
    }
}

/* Mobile Navigation Styles */
.hamburger span {
    width: 25px;
    height: 3px;
    background: #0078D4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #0078D4;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

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

.mobile-nav-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mobile-logo-text h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.mobile-logo-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    min-height: 50px;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-action {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-nav-action:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.mobile-nav-action i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Service Dropdown Styles */
.service-selector {
    margin: 30px 0;
}

.dropdown-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.service-dropdown {
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-color);
    min-width: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dropdown:focus {
    outline: none;
    border-color: #5DADE2;
    box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.1);
}

/* Quick Service Cards */
.quick-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.service-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #5DADE2;
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: #5DADE2;
    margin-bottom: 15px;
}

.service-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design for Service Cards */
@media (max-width: 768px) {
    .quick-service-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card .service-icon {
        font-size: 2rem;
    }
    
    .dropdown-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-dropdown {
        min-width: auto;
        width: 100%;
    }
}

/* Navigation Dropdown Styles */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    height: 100%;
    box-sizing: border-box;
}

.nav-menu .dropdown-toggle:hover {
    color: #5DADE2;
}

.nav-menu .dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(93, 173, 226, 0.1);
    color: #5DADE2;
    padding-left: 25px;
}

.dropdown-menu a i {
    width: 20px;
    margin-right: 10px;
    color: #5DADE2;
}

/* Mobile Navigation Dropdown Styles */
.mobile-nav-dropdown {
    margin: 10px 0;
}

.mobile-nav-dropdown-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-sizing: border-box;
    min-height: 50px;
    text-align: left;
}

.mobile-nav-dropdown-toggle i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-nav-dropdown-toggle span {
    flex: 1;
}

.mobile-nav-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-dropdown-toggle i.dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.active i.dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 5px;
}

.mobile-nav-dropdown.active .mobile-nav-dropdown-menu {
    max-height: 500px;
}

.mobile-nav-dropdown-menu a {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.mobile-nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.mobile-nav-dropdown-menu a i {
    width: 20px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* Center descriptions in service sections */
.service-process .process-steps .step p,
.service-benefits .benefits-grid .benefit-item p,
.service-cta p {
    text-align: center;
}

.service-process .process-steps .step h3,
.service-benefits .benefits-grid .benefit-item h3,
.service-cta h2 {
    text-align: center;
}

.service-cta .cta-buttons {
    text-align: center;
}

/* Add space between service sections */
.service-process {
    margin-bottom: 60px;
}

.service-benefits {
    margin-top: 40px;
}

/* Add space between CTA and benefits sections */
.service-cta {
    margin-bottom: 60px;
    margin-top: 60px;
}

/* Fix icon and text alignment in benefits */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item i {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #5DADE2;
}

.benefit-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Center service requirements heading - more specific to override other styles */
.service-requirements .requirements-grid h2 {
    text-align: center !important;
    margin-bottom: 40px;
    color: var(--text-color);
}
