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

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 2px solid #FDB511;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.logo .tagline {
    color: #FDB511;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #FDB511;
    border-bottom-color: #FDB511;
}

.header-cta {
    background: #FDB511;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #e5a00f;
    transform: translateY(-2px);
}

.phone-cta {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #FDB511 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #333333;
    margin-bottom: 30px;
}

.hero-cta {
    text-align: left;
}

.hero-subtext {
    margin-top: 15px;
    font-size: 14px;
    color: #666666;
}

.hero-visual {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 3px solid #FDB511;
}

.security-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.hero-visual h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #000000;
    color: #FDB511;
    border-color: #000000;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #000000;
    border-color: #000000;
}

.btn-outline:hover {
    background: #000000;
    color: #FDB511;
    transform: translateY(-3px);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666666;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #FDB511;
}

.product-card.popular {
    border-color: #FDB511;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FDB511;
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.price {
    margin-bottom: 20px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #FDB511;
}

.price-period {
    font-size: 14px;
    color: #666666;
    margin-left: 5px;
}

.device-count {
    background: #000000;
    color: #FDB511;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.product-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    color: #333333;
    font-size: 16px;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.trust-indicators h3,
.testimonials h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.badge {
    background: #f8f9fa;
    border: 2px solid #FDB511;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #FDB511;
    transform: translateY(-3px);
}

.testimonial {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #FDB511;
}

.rating {
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.toggle {
    font-size: 24px;
    font-weight: 300;
    color: #FDB511;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #333333;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-page {
    padding: 40px 0 80px 0;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666666;
    font-style: italic;
    margin-bottom: 40px;
    border-bottom: 2px solid #FDB511;
    padding-bottom: 20px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    border-left: 4px solid #FDB511;
    padding-left: 20px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin: 25px 0 15px 0;
}

.legal-section p {
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    color: #333333;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: #FDB511;
    text-decoration: underline;
    font-weight: 600;
}

.legal-section a:hover {
    color: #e5a00f;
}

.back-to-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #FDB511;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #FDB511 100%);
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta {
    margin-top: 30px;
}

.phone-btn {
    font-size: 20px;
    padding: 18px 35px;
    margin-bottom: 15px;
}

.availability {
    color: #666666;
    font-style: italic;
}

.contact-methods {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card.primary {
    border-color: #FDB511;
    background: linear-gradient(135deg, #FDB511 0%, #f8f9fa 100%);
}

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

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-number a {
    color: #000000;
    text-decoration: none;
}

.contact-hours,
.contact-response,
.contact-availability {
    color: #666666;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-description {
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-services {
    list-style: none;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.contact-services li {
    padding: 5px 0;
    color: #333333;
    font-size: 14px;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    width: 100%;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: #000000;
    font-weight: bold;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666666;
}

.form-note a {
    color: #FDB511;
    text-decoration: none;
    font-weight: 600;
}

/* Contact FAQ Styles */
.contact-faq {
    padding: 80px 0;
    background: #ffffff;
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FDB511;
}

.quick-faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.quick-faq-item p {
    color: #333333;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Business Info Styles */
.business-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FDB511;
}

.business-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
}

.hours-list {
    space-y: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.hours-item.holiday {
    color: #666666;
    font-style: italic;
}

.day {
    font-weight: 600;
    color: #333333;
}

.time {
    color: #666666;
}

.company-details p {
    margin-bottom: 12px;
    color: #333333;
}

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

.services-list li {
    padding: 8px 0;
    color: #333333;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.company-info h3 {
    color: #FDB511;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #FDB511;
    text-decoration: none;
    font-weight: 600;
}

.quick-links h4 {
    color: #FDB511;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

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

.quick-links a:hover {
    color: #FDB511;
}

.footer-legal {
    border-top: 1px solid #333333;
    padding-top: 30px;
}

.disclaimers {
    margin-bottom: 30px;
}

.disclaimers p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #999999;
}

.footer-bottom a {
    color: #FDB511;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h2,
    .contact-hero h1 {
        font-size: 32px;
    }

    .product-grid,
    .contact-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .product-card.popular {
        transform: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }

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

    .legal-content {
        padding: 0 15px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero,
    .contact-hero {
        padding: 60px 0;
    }

    .hero-text h2,
    .contact-hero h1 {
        font-size: 28px;
    }

    .hero-text p,
    .contact-hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .product-card,
    .contact-card,
    .business-card {
        padding: 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .phone-btn {
        font-size: 18px;
        padding: 15px 30px;
    }

    .contact-number {
        font-size: 20px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline,
    .product-card,
    .contact-card {
        border-width: 3px;
    }

    .legal-section {
        border-bottom-width: 2px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .contact-cta {
        display: none;
    }

    .legal-content,
    .contact-methods {
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .legal-section,
    .contact-card {
        break-inside: avoid;
    }
}