/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #263238;
    background: #ffffff;
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    max-width: 100%;
}


.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    background: #ffffff;

    border-bottom:
        1px solid #eeeeee;

    position: sticky;
    top: 0;
    z-index: 1000;
}


.nav-container {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: bold;
}


.brand-placeholder {
    width: 46px;
    height: 46px;

    border-radius: 12px;

    background: #2a9d8f;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}


.business-name {
    font-size: 18px;
}


.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 15px;
    font-weight: 600;
}


.main-navigation a {
    transition: 0.2s;
}


.main-navigation a:hover {
    color: #2a9d8f;
}


.main-navigation .active {
    color: #2a9d8f;
}


.nav-quote-button {
    background: #2a9d8f;
    color: #ffffff !important;

    padding: 12px 20px;

    border-radius: 8px;
}


.mobile-menu-button {
    display: none;

    background: none;
    border: none;

    font-size: 26px;
    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 620px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #f1fbf9,
            #ffffff
        );

    padding: 80px 0;
}


.hero-container {
    display: grid;

    grid-template-columns:
        1.3fr 0.7fr;

    gap: 70px;

    align-items: center;
}


.hero-eyebrow,
.section-label,
.cta-label {
    color: #2a9d8f;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.hero h1 {
    font-size: clamp(
        44px,
        6vw,
        70px
    );

    line-height: 1.05;

    color: #264653;

    margin-bottom: 24px;
}


.hero h1 span {
    display: block;

    color: #2a9d8f;
}


.hero-description {
    max-width: 620px;

    font-size: 19px;

    color: #607d8b;

    margin-bottom: 32px;
}


.hero-buttons {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 30px;
}


/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-block;

    padding: 14px 24px;

    border-radius: 8px;

    font-weight: bold;

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}


.button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.10);
}


.primary-button {
    background: #2a9d8f;
    color: #ffffff;
}


.secondary-button {
    background: #ffffff;

    border:
        1px solid #d8e2e5;

    color: #264653;
}


.light-button {
    background: #ffffff;
    color: #264653;
}


/* =====================================================
   HERO BENEFITS
===================================================== */

.hero-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    color: #607d8b;

    font-size: 14px;
}


.hero-benefits strong {
    color: #2a9d8f;

    margin-right: 5px;
}


/* =====================================================
   HERO CARD
===================================================== */

.hero-card {
    background: #ffffff;

    padding: 45px;

    border-radius: 24px;

    box-shadow:
        0 25px 60px
        rgba(38, 70, 83, 0.12);
}


.hero-card-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f7f4;

    border-radius: 20px;

    font-size: 34px;

    margin-bottom: 25px;
}


.hero-card h2 {
    color: #264653;

    font-size: 27px;

    margin-bottom: 14px;
}


.hero-card p {
    color: #607d8b;

    margin-bottom: 20px;
}


.hero-card a {
    color: #2a9d8f;

    font-weight: bold;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    text-align: center;

    max-width: 680px;

    margin:
        0 auto
        50px;
}


.section-heading h2 {
    color: #264653;

    font-size: 38px;

    margin-bottom: 12px;
}


.section-heading p:last-child {
    color: #607d8b;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    padding: 100px 0;
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


.service-card {
    padding: 30px;

    border:
        1px solid #e8eeee;

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}


.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(38, 70, 83, 0.10);
}


.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #e8f7f4;

    font-size: 27px;

    margin-bottom: 22px;
}


.service-card h3 {
    color: #264653;

    margin-bottom: 12px;

    font-size: 20px;
}


.service-card p {
    color: #607d8b;

    font-size: 15px;

    margin-bottom: 20px;
}


.service-card a {
    color: #2a9d8f;

    font-weight: bold;

    font-size: 14px;
}


.center-button {
    text-align: center;

    margin-top: 40px;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {
    background: #f8fbfb;

    padding: 100px 0;
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


.why-card {
    text-align: center;

    padding: 35px;
}


.why-icon {
    width: 60px;
    height: 60px;

    margin:
        0 auto
        20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f7f4;

    color: #2a9d8f;

    font-size: 24px;
}


.why-card h3 {
    color: #264653;

    margin-bottom: 10px;
}


.why-card p {
    color: #607d8b;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    background: #264653;
    color: #ffffff;

    padding: 70px 0;
}


.cta-container {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;
}


.cta-label {
    color: #8bd8ce;
}


.cta-section h2 {
    font-size: 38px;

    margin-bottom: 8px;
}


.cta-section p:last-child {
    color: #d7e3e5;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #182f38;
    color: #d4e0e3;

    padding-top: 65px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 55px;
}


.site-footer h3,
.site-footer h4 {
    color: #ffffff;

    margin-bottom: 15px;
}


.footer-description {
    max-width: 400px;

    color: #9fb2b8;
}


.site-footer a {
    display: block;

    margin-bottom: 9px;

    color: #b8c9cd;
}


.site-footer a:hover {
    color: #ffffff;
}


.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

    padding: 20px 0;
}


.footer-bottom-container {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    font-size: 13px;

    color: #8fa5ab;
}


.footer-bottom a {
    margin: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .hero-container {
        grid-template-columns: 1fr;
    }


    .hero-card {
        max-width: 600px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 760px) {

    .mobile-menu-button {
        display: block;
    }


    .main-navigation {
        display: none;

        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        background: #ffffff;

        padding: 25px 5%;

        flex-direction: column;

        align-items: stretch;

        border-bottom:
            1px solid #eeeeee;

        box-shadow:
            0 10px 20px
            rgba(0, 0, 0, 0.08);
    }


    .main-navigation.navigation-open {
        display: flex;
    }


    .main-navigation a {
        padding: 8px 0;
    }


    .nav-quote-button {
        text-align: center;

        padding: 12px !important;

        margin-top: 5px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 500px) {

    .hero {
        padding: 60px 0;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-card {
        padding: 30px;
    }


    .hero-benefits {
        flex-direction: column;

        gap: 10px;
    }


    .section-heading h2,
    .cta-section h2 {
        font-size: 31px;
    }

}


/* =====================================================
   PAGE HERO
===================================================== */

.page-hero {

    background:
        linear-gradient(
            135deg,
            #f1fbf9,
            #ffffff
        );

    padding:
        100px 0
        90px;

}


.page-hero-content {

    max-width: 800px;

}


.page-hero h1 {

    color: #264653;

    font-size:
        clamp(
            42px,
            6vw,
            64px
        );

    line-height: 1.08;

    margin-bottom: 22px;

}


.page-hero h1 span {

    display: block;

    color: #2a9d8f;

}


.page-hero-content > p:not(.section-label) {

    color: #607d8b;

    font-size: 18px;

    max-width: 650px;

    margin-bottom: 30px;

}



/* =====================================================
   DETAILED SERVICES
===================================================== */

.detailed-services-section {

    padding: 100px 0;

}


.detailed-services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

}


.detailed-service-card {

    border:
        1px solid #e4eeee;

    border-radius: 20px;

    padding: 35px;

    background: #ffffff;

    box-shadow:
        0 10px 35px
        rgba(38, 70, 83, 0.05);

}


.detailed-service-header {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 22px;

}


.large-service-icon {

    width: 70px;

    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #e8f7f4;

    font-size: 32px;

}


.service-category {

    color: #2a9d8f;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-size: 11px;

    font-weight: bold;

    margin-bottom: 3px;

}


.detailed-service-header h2 {

    color: #264653;

    font-size: 26px;

}


.detailed-service-description {

    color: #607d8b;

    margin-bottom: 25px;

}


.included-heading {

    color: #264653;

    font-size: 17px;

    margin-bottom: 15px;

}


.included-list {

    list-style: none;

    display: grid;

    /* Give the longer left column more room */
    grid-template-columns: 1.25fr 1fr;

    column-gap: 35px;
    row-gap: 14px;

    margin-bottom: 30px;

}


.included-list li {

    color: #536e78;

    font-size: 14px;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    /* Allows text to wrap instead of overlapping */
    white-space: normal;

    min-width: 0;

}


.included-list span {

    color: #2a9d8f;

    font-weight: bold;

    margin-right: 0;

    flex-shrink: 0;

}


.service-card-footer {

    border-top:
        1px solid #edf1f2;

    padding-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.service-price {

    color: #264653;

    font-weight: bold;

}



/* =====================================================
   ADD ONS
===================================================== */

.addons-section {

    background: #f8fbfb;

    padding: 90px 0;

}


.addons-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.addon-item {

    background: #ffffff;

    border:
        1px solid #e5eeee;

    border-radius: 14px;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 14px;

}


.addon-item span {

    width: 36px;

    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f7f4;

    color: #2a9d8f;

    font-size: 20px;

    font-weight: bold;

}


.addon-item p {

    color: #264653;

    font-weight: bold;

}



/* =====================================================
   SERVICES TABLET
===================================================== */

@media (max-width: 900px) {

    .detailed-services-grid {

        grid-template-columns: 1fr;

    }


    .addons-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}



/* =====================================================
   SERVICES MOBILE
===================================================== */

@media (max-width: 600px) {

    .page-hero {

        padding:
            70px 0
            60px;

    }


    .detailed-service-card {

        padding: 25px;

    }


    .included-list {

        grid-template-columns: 1fr;

    }

    .included-list li {

        white-space: normal;

    }


    .service-card-footer {

        flex-direction: column;

        align-items: flex-start;

    }


    .service-card-footer .button {

        width: 100%;

        text-align: center;

    }


    .addons-grid {

        grid-template-columns: 1fr;

    }

}


/* =====================================================
   ABOUT - STORY
===================================================== */

.about-story-section {
    padding: 100px 0;
}


.about-story-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


.about-photo-placeholder {
    min-height: 480px;

    background:
        linear-gradient(
            135deg,
            #e8f7f4,
            #f8fbfb
        );

    border-radius: 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 40px;

    border:
        1px solid #e1eeee;
}


.about-photo-icon {
    width: 100px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border-radius: 25px;

    font-size: 45px;

    margin-bottom: 25px;

    box-shadow:
        0 12px 30px
        rgba(38, 70, 83, 0.08);
}


.about-photo-placeholder p {
    color: #264653;

    font-size: 20px;

    font-weight: bold;

    margin-bottom: 6px;
}


.about-photo-placeholder span {
    color: #78909c;

    font-size: 14px;
}


.about-story-content h2 {
    color: #264653;

    font-size: 40px;

    line-height: 1.15;

    margin-bottom: 25px;
}


.about-story-content > p:not(.section-label) {
    color: #607d8b;

    font-size: 17px;

    margin-bottom: 18px;
}


.about-story-content strong {
    color: #264653;
}


/* =====================================================
   ABOUT - APPROACH
===================================================== */

.approach-section {
    padding: 100px 0;

    background: #f8fbfb;
}


.approach-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


.approach-card {
    background: #ffffff;

    padding: 32px;

    border-radius: 18px;

    border:
        1px solid #e4eeee;
}


.approach-number {
    color: #2a9d8f;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


.approach-card h3 {
    color: #264653;

    font-size: 20px;

    margin-bottom: 12px;
}


.approach-card p {
    color: #607d8b;

    font-size: 15px;
}


/* =====================================================
   ABOUT - EXPERIENCE
===================================================== */

.experience-section {
    padding: 100px 0;
}


.experience-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 90px;
}


.experience-section h2 {
    color: #264653;

    font-size: 40px;

    margin-bottom: 15px;
}


.experience-intro {
    color: #607d8b;

    font-size: 17px;

    max-width: 400px;
}


.experience-steps {
    display: flex;

    flex-direction: column;

    gap: 30px;
}


.experience-step {
    display: flex;

    gap: 22px;

    align-items: flex-start;
}


.step-number {
    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f7f4;

    color: #2a9d8f;

    font-weight: bold;

    font-size: 17px;
}


.experience-step h3 {
    color: #264653;

    margin-bottom: 5px;

    font-size: 19px;
}


.experience-step p {
    color: #607d8b;

    font-size: 15px;
}


/* =====================================================
   ABOUT - TRUST
===================================================== */

.trust-section {
    padding:
        20px 0
        100px;
}


.trust-box {
    background:
        linear-gradient(
            135deg,
            #f1fbf9,
            #ffffff
        );

    border:
        1px solid #dfeceb;

    border-radius: 24px;

    padding: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.trust-box > div {
    max-width: 700px;
}


.trust-box h2 {
    color: #264653;

    font-size: 32px;

    line-height: 1.2;

    margin-bottom: 12px;
}


.trust-box p:last-child {
    color: #607d8b;
}


/* =====================================================
   ABOUT - TABLET
===================================================== */

@media (max-width: 900px) {

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-photo-placeholder {
        min-height: 350px;
    }


    .approach-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .experience-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .trust-box {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   ABOUT - MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-story-section,
    .approach-section,
    .experience-section {
        padding: 70px 0;
    }


    .about-story-content h2,
    .experience-section h2 {
        font-size: 32px;
    }


    .approach-grid {
        grid-template-columns: 1fr;
    }


    .trust-box {
        padding: 30px;
    }


    .trust-box h2 {
        font-size: 27px;
    }


    .trust-box .button {
        width: 100%;

        text-align: center;
    }

}


/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-section {
    padding: 100px 0;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


.contact-information h2 {
    color: #264653;

    font-size: 40px;

    margin-bottom: 15px;
}


.contact-intro {
    color: #607d8b;

    font-size: 17px;

    margin-bottom: 40px;

    max-width: 480px;
}



/* =====================================================
   CONTACT METHODS
===================================================== */

.contact-methods {
    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 45px;
}


.contact-method {
    display: flex;

    align-items: center;

    gap: 18px;
}


.contact-method-icon {
    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f7f4;

    color: #2a9d8f;

    border-radius: 14px;

    font-size: 21px;
}


.contact-method span {
    display: block;

    color: #2a9d8f;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.3px;

    margin-bottom: 3px;
}


.contact-method p {
    color: #264653;

    font-weight: bold;
}



/* =====================================================
   QUOTE CALLOUT
===================================================== */

.quote-callout {
    background: #f1fbf9;

    border:
        1px solid #dfeeed;

    border-radius: 18px;

    padding: 28px;

    max-width: 480px;
}


.quote-callout h3 {
    color: #264653;

    margin-bottom: 8px;
}


.quote-callout p {
    color: #607d8b;

    font-size: 14px;

    margin-bottom: 15px;
}


.quote-callout a {
    color: #2a9d8f;

    font-weight: bold;

    font-size: 14px;
}



/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-card {
    background: #ffffff;

    border:
        1px solid #e3eded;

    border-radius: 22px;

    padding: 45px;

    box-shadow:
        0 18px 50px
        rgba(38, 70, 83, 0.07);
}


.form-heading {
    margin-bottom: 35px;
}


.form-heading h2 {
    color: #264653;

    font-size: 30px;

    margin-bottom: 6px;
}


.form-heading p {
    color: #607d8b;
}


.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    color: #264653;

    font-size: 14px;

    font-weight: bold;

    margin-bottom: 7px;
}


.form-group label span {
    color: #2a9d8f;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid #d8e3e5;

    border-radius: 8px;

    background: #ffffff;

    color: #263238;

    font-family: inherit;

    font-size: 15px;

    padding: 13px 14px;

    outline: none;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}


.form-group textarea {
    resize: vertical;

    min-height: 140px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2a9d8f;

    box-shadow:
        0 0 0 3px
        rgba(42, 157, 143, 0.10);
}


.form-error {
    display: block;

    color: #b42318;

    font-size: 12px;

    margin-top: 5px;

    min-height: 16px;
}


.input-error {
    border-color: #b42318 !important;
}


.textarea-information {
    display: flex;

    justify-content: space-between;

    gap: 15px;
}


#messageCounter {
    color: #78909c;

    font-size: 12px;

    margin-top: 5px;

    white-space: nowrap;
}


.form-submit-button {
    border: none;

    cursor: pointer;

    font-family: inherit;

    font-size: 15px;

    width: 100%;
}


.form-privacy-note {
    color: #78909c;

    font-size: 12px;

    text-align: center;

    margin-top: 15px;
}


.form-privacy-note a {
    color: #2a9d8f;

    text-decoration: underline;
}



/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.form-success {
    text-align: center;

    padding: 50px 20px;
}


.success-icon {
    width: 70px;

    height: 70px;

    margin:
        0 auto
        20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f7f4;

    color: #2a9d8f;

    border-radius: 50%;

    font-size: 30px;

    font-weight: bold;
}


.form-success h2 {
    color: #264653;

    margin-bottom: 10px;
}


.form-success p {
    color: #607d8b;

    max-width: 450px;

    margin:
        0 auto
        25px;
}



/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .quote-callout {
        max-width: none;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 70px 0;
    }


    .contact-information h2 {
        font-size: 32px;
    }


    .contact-form-card {
        padding: 28px 20px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}


/* =====================================================
   QUOTE HERO
===================================================== */

.quote-hero {
    background:
        linear-gradient(
            135deg,
            #f1fbf9,
            #ffffff
        );

    padding:
        90px 0
        80px;
}


.quote-hero-content {
    max-width: 760px;
}


.quote-hero h1 {
    color: #264653;

    font-size:
        clamp(
            42px,
            6vw,
            64px
        );

    line-height: 1.08;

    margin-bottom: 22px;
}


.quote-hero h1 span {
    display: block;

    color: #2a9d8f;
}


.quote-hero-content > p:not(.section-label) {
    color: #607d8b;

    font-size: 18px;

    max-width: 680px;
}



/* =====================================================
   QUOTE LAYOUT
===================================================== */

.quote-section {
    background: #f8fbfb;

    padding: 80px 0 110px;
}


.quote-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 330px;

    gap: 40px;

    align-items: start;
}


.quote-form-card {
    background: #ffffff;

    border:
        1px solid #e1ebec;

    border-radius: 24px;

    padding: 45px;

    box-shadow:
        0 18px 50px
        rgba(38, 70, 83, 0.06);
}



/* =====================================================
   QUOTE SECTIONS
===================================================== */

.quote-form-section {
    padding-bottom: 45px;

    margin-bottom: 45px;

    border-bottom:
        1px solid #e7eeee;
}


.quote-section-heading {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 30px;
}


.quote-step-number {
    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #e8f7f4;

    color: #2a9d8f;

    font-size: 18px;

    font-weight: bold;
}


.quote-section-heading p {
    color: #2a9d8f;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1.5px;
}


.quote-section-heading h2 {
    color: #264653;

    font-size: 25px;
}


.quote-section-description {
    color: #607d8b;

    margin:
        -12px 0
        25px;

    font-size: 14px;
}



/* =====================================================
   SERVICE OPTIONS
===================================================== */

.service-option-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.quote-service-option {
    cursor: pointer;
}


.quote-service-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.quote-service-content {
    height: 100%;

    border:
        1px solid #dfe9ea;

    border-radius: 14px;

    padding: 20px;

    display: flex;

    gap: 15px;

    align-items: flex-start;

    transition:
        border-color 0.2s,
        background 0.2s,
        box-shadow 0.2s;
}


.quote-service-option:hover
.quote-service-content {
    border-color: #2a9d8f;
}


.quote-service-option input:checked
+ .quote-service-content {
    border-color: #2a9d8f;

    background: #f1fbf9;

    box-shadow:
        0 0 0 2px
        rgba(42, 157, 143, 0.08);
}


.quote-service-icon {
    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f7f4;

    border-radius: 12px;

    font-size: 21px;
}


.quote-service-content strong {
    display: block;

    color: #264653;

    margin-bottom: 4px;
}


.quote-service-content span {
    display: block;

    color: #78909c;

    font-size: 12px;

    line-height: 1.4;
}



/* =====================================================
   QUOTE ADDONS
===================================================== */

.quote-addons-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.quote-addon-option {
    cursor: pointer;
}


.quote-addon-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.quote-addon-content {
    border:
        1px solid #dfe9ea;

    border-radius: 12px;

    padding: 16px;

    display: flex;

    align-items: center;

    gap: 11px;

    transition:
        border-color 0.2s,
        background 0.2s;
}


.quote-addon-check {
    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eef4f4;

    color: #9aabad;

    font-size: 13px;
}


.quote-addon-content strong {
    color: #536e78;

    font-size: 14px;
}


.quote-addon-option input:checked
+ .quote-addon-content {
    border-color: #2a9d8f;

    background: #f1fbf9;
}


.quote-addon-option input:checked
+ .quote-addon-content
.quote-addon-check {
    background: #2a9d8f;

    color: #ffffff;
}



/* =====================================================
   QUOTE FORM EXTRAS
===================================================== */

.field-note {
    display: block;

    color: #78909c;

    font-size: 12px;

    margin-top: 6px;
}


.quote-submit-area {
    text-align: center;
}


.quote-submit-button {
    width: 100%;

    border: none;

    cursor: pointer;

    font-family: inherit;

    font-size: 16px;

    padding: 16px 25px;
}


.quote-submit-area p {
    color: #78909c;

    font-size: 12px;

    margin-top: 12px;
}



/* =====================================================
   QUOTE SIDEBAR
===================================================== */

.quote-sidebar {
    position: sticky;

    top: 110px;
}


.quote-sidebar-card,
.quote-help-card {
    background: #ffffff;

    border:
        1px solid #e1ebec;

    border-radius: 20px;

    padding: 30px;

    margin-bottom: 20px;
}


.quote-sidebar-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f7f4;

    border-radius: 15px;

    font-size: 25px;

    margin-bottom: 20px;
}


.quote-sidebar-card h2 {
    color: #264653;

    font-size: 22px;

    margin-bottom: 25px;
}


.sidebar-step {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}


.sidebar-step:last-child {
    margin-bottom: 0;
}


.sidebar-step span {
    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f7f4;

    color: #2a9d8f;

    font-size: 12px;

    font-weight: bold;
}


.sidebar-step p {
    color: #607d8b;

    font-size: 14px;
}


.quote-help-card h3 {
    color: #264653;

    margin-bottom: 8px;
}


.quote-help-card p {
    color: #607d8b;

    font-size: 14px;

    margin-bottom: 15px;
}


.quote-help-card a {
    color: #2a9d8f;

    font-weight: bold;

    font-size: 14px;
}



/* =====================================================
   QUOTE SUCCESS
===================================================== */

.quote-success {
    text-align: center;

    padding: 50px 15px;
}


.quote-success h2 {
    color: #264653;

    font-size: 34px;

    margin-bottom: 10px;
}


.quote-success > p:not(.section-label) {
    color: #607d8b;

    max-width: 560px;

    margin:
        0 auto
        35px;
}


.quote-success-summary {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    max-width: 600px;

    margin:
        0 auto
        35px;

    text-align: left;
}


.quote-success-summary div {
    background: #f8fbfb;

    border:
        1px solid #e3eded;

    border-radius: 12px;

    padding: 18px;
}


.quote-success-summary span {
    display: block;

    color: #2a9d8f;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.quote-success-summary strong {
    color: #264653;
}



/* =====================================================
   QUOTE TABLET
===================================================== */

@media (max-width: 950px) {

    .quote-layout {
        grid-template-columns: 1fr;
    }


    .quote-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }


    .quote-sidebar-card,
    .quote-help-card {
        margin-bottom: 0;
    }

}



/* =====================================================
   QUOTE MOBILE
===================================================== */

@media (max-width: 650px) {

    .quote-hero {
        padding:
            70px 0
            60px;
    }


    .quote-section {
        padding:
            50px 0
            80px;
    }


    .quote-form-card {
        padding:
            30px 20px;
    }


    .service-option-grid,
    .quote-addons-grid {
        grid-template-columns: 1fr;
    }


    .quote-sidebar {
        grid-template-columns: 1fr;
    }


    .quote-success-summary {
        grid-template-columns: 1fr;
    }


    .quote-section-heading h2 {
        font-size: 21px;
    }

}


/* =====================================================
   PRIVACY PAGE
===================================================== */

.privacy-hero {
    background:
        linear-gradient(
            135deg,
            #f1fbf9,
            #ffffff
        );

    padding: 90px 0 75px;
}


.privacy-hero-content {
    max-width: 750px;
}


.privacy-hero h1 {
    color: #264653;

    font-size:
        clamp(
            42px,
            6vw,
            60px
        );

    margin-bottom: 15px;
}


.privacy-hero-content > p:not(.section-label) {
    color: #607d8b;

    font-size: 18px;

    max-width: 650px;
}


.privacy-section {
    padding: 80px 0 110px;
}


.privacy-container {
    max-width: 850px;
}


.privacy-updated {
    background: #f1fbf9;

    border-left:
        4px solid #2a9d8f;

    padding: 16px 20px;

    color: #536e78;

    margin-bottom: 50px;
}


.privacy-block {
    margin-bottom: 45px;
}


.privacy-block h2 {
    color: #264653;

    font-size: 25px;

    margin-bottom: 14px;
}


.privacy-block p {
    color: #607d8b;

    margin-bottom: 14px;
}


.privacy-block ul {
    color: #607d8b;

    padding-left: 22px;

    margin:
        18px 0
        10px;
}


.privacy-block li {
    margin-bottom: 9px;
}


.privacy-contact-link {
    display: inline-block;

    color: #2a9d8f;

    font-weight: bold;

    margin-top: 5px;
}


@media (max-width: 600px) {

    .privacy-hero {
        padding:
            70px 0
            60px;
    }


    .privacy-section {
        padding:
            60px 0
            80px;
    }


    .privacy-block h2 {
        font-size: 22px;
    }

}


/* =====================================================
   QUOTE CONFIRMATION
===================================================== */

.quote-confirmation-number {
    max-width: 420px;

    margin:
        30px auto;

    padding:
        22px 30px;

    background: #f1fbf9;

    border:
        1px solid #d7efeb;

    border-radius: 14px;

    text-align: center;
}


.quote-confirmation-number span {
    display: block;

    margin-bottom: 8px;

    color: #607d8b;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.quote-confirmation-number strong {
    display: block;

    color: #2a9d8f;

    font-size: 30px;

    font-weight: 800;

    letter-spacing: 1px;
}


.quote-confirmation-note {
    margin:
        25px auto;

    max-width: 600px;

    color: #607d8b;

    font-size: 14px;

    line-height: 1.7;

    text-align: center;
}

/* =====================================================
   FULL WIDTH FORM FIELDS
===================================================== */

.form-group.full-width {
    width: 100%;
    grid-column: 1 / -1;
}


/* =====================================================
   QUOTE ADDRESS LAYOUT FIX
===================================================== */

.address-full-width {
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

.address-full-width input,
.address-full-width textarea {
    width: 100%;
}

.character-counter {
    text-align: right;
    width: 100%;
}


/* ======================================================
   SPARKPRO CLEANING - ADMIN DASHBOARD
   ====================================================== */

.admin-dashboard-page {
    margin: 0;
    min-height: 100vh;
    background: #f4fbfa;
    color: #17384a;
    font-family: Arial, Helvetica, sans-serif;
}


/* ======================================================
   ADMIN HEADER
   ====================================================== */

.admin-header {
    background: #ffffff;
    border-bottom: 1px solid #dce8e7;
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-logo {
    width: 55px;
    height: 55px;
    background: #2fa596;
    color: #ffffff;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
}

.admin-brand h1 {
    margin: 0;
    font-size: 24px;
    color: #17384a;
}

.admin-brand p {
    margin: 4px 0 0;
    color: #5d7b89;
    font-size: 14px;
}


/* ======================================================
   ADMIN NAVIGATION
   ====================================================== */

.admin-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-nav a,
.admin-nav button {
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;

    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.admin-nav a {
    color: #17384a;
    background: #ffffff;
    border: 1px solid #d4e2e1;
}

.admin-nav a:hover {
    background: #f0f8f7;
}

.admin-nav button {
    background: #2fa596;
    color: #ffffff;
}

.admin-nav button:hover {
    background: #278f82;
}


/* ======================================================
   DASHBOARD MAIN AREA
   ====================================================== */

.admin-main {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 0 80px;
}

.admin-eyebrow {
    color: #209b8d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
}

.admin-main h2 {
    font-size: 38px;
    margin: 10px 0;
    color: #17384a;
}

.admin-subtitle {
    color: #5d7b89;
    font-size: 18px;
    margin-bottom: 35px;
}


/* ======================================================
   STAT CARDS
   ====================================================== */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.admin-stat-card {
    background: #ffffff;
    border: 1px solid #dce8e7;
    border-radius: 16px;
    padding: 25px;

    box-shadow: 0 8px 25px rgba(20, 55, 70, 0.06);
}

.admin-stat-card span {
    display: block;
    color: #209b8d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.admin-stat-card strong {
    display: block;
    color: #17384a;
    font-size: 38px;
}


/* ======================================================
   DASHBOARD SECTIONS
   ====================================================== */

.admin-section {
    background: #ffffff;
    border: 1px solid #dce8e7;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 30px;

    box-shadow: 0 8px 25px rgba(20, 55, 70, 0.05);
}

.admin-section-label {
    color: #209b8d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-section h2,
.admin-section h3 {
    color: #17384a;
    margin-top: 5px;
}


/* ======================================================
   ADMIN TABLES
   ====================================================== */

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th {
    background: #eef8f7;
    color: #17384a;
    text-align: left;
    padding: 15px;
    font-size: 14px;
    border-bottom: 2px solid #d6e8e6;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #e3eceb;
    color: #496977;
    font-size: 14px;
}

.admin-table tbody tr:hover {
    background: #f8fcfb;
}


/* ======================================================
   STATUS BADGES
   ====================================================== */

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;

    background: #e6f6f3;
    color: #218f82;

    font-size: 12px;
    font-weight: 700;
}


/* ======================================================
   EMPTY TABLE MESSAGE
   ====================================================== */

.admin-empty {
    text-align: center;
    padding: 30px !important;
    color: #78909a !important;
}


/* ======================================================
   RESPONSIVE DASHBOARD
   ====================================================== */

@media (max-width: 900px) {

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .admin-main {
        width: 92%;
    }
}

/* ======================================================
   SPARKPRO ADMIN DASHBOARD - HTML CLASS MATCH
   ====================================================== */


/* HEADER */

.dashboard-header {
    background: #ffffff;
    border-bottom: 1px solid #dce8e7;
    padding: 18px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 2px 10px rgba(20, 55, 70, 0.05);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-brand .brand-mark {
    width: 58px;
    height: 58px;

    background: #2fa596;
    color: white;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: bold;
}

.dashboard-brand h1 {
    margin: 0;
    font-size: 23px;
    color: #17384a;
}

.dashboard-brand p {
    margin: 3px 0 0;
    color: #5d7b89;
    font-size: 14px;
}


/* HEADER BUTTONS */

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dashboard-home-link {
    color: #17384a;
    text-decoration: none;
    font-weight: 600;

    padding: 11px 18px;

    border: 1px solid #d5e3e2;
    border-radius: 9px;
}

.dashboard-home-link:hover {
    background: #f2f9f8;
}

.admin-button {
    border: none;
    background: #2fa596;
    color: white;

    padding: 12px 20px;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

.admin-button:hover {
    background: #278f82;
}


/* MAIN DASHBOARD */

.dashboard-container {
    width: 90%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 50px 0 80px;
}


/* WELCOME AREA */

.dashboard-welcome {
    margin-bottom: 35px;
}

.dashboard-welcome .eyebrow {
    color: #209b8d;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.dashboard-welcome h2 {
    margin: 0 0 10px;

    color: #17384a;

    font-size: 38px;
}

.dashboard-welcome > p:not(.eyebrow) {
    color: #5d7b89;

    font-size: 18px;

    margin: 0;
}


/* STATISTICS */

.dashboard-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 45px;
}

.dashboard-stat-card {
    background: white;

    border: 1px solid #dce8e7;

    border-radius: 16px;

    padding: 27px;

    box-shadow: 0 8px 25px rgba(20, 55, 70, 0.06);
}

.stat-label {
    display: block;

    color: #209b8d;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.stat-number {
    display: block;

    color: #17384a;

    font-size: 38px;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-actions {
        flex-wrap: wrap;
    }

    .dashboard-container {
        width: 92%;
    }
}


/* ======================================================
   ADMIN DASHBOARD TABLES
   ====================================================== */

.dashboard-table-section {
    background: #ffffff;
    border: 1px solid #dce8e7;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(20, 55, 70, 0.05);
}

.dashboard-table-section .eyebrow {
    color: #209b8d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.dashboard-table-section h2 {
    color: #17384a;
    font-size: 28px;
    margin: 0 0 20px;
}


/* TABLE CONTAINER */

.dashboard-table-wrapper {
    width: 100%;
    overflow-x: auto;
}


/* TABLE */

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.dashboard-table thead {
    background: #eef8f7;
}

.dashboard-table th {
    color: #17384a;
    text-align: left;
    font-size: 14px;
    font-weight: 700;

    padding: 16px 18px;

    border-bottom: 2px solid #d7e7e5;
    white-space: nowrap;
}

.dashboard-table td {
    color: #52717f;
    font-size: 14px;

    padding: 16px 18px;

    border-bottom: 1px solid #e2eceb;
    vertical-align: top;
}

.dashboard-table tbody tr:hover {
    background: #f7fbfa;
}


/* EMPTY TABLE MESSAGE */

.dashboard-table td[colspan] {
    text-align: center;
    padding: 35px 20px;
    color: #718b96;
}


/* KEEP COLUMNS SPACED */

.dashboard-table th + th,
.dashboard-table td + td {
    padding-left: 25px;
}


/* MOBILE */

@media (max-width: 800px) {

    .dashboard-table-section {
        padding: 20px;
    }

    .dashboard-table {
        min-width: 700px;
    }
}


/* =====================================================
   ADMIN QUOTE NUMBER BUTTON
   ===================================================== */

.quote-number-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;

    color: #159c91;
    font: inherit;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;
}

.quote-number-button:hover {
    text-decoration: underline;
    color: #0f746c;
}

.quote-number-button:focus {
    outline: 2px solid #159c91;
    outline-offset: 4px;
    border-radius: 2px;
}


/* =====================================================
   ADMIN QUOTE DETAILS MODAL
   ===================================================== */

.admin-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;

    background: rgba(15, 45, 55, 0.55);

    padding: 40px 20px;
    overflow-y: auto;
}

.admin-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.admin-modal-content {
    width: 100%;
    max-width: 850px;
    margin: auto;

    background: #ffffff;
    border-radius: 24px;
    padding: 40px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 24px;
    margin-bottom: 28px;

    border-bottom: 1px solid #d7e7e5;
}

.admin-modal-header h2 {
    margin: 5px 0 0;
    font-size: 32px;
    color: #17384a;
}

.modal-close {
    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: #e8f6f4;
    color: #159c91;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.modal-close:hover {
    background: #159c91;
    color: #ffffff;
}


/* Quote information grid */

.quote-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quote-detail-card {
    padding: 20px;

    background: #f4fbfa;
    border: 1px solid #d7e7e5;
    border-radius: 14px;
}

.quote-detail-card.full-width {
    grid-column: 1 / -1;
}

.quote-detail-label {
    display: block;

    margin-bottom: 7px;

    color: #159c91;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.quote-detail-value {
    color: #17384a;
    font-size: 18px;
    font-weight: 600;
}


/* Mobile */

@media (max-width: 650px) {

    .admin-modal-content {
        padding: 25px;
    }

    .quote-details {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   ADMIN STATUS BADGES
   ================================================== */

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: capitalize;
    white-space: nowrap;
}

/* New */
.status-new {
    background: #e0f2fe;
    color: #075985;
}

/* Contacted */
.status-contacted {
    background: #fef3c7;
    color: #92400e;
}

/* Scheduled */
.status-scheduled {
    background: #ede9fe;
    color: #5b21b6;
}

/* Completed */
.status-completed {
    background: #dcfce7;
    color: #166534;
}

/* Read */
.status-read {
    background: #d1fae5;
    color: #065f46;
}

/* Archived */
.status-archived {
    background: #e5e7eb;
    color: #374151;
}

/* ==================================================
   ADMIN DASHBOARD SEARCH
   ================================================== */

.dashboard-search {
    margin: 40px 0;
}

.dashboard-search-box {
    width: 100%;
}

.dashboard-search-box label {
    display: block;
    margin-bottom: 12px;

    color: #17384a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dashboard-search-input {
    position: relative;
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 700px;
}

.dashboard-search-input input {
    width: 100%;
    height: 58px;

    padding: 0 55px 0 52px;

    border: 1px solid #d2e3e3;
    border-radius: 12px;

    background: #ffffff;
    color: #17384a;

    font-family: inherit;
    font-size: 16px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.dashboard-search-input input:focus {
    border-color: #009c95;

    box-shadow:
        0 0 0 3px rgba(0, 156, 149, 0.12);
}

.dashboard-search-input input::placeholder {
    color: #78909c;
}

.search-icon {
    position: absolute;
    left: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 12px;

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: transparent;
    color: #607d8b;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.search-clear:hover {
    background: #e5f4f3;
    color: #009c95;
}

.dashboard-search-message {
    margin-top: 10px;

    color: #607d8b;
    font-size: 14px;
}

/* ==================================================
   DASHBOARD FILTERS
   ================================================== */

.dashboard-filters {
    margin: 40px 0 10px;
}

.dashboard-filters .eyebrow {
    margin-bottom: 16px;
}

.dashboard-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-filter {
    border: 1px solid #cbdede;
    background: #ffffff;
    color: #17384a;

    padding: 10px 20px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.dashboard-filter:hover {
    border-color: #009b91;
    color: #008d84;
    transform: translateY(-1px);
}

.dashboard-filter.active {
    background: #009b91;
    border-color: #009b91;
    color: #ffffff;
}

/* ==================================================
   DASHBOARD SORT
   ================================================== */

.dashboard-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.dashboard-sort label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0b3954;
}

.dashboard-sort select {
    min-width: 170px;
    padding: 10px 36px 10px 14px;

    border: 1px solid #cddfe1;
    border-radius: 10px;

    background-color: #ffffff;

    color: #0b3954;
    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.dashboard-sort select:hover {
    border-color: #00a69c;
}

.dashboard-sort select:focus {
    border-color: #00a69c;

    box-shadow:
        0 0 0 3px rgba(0, 166, 156, 0.12);
}

.dashboard-refresh-button {
    padding: 10px 18px;

    border: none;
    border-radius: 10px;

    background-color: #00a69c;
    color: white;

    font-size: 0.9rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.dashboard-refresh-button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.dashboard-refresh-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* ==================================================
   DASHBOARD PAGINATION
   ================================================== */

.dashboard-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 18px 0 25px;
}

#quotePaginationInfo {
    color: #58798b;
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

#quotePageNumber,
#messagePageNumber {
    color: #0b3954;
    font-size: 0.9rem;
    font-weight: 700;
}

.pagination-button {
    padding: 9px 16px;

    border: 1px solid #cddfe1;
    border-radius: 8px;

    background: #ffffff;
    color: #0b3954;

    font-size: 0.85rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.pagination-button:hover:not(:disabled) {
    border-color: #00a69c;
    background-color: #f4fbfa;
    transform: translateY(-1px);
}

.pagination-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* =====================================================
   DASHBOARD ACTIVITY SUMMARY
   ===================================================== */

.dashboard-activity {
    display: flex;
    align-items: center;
    gap: 20px;

    margin: 30px 0;
    padding: 24px 28px;

    background: #ffffff;

    border: 1px solid #cddfe1;
    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(11, 57, 84, 0.06);
}

.dashboard-activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e6f7f5;
    color: #009f95;

    font-size: 1.4rem;
    font-weight: 800;
}

.dashboard-activity-content h3 {
    margin: 4px 0 6px;

    color: #0b3954;

    font-size: 1.2rem;
}

.dashboard-activity-content p:last-child {
    margin: 0;

    color: #55758a;
}

/* =====================================================
   ADMIN NOTIFICATIONS
   ===================================================== */

.admin-notifications {
    position: relative;
}

.notification-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid #cddfe1;
    border-radius: 50%;

    background: #ffffff;

    cursor: pointer;
}

.notification-bell {
    font-size: 1.25rem;
}

.notification-badge {
    position: absolute;

    top: -5px;
    right: -5px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 22px;

    padding: 0 6px;

    border-radius: 20px;

    background: #009f95;
    color: #ffffff;

    font-size: 0.7rem;
    font-weight: 800;
}

.notification-dropdown {
    position: absolute;

    top: 56px;
    right: 0;

    width: 360px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #cddfe1;
    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(11, 57, 84, 0.15);

    z-index: 1000;

    display: none;
}

.notification-dropdown.open {
    display: block;
}

.notification-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 12px;

    border-bottom: 1px solid #e4eeee;
}

.notification-dropdown-header h3 {
    margin: 0;

    color: #0b3954;
}

#notificationCount {
    color: #009f95;

    font-size: 0.85rem;
    font-weight: 700;
}

.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-empty {
    margin: 18px 0 4px;

    text-align: center;

    color: #55758a;
}

/* =======================================================
   CLICKABLE ADMIN NOTIFICATIONS
   ======================================================= */

.clickable-notification {
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid #e1ecec;
    transition: background-color 0.2s ease;
}

.clickable-notification:hover {
    background-color: #f3fafa;
}

.clickable-notification:last-child {
    border-bottom: none;
}

/* =======================================================
   MARK ALL NOTIFICATIONS READ
   ======================================================= */

.mark-all-read-button {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 8px;

    border: none;
    border-bottom: 1px solid #e1ecec;

    background: transparent;

    color: #009f98;
    font-size: 0.85rem;
    font-weight: 700;

    text-align: right;
    cursor: pointer;
}

.mark-all-read-button:hover {
    text-decoration: underline;
}

/* =====================================================
   ARCHIVED QUOTES BUTTON
===================================================== */

.dashboard-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.archive-view-button {
    padding: 10px 18px;

    border: 1px solid #cddfe1;
    border-radius: 10px;

    background: #ffffff;
    color: #0b3954;

    font-size: 0.9rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.archive-view-button:hover {
    background: #f4fbfa;
    border-color: #2ba394;
}

#archivedQuoteCount {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 22px;
    height: 22px;

    margin-left: 6px;
    padding: 0 6px;

    border-radius: 20px;

    background: #e4f6f3;
    color: #168b80;

    font-size: 0.8rem;
    font-weight: 700;
}

/* =====================================================
   ARCHIVED QUOTE + MESSAGE ACTION BUTTONS
   ===================================================== */

.restore-quote-button,
.restore-message-button,
.delete-quote-button,
.delete-message-button {
    appearance: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s ease;
}


/* Restore Buttons */
.restore-quote-button,
.restore-message-button {
    border: none;
    background: #2ba394;
    color: #ffffff;
}

.restore-quote-button:hover,
.restore-message-button:hover {
    background: #238b7f;
}

/* Keep archive action buttons side-by-side */
.archived-modal-content .dashboard-table td:last-child {
    white-space: nowrap;
}

.archived-modal-content .restore-quote-button,
.archived-modal-content .restore-message-button,
.archived-modal-content .delete-quote-button,
.archived-modal-content .delete-message-button {
    display: inline-block;
    vertical-align: middle;
}

/* Delete Buttons */
.delete-quote-button,
.delete-message-button {
    border: 1px solid #f0caca;
    background: #fff0f0;
    color: #a62b2b;
    margin-left: 8px;
}

.delete-quote-button:hover,
.delete-message-button:hover {
    background: #a62b2b;
    border-color: #a62b2b;
    color: #ffffff;
}

/* =====================================================
   QUOTE SELECTED EXTRAS
   ===================================================== */

.quote-extras-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.quote-extra-item {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 20px;
    background: #e8f7f4;
    color: #167468;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #c8e9e3;
}