/* ============================================
   Pacific Lynx Connect - Main Stylesheet
   Version: 2.0 (Redesigned)
   ============================================ */

/* ----- Reset & Base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

.site-wrapper {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Floating Background Animation ----- */
.floating-bg {
    position: fixed;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.bg-2 {
    top: auto;
    bottom: -100px;
    right: -50px;
    left: auto;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0) 70%);
    animation: float 25s infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

/* ----- Header & Navigation ----- */
.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #2563eb;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ----- Glowing Button ----- */
.glowing-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.glowing-btn.secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    box-shadow: none;
    animation: none;
}

.glowing-btn.huge {
    padding: 18px 42px;
    font-size: 1.3rem;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); }
    to { box-shadow: 0 8px 30px rgba(37, 99, 235, 0.8); }
}

.glowing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.6);
}

.glowing-btn.secondary:hover {
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

/* ----- Hero New (Redesigned) ----- */
.hero-new {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 2;
}

.hero-new .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-new .subhead {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 30px;
}

/* Provider Logos */
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.logo-item {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* Zip Search */
.zip-search {
    margin: 40px 0;
}

.zip-search p {
    color: #475569;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box .glowing-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Trust Badges in Hero */
.hero-new .trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 1rem;
    color: #475569;
}

.hero-new .trust-badges i {
    color: #2563eb;
    margin-right: 8px;
}

/* ----- Widget Section ----- */
.widget-section {
    padding: 60px 0;
    background: white;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 2;
}

.widget-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.widget-section p {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

/* ----- Why Us Section ----- */
.why-us {
    padding: 80px 0;
    text-align: center;
    z-index: 2;
    position: relative;
}

.section-sub {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
}

/* ----- CTA Banner ----- */
.cta-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 30px 30px 0 0;
    z-index: 2;
    position: relative;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .glowing-btn {
    background: white;
    color: #1e293b;
    margin-bottom: 20px;
}

.cta-banner .hours {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ----- Footer ----- */
.main-footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
    z-index: 2;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-info h4, .footer-links h4 {
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-info p {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* ============================================
   Other Pages Styles (Plans, Legal, etc.)
   ============================================ */

/* Page Header (common for other pages) */
.page-header {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

/* Plans Grid */
.plans-comparison {
    padding: 60px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.plan-card.popular {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    color: #475569;
}

.plan-features i {
    color: #2563eb;
    margin-right: 10px;
}

.plan-cta {
    width: 100%;
    text-align: center;
}

.plan-disclaimer {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 15px;
    text-align: center;
}

/* Providers Grid */
.providers-section {
    padding: 80px 0;
    background: white;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.provider-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.provider-card:hover {
    background: #2563eb;
    color: white;
}

.provider-card:hover .provider-link {
    color: white;
}

.provider-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.provider-card:hover i {
    color: white;
}

.provider-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Premium Channels */
.premium-channels {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
}

.premium-channels h2 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.channel-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Bundles Section */
.bundles-section {
    padding: 80px 0;
}

.bundle-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.bundle-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bundle-card.featured {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    transform: scale(1.05);
}

.bundle-card.featured .bundle-price {
    color: white;
}

.bundle-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bundle-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.bundle-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.bundle-card li {
    margin-bottom: 10px;
}

.bundle-card li i {
    color: #10b981;
    margin-right: 10px;
}

.bundle-card.featured li i {
    color: white;
}

/* International Rates */
.international-rates {
    padding: 60px 0;
    background: white;
}

.rates-table-container {
    max-width: 600px;
    margin: 40px auto 0;
    overflow-x: auto;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
}

.rates-table th {
    background: #2563eb;
    color: white;
    padding: 15px;
    text-align: left;
}

.rates-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-note {
    text-align: center;
    color: #64748b;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* About Page */
.about-story {
    padding: 60px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 1.1rem;
}

/* Owner Section */
.owner-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.owner-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.owner-image {
    text-align: center;
}

.owner-image i {
    font-size: 10rem;
    color: #2563eb;
}

.owner-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.owner-title {
    color: #2563eb;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.owner-info p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-style: italic;
}

/* Why Us Detailed */
.why-us-detailed {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background: white;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
}

.location-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #1e293b;
}

.location-details i {
    color: #2563eb;
    width: 30px;
    font-size: 1.3rem;
}

/* Contact Page */
.contact-methods {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 20px;
    color: #0f172a;
}

.contact-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.contact-hours {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Contact Form */
.contact-form-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-checkbox {
    margin: 20px 0;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-checkbox label {
    color: #475569;
}

.form-checkbox a {
    color: #2563eb;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

/* Map Section */
.map-section {
    padding: 60px 0 0;
}

.full-map {
    margin-top: 40px;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   Legal Pages Styling
   ============================================ */
.legal-page-header {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.legal-page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #64748b;
    font-style: italic;
}

.legal-content {
    padding: 60px 0;
}

.legal-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h2 {
    color: #0f172a;
    margin: 40px 0 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.legal-card h3 {
    color: #2563eb;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.legal-card p, .legal-card li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul, .legal-card ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-card li {
    margin-bottom: 10px;
}

.legal-card address {
    font-style: normal;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    margin: 20px 0;
}

/* Cookie Settings Page */
.cookie-preferences {
    margin: 40px 0;
}

.cookie-category {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.cookie-category h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
}

.always-active {
    font-size: 0.9rem;
    background: #10b981;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.cookie-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #2563eb;
}

.cookie-toggle.disabled {
    opacity: 0.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th {
    background: #2563eb;
    color: white;
    padding: 12px;
    text-align: left;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table tr:hover {
    background: #f8fafc;
}

/* Do Not Sell Page */
.notice-box {
    background: #fef9c3;
    border-left: 4px solid #eab308;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.opt-out-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.method-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.method-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.method-card h3 {
    margin-top: 0;
    color: #0f172a;
}

.opt-out-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opt-out-form input {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

/* How It Works Page */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.feature-highlight {
    margin: 10px 0;
    color: #10b981;
    font-weight: 500;
}

.feature-highlight i {
    margin-right: 8px;
}

.step-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.how-it-works-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 20px;
    color: white;
}

.how-it-works-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.how-it-works-cta .glowing-btn {
    margin: 0 10px;
}

.faq-mini {
    margin-top: 50px;
}

.faq-mini h3 {
    text-align: center;
    margin-bottom: 30px;
}

/* Customer Service Page */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.service-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 15px 0;
}

.service-hours {
    text-align: center;
    margin: 50px 0;
}

.hours-table {
    max-width: 400px;
    margin: 20px auto;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.hours-table td:first-child {
    font-weight: 600;
}

.service-topics {
    margin: 50px 0;
}

.service-topics h2 {
    text-align: center;
    margin-bottom: 30px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.topic-link {
    display: block;
    padding: 15px;
    background: #f8fafc;
    text-align: center;
    border-radius: 10px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.topic-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.service-faq {
    margin: 50px 0;
}

.faq-accordion .faq-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.faq-accordion .faq-item h3 {
    cursor: pointer;
    margin: 0;
    color: #0f172a;
}

.faq-accordion .faq-item p {
    margin-top: 10px;
    color: #475569;
}

.service-guarantee {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
}

.service-guarantee i {
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-new h1 {
        font-size: 2.5rem;
    }

    .provider-logos {
        gap: 15px;
    }

    .logo-item {
        width: 100px;
        height: 50px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box .glowing-btn {
        width: 100%;
    }

    .hero-new .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-content,
    .owner-card,
    .location-card {
        grid-template-columns: 1fr;
    }

    .owner-card {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .bundle-card.featured {
        transform: scale(1);
    }

    .legal-card {
        padding: 30px 20px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        margin: 0 auto;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----- Animation on Scroll ----- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}
/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: #f8fafc;
}
.trust-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.trust-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.trust-features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}
.trust-feature {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.trust-feature i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}
.trust-feature h3 {
    margin-bottom: 10px;
}

/* Rating Banner */
.rating-banner {
    padding: 40px 0;
    background: white;
}
.rating-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}
.rating-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.rating-text {
    font-size: 1.2rem;
}
.rating-text strong {
    color: #2563eb;
}
.trustpilot-logo {
    height: 20px;
    vertical-align: middle;
    margin-left: 4px;
}
/* ============================================
   Trust Banner (Why you can trust us)
   ============================================ */
.trust-banner {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.trust-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.trust-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.trust-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.5;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #eef2f6;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border-color: #e2e8f0;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.trust-icon i {
    font-size: 32px;
    color: #2563eb;
}

.trust-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f172a;
}

.trust-card p {
    color: #475569;
    line-height: 1.6;
}

/* ============================================
   Rating Banner (Trustpilot)
   ============================================ */
.rating-banner {
    padding: 40px 0;
    background: #ffffff;
}

.rating-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 48px;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 1.15rem;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.rating-text strong {
    color: #2563eb;
    font-weight: 700;
}

.rating-score {
    background: #eef2ff;
    padding: 2px 10px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2563eb;
}

.trustpilot-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin: 0 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .trust-banner {
        padding: 50px 0;
    }
    .trust-cards {
        flex-direction: column;
        align-items: center;
    }
    .trust-card {
        max-width: 400px;
        width: 100%;
    }
    .rating-card {
        border-radius: 32px;
        padding: 24px 20px;
    }
    .rating-text {
        font-size: 1rem;
        gap: 4px;
    }
}