/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a1628;
    --dark-secondary: #152238;
    --dark-card: #1a2d47;
    --dark-accent: #23405c;
    --primary: #4A90E2;
    --primary-light: #6BA3E8;
    --primary-dark: #1E5A8A;
    --primary-bright: #9BC4F5;
    --primary-cyan: #00D4FF;
    --accent: #4A90E2;
    --accent-red: #E74C3C;
    --text-light: #E8F0F8;
    --text-muted: #A8C5E0;
    --gradient-1: linear-gradient(135deg, #4A90E2 0%, #1E5A8A 100%);
    --gradient-2: linear-gradient(135deg, #6BA3E8 0%, #357ABD 100%);
    --gradient-dark: linear-gradient(135deg, #152238 0%, #0a1628 100%);
    --gradient-blue: linear-gradient(135deg, #9BC4F5 0%, #4A90E2 50%, #1E5A8A 100%);
    --gradient-logo: linear-gradient(135deg, #9BC4F5 0%, #4A90E2 30%, #357ABD 60%, #1E5A8A 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-icon {
    height: 45px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-style: italic;
    transform: skewX(-5deg);
}

.logo-mob {
    color: #9BC4F5;
}

.logo-fix {
    color: #1E5A8A;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 20px;
}

.theme-toggle:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: var(--primary);
    transform: scale(1.1);
}

.theme-icon {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-icon-moon {
    opacity: 0;
    transform: rotate(90deg);
}

body[data-theme="light"] .theme-icon-sun {
    opacity: 0;
    transform: rotate(90deg);
}

body[data-theme="light"] .theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Light Theme */
body[data-theme="light"] {
    --dark-bg: #f5f7fa;
    --dark-secondary: #e8ecf1;
    --dark-card: #ffffff;
    --dark-accent: #e0e6ed;
    --text-light: #1a2d47;
    --text-muted: #4a5568;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

body[data-theme="light"] .navbar {
    background: rgba(245, 247, 250, 0.95);
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .nav-links a {
    color: var(--text-light);
}

body[data-theme="light"] .nav-links a:hover {
    color: var(--primary);
}

body[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.85) 0%, rgba(232, 236, 241, 0.80) 50%, rgba(224, 230, 237, 0.75) 100%);
}

body[data-theme="light"] .about {
    background: var(--dark-secondary);
}

body[data-theme="light"] .services {
    background: var(--dark-bg);
}

body[data-theme="light"] .gallery {
    background: var(--dark-secondary);
}

body[data-theme="light"] .why-choose {
    background: var(--dark-bg);
}

body[data-theme="light"] .contact {
    background: var(--dark-secondary);
}

body[data-theme="light"] .footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

body[data-theme="light"] .service-card,
body[data-theme="light"] .benefit-item,
body[data-theme="light"] .stat-item,
body[data-theme="light"] .contact-item,
body[data-theme="light"] .gallery-item,
body[data-theme="light"] .mobile-repair-item {
    background: var(--dark-card);
    border: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .price-list li {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.15);
}

body[data-theme="light"] .price-list li:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: var(--primary);
}

body[data-theme="light"] .accordion-header {
    background: var(--dark-card);
    border: 1px solid rgba(74, 144, 226, 0.2);
    color: var(--text-light);
}

body[data-theme="light"] .accordion-item.active .accordion-header {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary);
}

body[data-theme="light"] .theme-toggle {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.3);
}

body[data-theme="light"] .theme-icon {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 100px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1601972602237-8c79241f8d6a?w=1920&q=90&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(21, 34, 56, 0.80) 50%, rgba(30, 90, 138, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo-container {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-logo-icon-only {
    margin-bottom: 30px;
}

.hero-logo-icon {
    height: 180px;
    width: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(74, 144, 226, 0.4));
    object-fit: contain;
}

.hero-logo-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-logo-icon-text {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(74, 144, 226, 0.3));
    object-fit: contain;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: none;
    animation: fadeInUp 0.8s ease;
    font-style: italic;
    transform: skewX(-3deg);
}

.hero-mob {
    color: #9BC4F5;
}

.hero-fix {
    color: #1E5A8A;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    animation: fadeInUp 0.8s ease 0.6s both;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6);
    background: var(--gradient-2);
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-light);
    font-weight: 700;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* About Section */
.about {
    background: var(--dark-secondary);
}

.section-logo {
    text-align: center;
    margin-bottom: 30px;
}

.section-logo-icon {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(74, 144, 226, 0.3));
    opacity: 0.8;
    object-fit: contain;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Mobile Repair Section */
.mobile-repair {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.mobile-repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mobile-repair-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 300px;
}

.mobile-repair-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.4);
}

.mobile-repair-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mobile-repair-item:hover img {
    transform: scale(1.1);
}

.mobile-repair-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 50%, transparent 100%);
    padding: 30px 25px 25px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mobile-repair-item:hover .mobile-repair-overlay {
    transform: translateY(0);
}

.mobile-repair-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-repair-overlay p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--dark-bg);
}

.brand-logos-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 20px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.brand-logos-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 30px;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    border-color: var(--primary);
}

.brand-logo-display {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    transition: all 0.3s ease;
}

.brand-logo-item:hover .brand-logo-display {
    transform: scale(1.1);
    filter: brightness(0) invert(1) opacity(1);
}

.brand-logo-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

body[data-theme="light"] .brand-logos-section {
    background: rgba(74, 144, 226, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

body[data-theme="light"] .brand-logo-item {
    background: var(--dark-card);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

body[data-theme="light"] .brand-logo-display {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .brand-logo-item:hover .brand-logo-display {
    filter: brightness(0) invert(0) opacity(1);
    transform: scale(1.1);
}

.free-estimate-banner {
    background: var(--gradient-blue);
    border-radius: 20px;
    padding: 30px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.4);
    animation: fadeInUp 0.8s ease;
    border: 1px solid rgba(155, 196, 245, 0.3);
}

.free-estimate-content {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
}

.free-estimate-content svg {
    width: 50px;
    height: 50px;
    stroke: white;
    flex-shrink: 0;
}

.free-estimate-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.free-estimate-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Tabs Styles */
.tabs-container {
    margin-top: 50px;
}

.tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--dark-card);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.tab-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Tabs */
.brand-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-btn {
    padding: 12px 25px;
    background: var(--dark-card);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.brand-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.brand-btn.active {
    background: var(--gradient-2);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.brand-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.brand-content.active {
    display: block;
}

/* Brand Accordion */
.brand-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(74, 144, 226, 0.05);
}

.accordion-item.active .accordion-header {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-light);
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: transparent;
    filter: brightness(0) invert(1) opacity(0.95);
}

.brand-logo-iphone {
    filter: brightness(0) invert(1) opacity(0.95);
}

.brand-logo-samsung {
    filter: brightness(0) invert(1) opacity(0.95);
}

.brand-logo-xiaomi {
    filter: brightness(0) invert(1) opacity(0.95);
}

.brand-logo-motorola {
    filter: brightness(0) invert(1) opacity(0.95);
}

.accordion-item.active .brand-logo {
    transform: scale(1.15);
    filter: brightness(0) invert(1) opacity(1);
}

.accordion-item.active .brand-logo-iphone {
    filter: brightness(0) invert(1) opacity(1);
}

.accordion-item.active .brand-logo-samsung {
    filter: brightness(0) invert(1) opacity(1);
}

.accordion-item.active .brand-logo-xiaomi {
    filter: brightness(0) invert(1) opacity(1);
}

.accordion-item.active .brand-logo-motorola {
    filter: brightness(0) invert(1) opacity(1);
}

/* Light theme - original colors for brand logos */
body[data-theme="light"] .brand-logo {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .brand-logo-iphone {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .brand-logo-samsung {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .brand-logo-xiaomi {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .brand-logo-motorola {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .accordion-item.active .brand-logo {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .accordion-item.active .brand-logo-iphone {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .accordion-item.active .brand-logo-samsung {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .accordion-item.active .brand-logo-xiaomi {
    filter: brightness(0) invert(0) opacity(1);
}

body[data-theme="light"] .accordion-item.active .brand-logo-motorola {
    filter: brightness(0) invert(0) opacity(1);
}

.accordion-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    stroke: var(--primary-light);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content[data-brand-content] {
    padding: 0 25px 25px;
}

/* Price Table */
.price-table {
    background: transparent;
    border-radius: 0;
    padding: 25px 0;
    border: none;
    box-shadow: none;
}

.accordion-content .price-table {
    padding: 25px 0;
}

.price-table h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.service-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.price-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.price-list li {
    padding: 20px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.price-list li:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.phone-model {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.competitor-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.competitor-price::before {
    content: "✗";
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.1rem;
}

.our-price {
    font-size: 1.1rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.our-price::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(76, 175, 80, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.our-price strong {
    color: var(--primary-bright);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(155, 196, 245, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 600;
}

.price-list {
    list-style: none;
}

.price-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-list li:last-child {
    border-bottom: none;
}

.price {
    font-weight: 700;
    color: var(--primary-light);
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose h2 {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.benefits-grid .benefit-item:nth-child(5) {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .benefits-grid .benefit-item:nth-child(5) {
        grid-column: span 1;
    }
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: var(--dark-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
}

.contact-item a:hover {
    color: var(--primary-bright);
}

.service-area {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 20px;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(30, 90, 138, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 0;
}

.map-container:hover iframe {
    filter: grayscale(5%) brightness(0.95) contrast(1.05);
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    pointer-events: none;
}

.map-city-marker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.city-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.8);
    animation: pulse 2s infinite;
}

.map-city-marker span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.map-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 196, 245, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.final-cta h2 {
    color: white;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: var(--gradient-dark);
    color: var(--text-muted);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    transform: skewX(-5deg);
}

.footer-mob {
    color: #9BC4F5;
}

.footer-fix {
    color: #1E5A8A;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.footer-section p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-section a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-bright);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background: var(--gradient-1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
    }

    .free-estimate-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .logo-icon {
        height: 35px;
        width: auto;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .hero-logo-icon {
        height: 120px;
        width: auto;
    }

    .hero-logo-with-text {
        flex-direction: column;
        gap: 15px;
    }

    .hero-logo-icon-text {
        height: 60px;
        width: auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .brand-tabs {
        flex-direction: column;
    }

    .brand-btn {
        width: 100%;
        text-align: center;
    }

    .price-list {
        grid-template-columns: 1fr;
    }

    .price-table {
        padding: 25px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .brand-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-logo-display {
        width: 60px;
        height: 60px;
    }

    .mobile-repair-grid {
        grid-template-columns: 1fr;
    }

    .mobile-repair-item {
        height: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 80px;
    }

    .hero-image {
        background-attachment: scroll;
    }

    .map-overlay-info {
        position: static;
        margin-top: 15px;
        justify-content: center;
    }

    .price-comparison {
        gap: 6px;
    }

    .competitor-price,
    .our-price {
        font-size: 0.85rem;
    }

    .our-price strong {
        font-size: 1.05rem;
    }

    .phone-model {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .theme-toggle {
        width: 45px;
        height: 45px;
        margin-left: 0;
        margin-top: 10px;
    }

    .theme-icon {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 20px;
    }

    .service-card,
    .benefit-item,
    .contact-item {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .brand-logos-section {
        padding: 30px 15px;
    }

    .brand-logos-section h3 {
        font-size: 1.2rem;
    }

    .brand-logos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-logo-item {
        padding: 20px;
    }

    .brand-logo-display {
        width: 50px;
        height: 50px;
    }

    .free-estimate-content h3 {
        font-size: 1.4rem;
    }

    .free-estimate-content p {
        font-size: 1rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo span {
        font-size: 1.3rem;
    }

    .hero-logo-icon {
        width: 60px;
        height: 60px;
    }

    .price-list li {
        padding: 15px;
    }

    .price-comparison {
        gap: 6px;
    }

    .competitor-price {
        font-size: 0.8rem;
    }

    .our-price {
        font-size: 0.95rem;
    }

    .our-price strong {
        font-size: 1rem;
    }

    .phone-model {
        font-size: 0.95rem;
    }

    .our-price::before {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }

    .mobile-repair {
        padding: 60px 20px;
    }

    .mobile-repair-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-repair-item {
        height: 220px;
    }

    .mobile-repair-overlay {
        padding: 20px 15px 15px;
    }

    .mobile-repair-overlay h4 {
        font-size: 1.2rem;
    }

    .mobile-repair-overlay p {
        font-size: 0.9rem;
    }
}
