﻿/* --- Core Reset & Visual System Rules --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fdfaf4;
    color: #164632;
    min-height: 100vh;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sub-title {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
    color: #e28743;
}

    .sub-title.text-green {
        color: #1fa374;
    }

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #113c29;
        margin-bottom: 16px;
        font-weight: 800;
    }

    .section-header p {
        color: #4a5d55;
        font-size: 1.1rem;
        line-height: 1.5;
    }

/* --- 1. Top Navigation & Header --- */
.main-nav {
    background-color: #fdfaf4;
    border-bottom: 1px solid #ebdcc5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a {
        text-decoration: none;
        color: #4a5d55;
        font-weight: 600;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #164632;
        }

.phone-btn {
    background-color: #1fa374;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 30px;
}

.alert-strip {
    background-color: #1fa374;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 700;
}

/* --- 2. Hero Component View --- */
.hero-section {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
    border-bottom: 1px solid #ebdcc5;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #113c29;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content .description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5d55;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-orange, .btn-orange-submit {
    background-color: #e28743;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid #1fa374;
    color: #1fa374;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.hero-bullets {
    display: flex;
    gap: 24px;
    color: #4a5d55;
    font-weight: 600;
}

    .hero-bullets i {
        color: #1fa374;
    }

.hero-sidebar-card {
    background-color: #1fa374;
    color: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
}

.price-block h2 {
    font-size: 3rem;
    margin: 12px 0 4px 0;
}

.divider {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 20px 0;
}

.sidebar-phone-btn {
    display: flex;
    background-color: #fff;
    color: #1fa374;
    padding: 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 24px;
}

/* --- 3. Filter Interactive Tab Bars --- */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.tab-group {
    background-color: #e9f0ec;
    padding: 6px;
    border-radius: 40px;
    display: inline-flex;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #4a5d55;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.2s ease;
}

    .tab-btn.active {
        background-color: #1fa374;
        color: #fff;
        box-shadow: 0 4px 12px rgba(31, 163, 116, 0.15);
    }

/* --- 4. High-Performance Pricing Grid System --- */
.plans-matrix-wrapper {
    position: relative;
    width: 100%;
}

/* Hidden by default */
.plans-grid.target-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

    /* Instantly visible when class is active */
    .plans-grid.target-grid.active {
        display: grid;
    }

.plan-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #ebdcc5;
}

    .plan-card.featured-card {
        box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    }

    .plan-card.green-theme.featured-card {
        border: 2px solid #1fa374;
    }

    .plan-card.orange-theme.featured-card {
        border: 2px solid #e28743;
    }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
}

.green-theme .popular-badge {
    background-color: #1fa374;
}

.orange-theme .popular-badge {
    background-color: #e28743;
}

.plan-card h3 {
    font-size: 1.4rem;
    color: #113c29;
    margin-bottom: 16px;
}

.card-price-block {
    margin-bottom: 12px;
}

    .card-price-block .currency-amt {
        font-size: 2.5rem;
        font-weight: 800;
        color: #113c29;
    }

    .card-price-block .period {
        color: #70847b;
        font-size: 0.95rem;
    }

.speed-subheading {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: #4a5d55;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

    .plan-features-list li {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.9rem;
        color: #4a5d55;
    }

.green-theme .plan-features-list i {
    color: #1fa374;
}

.orange-theme .plan-features-list i {
    color: #e28743;
}

.card-cta-btn {
    display: block;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
}

.green-theme .card-cta-btn {
    background-color: #1fa374;
    color: #fff;
}

.orange-theme .card-cta-btn {
    background-color: #e28743;
    color: #fff;
}

/* Off Season Structural Subcard */
.off-season-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ebdcc5;
    margin-top: 40px;
}

.off-season-price h3 {
    font-size: 2rem;
    color: #1fa374;
    font-weight: 800;
}

.btn-submit {
    background-color: #1fa374;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

/* --- 5. Tether Institutional Module Banner --- */
.tether-hero-card {
    background-color: #ffeeda;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.tether-hero-main h2 {
    font-size: 2.5rem;
    color: #113c29;
    margin-bottom: 12px;
}

.promo-pill {
    background-color: #1fa374;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
}

    .promo-pill .pill-badge {
        background-color: rgba(255,255,255,0.2);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin-right: 16px;
        flex-shrink: 0;
    }

.btn-outline-green {
    border: 2px solid #1fa374;
    color: #1fa374;
    background: none;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.tether-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tether-feat-item {
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
}

    .tether-feat-item i {
        color: #1fa374;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

/* --- 6. Service Area Map Locations --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.loc-tag {
    background-color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #ebdcc5;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .loc-tag i {
        color: #1fa374;
    }

.location-grid .dynamic-add {
    background-color: #ffeeda;
    border: 2px dashed #1fa374;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- 7. FAQ Framework --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #ebdcc5;
}

    .faq-card i {
        font-size: 1.8rem;
        margin-bottom: 16px;
        display: block;
        color: #1fa374;
    }

.faq-link {
    color: #1fa374;
    text-decoration: none;
    font-weight: 700;
}

/* --- 8. Intake Lead Forms --- */
.contact-flex-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.contact-side-info h2 {
    font-size: 2.8rem;
    color: #113c29;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.meta-icon {
    width: 40px;
    height: 40px;
    background-color: #ffeeda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e28743;
}

.form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #ebdcc5;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1dcd6;
    background-color: #fdfaf4;
    border-radius: 10px;
    font-size: 1rem;
    color: #164632;
    outline: none;
}

.hidden {
    display: none !important;
}

.success-message-block {
    background-color: #e2f0d9;
    border: 2px solid #1fa374;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
}

.feedback-success-icon {
    color: #1fa374;
    font-size: 4rem;
    margin-bottom: 20px;
}

/* --- 9. Site Footer Area --- */
.main-footer {
    background-color: #113c29;
    color: #b0c7bd;
    padding-top: 60px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 50px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
    gap: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 14px;
    }

        .footer-column ul li a {
            color: #b0c7bd;
            text-decoration: none;
        }

.brand-info .footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: #1fa374;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 26px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

    .footer-legal a {
        color: #8fa89b;
        text-decoration: none;
    }

/* --- Responsive Media Viewports --- */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero-section, .tether-hero-card, .faq-grid, .contact-flex-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-actions, .hero-bullets, .off-season-card, .form-row {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@charset "UTF-8";
@body-bg: #ffffff;
@text-color: #373737;
@gray-base: #494949;
@gray-darker: #222;
@gray-dark: #333;
@gray: #555;
@gray-light: #777;
@gray-lighter: #eee;
@brand-primary: #1f9eba;
@brand-success: #59ba1f;
@brand-info: #5bc0de;
@brand-warning: #d1bd10;
@brand-danger: #ba1f1f;

/* Timeline */
.timeline {
    list-style: none;
    padding: 20px;
    position: relative;

    &:before {
        top: 40px;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 3px;
        background-color: #eeeeee;
        left: 50%;
        margin-left: -1.5px;
    }

    .timeline-item {
        margin-bottom: 20px;
        position: relative;

        &:before, &:after {
            content: "";
            display: table;
        }

        &:after {
            clear: both;
        }

        .timeline-badge {
            color: #fff;
            width: 54px;
            height: 54px;
            line-height: 52px;
            font-size: 22px;
            text-align: center;
            position: absolute;
            top: 18px;
            left: 50%;
            margin-left: -25px;
            background-color: @gray-dark;
            border: 3px solid @body-bg;
            z-index: 100;
            border-top-right-radius: 50%;
            border-top-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-bottom-left-radius: 50%;

            i, .fa, .glyphicon {
                top: 2px;
                left: 0px;
            }

            &.primary {
                background-color: @brand-primary;
            }

            &.info {
                background-color: @brand-info;
            }

            &.success {
                background-color: @brand-success;
            }

            &.warning {
                background-color: @brand-warning;
            }

            &.danger {
                background-color: @brand-danger;
            }
        }

        .timeline-panel {
            position: relative;
            width: 46%;
            float: left;
            right: 16px;
            border: 1px solid @gray-light;
            background: @body-bg;
            border-radius: 2px;
            padding: 20px;
            -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);

            &:before {
                position: absolute;
                top: 26px;
                right: -16px;
                display: inline-block;
                border-top: 16px solid transparent;
                border-left: 16px solid @gray-light;
                border-right: 0 solid @gray-light;
                border-bottom: 16px solid transparent;
                content: " ";
            }

            .timeline-title {
                margin-top: 0;
                color: inherit;
            }

            .timeline-body > p,
            .timeline-body > ul {
                margin-bottom: 0;
            }

                .timeline-body > p + p {
                    margin-top: 5px;
                }
        }
    }

        .timeline-item:last-child {
            &:nth-child(even) {
                float: right;
            }
        }

        .timeline-item:nth-child(even) {
            .timeline-panel {
                float: right;
                left: 16px;

                &:before {
                    border-left-width: 0;
                    border-right-width: 14px;
                    left: -14px;
                    right: auto;
                }
            }
        }
}

.timeline-horizontal:extend(.timeline) {
    list-style: none;
    position: relative;
    padding: 20px 0px 20px 0px;
    display: inline-block;

    &:before {
        height: 3px;
        top: auto;
        bottom: 26px;
        left: 56px;
        right: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-item {
        display: table-cell;
        height: 280px;
        width: 20%;
        min-width: 320px;
        float: none !important;
        padding-left: 0px;
        padding-right: 20px;
        margin: 0 auto;
        vertical-align: bottom;

        .timeline-panel {
            top: auto;
            bottom: 64px;
            display: inline-block;
            float: none !important;
            left: 0 !important;
            right: 0 !important;
            width: 100%;
            margin-bottom: 20px;

            &:before {
                top: auto;
                bottom: -16px;
                left: 28px !important;
                right: auto;
                border-right: 16px solid transparent !important;
                border-top: 16px solid @gray-light !important;
                border-bottom: 0 solid @gray-light !important;
                border-left: 16px solid transparent !important;
            }
        }

        &:before,
        &:after {
            display: none;
        }

        .timeline-badge {
            top: auto;
            bottom: 0px;
            left: 43px;
        }
    }
}

/* --- Top Alert Banner --- */
.alert-strip {
    display: block; /* Makes the entire strip clickable */
    background-color: #1fa374;
    color: #ffffff;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none; /* Removes the default link underline */
    transition: background-color 0.2s ease;
}

    .alert-strip:hover {
        background-color: #164632; /* Darkens slightly on hover */
    }

    .alert-strip i {
        margin-left: 6px;
        transition: transform 0.2s ease;
    }

    .alert-strip:hover i {
        transform: translateX(4px); /* Gently nudges the arrow to the right on hover */
    }
