/* Reset and Base Styles */
:root {
    /* Blue Theme Palette */
    --accent-color: #4682B4;      /* Steel Blue - Professional & Trustworthy */
    --accent-hover: #36648B;      /* Darker Blue for hover states */
    --accent-light: #87CEEB;      /* Sky Blue - Fresh & Clean (Original Logo Color) */
    --accent-faint: #F0F8FF;      /* Alice Blue - Very light background tint */
    
    --bg-primary: #FDFCFA;
    --bg-secondary: #F8F9FA;      /* Cool gray/blue tint for secondary backgrounds */
    --text-primary: #2C3E50;      /* Dark Blue-Gray text instead of harsh black */
    --text-secondary: #546E7A;    /* Medium Blue-Gray */
    --text-muted: #7F8C8D;        /* Muted Gray */
    --border-color: #E1E8ED;      /* Light Blue-Gray border */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo svg {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu .phone-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.nav-menu .phone-link:hover {
    color: var(--accent-color);
}

.btn-book-nav {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.2);
}

.btn-book-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 130, 180, 0.3);
}

/* Dropdown Styles */
.nav-item {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-item:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem;
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    transition: all 0.15s;
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--accent-color) !important;
    padding-left: 1.5rem;
}

.dropdown-header {
    padding: 0.5rem 1.25rem 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 0.35rem;
}

.dropdown-header:first-child {
    border-top: none;
    margin-top: 0;
}

/* Hero */
.hero {
    padding: 6rem 0 5rem;
    background: var(--bg-primary);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.fade-line {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.fade-line-big {
    display: block;
    font-size: 3.5rem;
    color: var(--text-primary);
}

.fade-line-big em {
    font-style: italic;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.services-section h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.rankings-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.rank-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-image-placeholder {
    height: 200px;
    background-color: var(--bg-primary);
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rank-content {
    padding: 1.5rem;
}

.rank-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.rank-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.rank-content li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
}

.rank-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.rank-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rank-content .card-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.rank-content .card-link:hover {
    text-decoration: underline;
}

/* LG Specialty Section */
.specialty-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.specialty-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.specialty-image {
    background: var(--bg-primary);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialty-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.specialty-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialty-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialty-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.specialty-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.specialty-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.specialty-list li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Google Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.reviews-section h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.google-badge svg {
    width: 24px;
    height: 24px;
}

/* Extended About Section */
.about-extended {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature-item:last-child {
    margin-bottom: 0;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.about-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Map Section */
.map-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tips Section (Why Choose Us alternative) */
.expert-tips {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.expert-tips h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tip-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-faint) 0%, #E3F2FD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tip-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
}

.tip-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Methodology Section (Service Areas) */
.methodology {
    padding: 5rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.methodology-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.methodology h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.methodology > .container > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.areas-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.area-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--accent-color);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--accent-color);
}

.btn-white:hover {
    background: var(--bg-secondary);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-hover);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

.partner-disclosure {
    margin-top: 0.5rem;
}

.partner-disclosure span,
.partner-disclosure a {
    color: #444;
    font-size: 9px;
}

.partner-disclosure a:hover {
    color: #555;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 0.75rem;
    color: var(--border-color);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs li:last-child span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Neighborhoods Section */
.neighborhoods {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.neighborhoods h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.neighborhoods > .container > p {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.neighborhood-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s;
}

.neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.neighborhood-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.neighborhood-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.neighborhood-card .zip {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
}

.service-radius {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-radius a {
    color: var(--accent-color);
    text-decoration: none;
}

.service-radius a:hover {
    text-decoration: underline;
}

/* Why Local Section */
.why-local {
    padding: 5rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.why-local h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.local-advantage {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.local-advantage h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.local-advantage p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.faq h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-list > li > a,
.mobile-nav-list > li > button {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > button:hover {
    background: var(--bg-secondary);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.mobile-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: var(--bg-secondary);
    padding: 0.5rem 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 0.65rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-submenu a:hover {
    color: var(--accent-color);
}

.mobile-submenu-header {
    padding: 0.5rem 2rem 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: white;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .fade-line {
        font-size: 1.2rem;
    }

    .fade-line-big {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .trust-bar .container {
        gap: 1.5rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .specialty-card {
        grid-template-columns: 1fr;
    }

    .specialty-image {
        padding: 1.5rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-grid {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* =========================================
   LG Page Specific Styles
   ========================================= */

/* Warranty Coverage */
.warranty-coverage {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.warranty-coverage h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warranty-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s;
}

.warranty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.warranty-card.extended {
    border: 2px solid var(--accent-color);
    background: var(--accent-faint);
}

.warranty-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.warranty-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* LG Problems Grid */
.lg-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cost Savings */
.cost-savings {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.cost-savings h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.savings-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.option {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.option.expensive {
    border-top: 4px solid #ff6b6b;
}

.option.affordable {
    border-top: 4px solid #6AB76A;
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
}

.option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.option .price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.option ul {
    list-style: none;
    text-align: left;
}

.option li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.option.expensive li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.option.affordable li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6AB76A;
    font-weight: bold;
}

/* Process Steps */
.process {
    padding: 5rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.process h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.emergency-note {
    background: rgba(255,255,255,0.15);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Replacement Section */
.replacement-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.replacement-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.replacement-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.15);
}

.replacement-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-color);
}

.replacement-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.replacement-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.replacement-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
}

.replacement-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
}

.btn-replacement {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(70, 130, 180, 0.3);
}

.btn-replacement:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 130, 180, 0.4);
}

.btn-replacement svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-replacement:hover svg {
    transform: translateX(4px);
}

.replacement-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .replacement-content {
        padding: 2rem 1.5rem;
    }

    .replacement-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        justify-content: center;
    }

    .replacement-header h2 {
        font-size: 1.75rem;
    }

    .btn-replacement {
        width: 100%;
        justify-content: center;
    }
}

