/* ==========================================================================
   PrintTech Solutions - Website Styles
   ========================================================================== */

/* Foundation Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Lists */
ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Layout Components */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #4b5563;
}

.page-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 800px;
}

.last-updated {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Header */
.top-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-nav .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.header-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

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

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link--active {
    color: #2563eb;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.btn--primary {
    background-color: #2563eb;
    color: white;
}

.btn--primary:hover {
    background-color: #1d4ed8;
    color: white;
    text-decoration: none;
}

.btn--secondary {
    background-color: #6b7280;
    color: white;
}

.btn--secondary:hover {
    background-color: #4b5563;
    color: white;
    text-decoration: none;
}

.btn--outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn--outline:hover {
    background-color: #2563eb;
    color: white;
    text-decoration: none;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

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

.banner-section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.banner-section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-section-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.main-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

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

/* Grid Systems */
.items-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.items-display--expanded {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

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

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

/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-grid--expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Product Cards */
.item-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-benefit,
.product-description {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
}

/* Feature Cards */
.feature {
    text-align: center;
    padding: 1.5rem;
}

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

.feature p {
    color: #6b7280;
}

/* Support Cards */
.support-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.support-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.support-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.support-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.support-content h4 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.support-content ol,
.support-content ul {
    margin-left: 1rem;
}

.support-link {
    color: #2563eb;
    font-weight: 500;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumbs a {
    color: #2563eb;
}

.breadcrumbs span {
    color: #9ca3af;
}

/* Product Detail Pages */
.product-detail {
    margin-bottom: 3rem;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.product-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.product-tagline {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.product-price-display {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.price {
    font-weight: 700;
    color: #059669;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #374151;
    width: 30%;
}

/* Features and Lists */
.features-list,
.ideal-list {
    list-style: none;
    margin-left: 0;
}

.features-list li,
.ideal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.features-list li::before,
.ideal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #4b5563;
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

input.error,
select.error,
textarea.error {
    border-color: #ef4444;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Quote Form Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.modal-close:hover {
    color: #374151;
}

.quote-form {
    margin: 0;
}

.quote-form .form-group {
    margin-bottom: 1rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Product Page Enhancements */
.connectivity-benefits {
    margin: 3rem 0;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: #f8fafc;
}

.connectivity-benefits h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}
.banner-section-section {
    display: block;
    text-align: center;
    margin: 2rem 0 4rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #cbd5e0;
}

.banner-section-content {
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-section-content h1 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.banner-section-content .page-intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.banner-section-image {
    text-align: center;
}

.banner-section-img {
    width: 90%;
    max-width: none;
    height: 500px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.benefits-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.benefit-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 1px solid #94a3b8;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #334155;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.category-card {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #f1f5f9;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

.category-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.category-image {
    width: 100%;
    max-width: none;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.item-card:hover .category-image {
    transform: scale(1.02);
}

.product-info {
    padding: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin: 0.5rem 0;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.benefit-item h3,
.category-card h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.category-features li {
    padding: 0.25rem 0;
    color: #6b7280;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #f9fafb;
}

.guarantee-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    grid-column: 1 / -1;
}

.guarantee-item h3 {
    color: #fbbf24;
}

.guarantee-headline {
    color: #e5e7eb !important;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.guarantee-image {
    text-align: center;
}

.satisfaction-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 0.75rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.guarantee-item {
    text-align: center;
    padding: 1rem;
}

.guarantee-headline {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #2563eb;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #e0e7ff;
    margin-bottom: 2rem;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .banner-section-img {
        height: 300px;
        width: 95%;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        max-width: 500px;
        height: 350px;
    }
}

/* Contact and Booking Layouts */
.contact-layout,
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-method,
.service-option {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #059669;
}

/* Landing Page Styles */
.lp-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    margin-bottom: 3rem;
}

.lp-subhead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.lp-cta {
    margin-bottom: 1rem;
}

.phone-note {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

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

.trust-item,
.issue-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

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

.testimonial {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
    color: #6b7280;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.emergency-card {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.chat-placeholder {
    text-align: center;
}

/* Guide Styles */
.guide-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.guide-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.guide-steps {
    margin-bottom: 2rem;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.step h3,
.step h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.guide-troubleshooting,
.guide-prevention,
.guide-specific-issues {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
}

.guide-cta {
    text-align: center;
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

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

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

.site-footer-links {
    list-style: none;
    margin: 0;
}

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

.site-footer-links a {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.site-footer-links a:hover {
    color: white;
}

address {
    font-style: normal;
    line-height: 1.6;
}

address a {
    color: #d1d5db;
}

.site-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Error Page Styles */
.error-page {
    text-align: center;
    padding: 2rem 0;
}

.error-content {
    margin-bottom: 4rem;
}

.error-code {
    font-size: 6rem;
    font-weight: 700;
    color: #6b7280;
    margin: 1rem 0;
}

.error-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.search-section {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.search-form {
    margin-bottom: 1rem;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
}

.search-input-group input {
    flex: 1;
}

.search-note {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.link-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.2s ease;
    display: block;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.link-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: #6b7280;
    margin-bottom: 0;
}

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

.help-option {
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

/* Policy Page Styles */
.privacy-section,
.policy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child,
.policy-section:last-child,
.terms-section:last-child,
.disclaimer-section:last-child {
    border-bottom: none;
}

.contact-info {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* About Page Styles */
.about-intro {
    margin-bottom: 3rem;
}

.about-mission,
.about-services,
.about-trust,
.about-coverage,
.about-commitment,
.about-cta {
    margin-bottom: 3rem;
}

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

.service-item,
.trust-item,
.area-group {
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.coverage-features {
    margin-top: 1rem;
}

.commitment-list {
    list-style: none;
    margin-left: 0;
}

.commitment-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.commitment-list strong {
    color: #1f2937;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Support Page Specific */
.emergency-support {
    margin-bottom: 3rem;
}

.support-topics {
    margin-bottom: 3rem;
}

.additional-resources {
    margin-bottom: 3rem;
}

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

.resource-link,
.resource-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.resource-link:hover,
.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.resource-link h3,
.resource-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.resource-link p,
.resource-card p {
    color: #6b7280;
    margin-bottom: 0;
}

.support-hours {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.hours-info {
    color: #374151;
}

/* Booking Page Specific */
.service-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
}

.service-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.booking-notice {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.service-areas {
    margin-bottom: 3rem;
}

.booking-faq {
    margin-bottom: 3rem;
}

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

/* Location and Map */
.location-info {
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.location-map {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* NoScript Styles */
.noscript-content {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .top-nav .content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .banner-section-title {
        font-size: 2rem;
    }
    
    .banner-section-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout,
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .items-display {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .support-grid,
    .trust-grid,
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .emergency-actions {
        flex-direction: column;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 2rem 0;
    }
    
    .banner-section-title {
        font-size: 1.75rem;
    }
    
    .banner-section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn--large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .quote-form {
        padding: 0.5rem;
    }
    
    .quote-form-content {
        padding: 1.5rem;
    }
    
    .item-card,
    .support-card {
        padding: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .top-nav,
    .site-footer,
    .banner-section,
    .emergency-card,
    .quote-form,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .content-wrapper {
        max-width: none;
        padding: 0;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        border: 2px solid;
    }
    
    .btn--secondary {
        border: 2px solid;
    }
    
    .btn--outline {
        border-width: 3px;
    }
    
    .item-card,
    .support-card,
    .link-card {
        border-width: 2px;
    }
}

/* Focus styles for better accessibility */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Enhanced dark styling for better visual hierarchy */
.connectivity-categories {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin: 3rem 0;
    color: #f1f5f9;
}

.connectivity-categories h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.products-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #cbd5e0;
    margin: 3rem 0;
}

/* Make headers darker and more sophisticated */
.main h1, .main h2, .main h3 {
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Product containers with muted backgrounds */
.item-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}

.item-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    border-color: #3b82f6;
}

@media (max-width: 768px) {
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Shopping Cart Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    min-width: 20px;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.cart-dropdown.show {
    display: block;
}

.cart-item {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
}

.cart-item-price {
    color: #059669;
    font-weight: 600;
    font-size: 0.875rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.quantity-btn {
    background: #f3f4f6;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.cart-total {
    padding: 1rem;
    border-top: 2px solid #e5e7eb;
    background: #f9fafb;
}

.cart-total-text {
    font-weight: 700;
    color: #111827;
    font-size: 1.125rem;
}

.cart-actions {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.view-cart-btn, .checkout-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.view-cart-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.checkout-btn {
    background: #059669;
    color: white;
    border: none;
}

.view-cart-btn:hover {
    background: #e5e7eb;
}

.checkout-btn:hover {
    background: #047857;
}

.empty-cart {
    padding: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Cart Page Styles */
.cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.cart-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.cart-summary {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

/* Checkout Styles */
.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.order-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.payment-option:hover {
    background: #f9fafb;
}

.payment-option input[type="radio"] {
    margin: 0;
}

.place-order-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.place-order-btn:hover {
    background: #047857;
}

/* Thank You Page Styles */
.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.order-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin: 2rem 0;
    text-align: left;
}


/* Cart Icon in Header */
.top-nav .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-nav .navigation {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1.5rem;
    color: #374151;
    transition: color 0.2s ease;
}

.cart-icon:hover {
    color: #3b82f6;
}

.cart-icon svg {
    display: block;
}

/* Cart Functionality Styles */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.order-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin: 2rem 0;
    text-align: left;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.order-summary {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.payment-option {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
}

.payment-option input[type="radio"] {
    margin-right: 0.5rem;
}

.place-order-btn {
    width: 100%;
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 2rem;
}

.place-order-btn:hover {
    background: #059669;
}

