@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url(fonts/PlusJakartaSans-VariableFont_wght.ttf);
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Font Families and Sizes */
    --font-family-main: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --fs-h1: 4rem;
    --fs-h2: 2rem;
    --fs-h3: 1.25rem;
    --fs-eyebrow: 1.125rem;
    --fs-body: 1rem;
    --hero-line-height: 2rem;
    --uppercase-letter-spacing: 0.04rem;

    /* Colors */
    --color-body-primary: #3e3e3e;
    --color-heading-body-primary: #f8f9fA;
    --color-accent-primary: #F3C677;
    --color-heading-body-secondary: #1D2A45;
    --color-bg-dark: #162137;
    --color-accent-secondary: #00B0F0;
    --color-eyebrow-buttons: #F9564F;
    --color-border: #A7A7A7;
    --color-container-fade: #DBDBDB;
    --color-hr: #B33F62;
    --color-check-mark: #22C55E;

    /* Spacing */
    --btn-padding-main: 1.1875rem 3.25rem;
    --header-height: clamp(4rem, 8vw, 6rem);
    --section-height: 48.3125rem;

    /* Borders */
    --btn-border-radius: 0.3125rem;
    --bg-border-radius: 1.5625rem 1.5625rem 0 0;
}

/* Utility Classes */
.break { display: block; }
.light-heading { color: var(--color-heading-body-primary); }
.light-accent { color: var(--color-accent-primary); }
.dark-accent { color: var(--color-accent-secondary); }
.flex { display: flex; }
.column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.space-between { justify-content: space-between }
.wrap { flex-wrap: wrap; }
.wrap-reverse { flex-wrap: wrap-reverse; }
.text-center { text-align: center; }
.hidden { display: none; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.gap-4 { gap: 4rem; }

/* Global Styling */
html { font-size: 100%; }

body {
    font-family: var(--font-family-main);
    font-size: var(--fs-body);
    color: var(--color-body-primary);
    background-color: var(--color-heading-body-primary);
    font-weight: 500;
}

body p {
    line-height: 25.6px;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-accent-secondary);
}

h1, h2, h3, .nav-list a, .eyebrow, .btn { letter-spacing: 0.04em; }

h1 { font-size: var(--fs-h1);  }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.eyebrow { 
    font-size: var(--fs-eyebrow); 
    color: var(--color-eyebrow-buttons);
    font-weight: bold;
    margin-bottom: 0.3125rem;
}

.eyebrow,
.btn,
li > a,
.uppercase {
    text-transform: uppercase;
}

.btn {
    border: none;
    color: var(--color-heading-body-primary);
    background-color: var(--color-eyebrow-buttons);
    font-weight: bold;
    display: inline-block;
    padding: var(--btn-padding-main);
    border-radius: var(--btn-border-radius);
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: var(--color-accent-secondary);
}

hr {
    width: 12.5rem;
    color: var(--color-hr);
    margin: 0.8125rem 0;
}

/* Header and Main Nav */
header { 
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-inline: clamp(1.25rem, 4vw, 1.75rem);
    width: 100%;
    height: var(--header-height);
    z-index: 2;
    font-weight: 500;
    background: transparent;
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}

header.scrolled {
    background-color: rgba(22, 33, 55, 0.95);
    border-bottom-color: rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

header.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    z-index: -1;
}

.hours-and-phone {
    color: var(--color-heading-body-primary);
    text-align: right;
}

.logo-header-desktop {
    width: clamp(8rem, 15vw, 14.4375rem);
}

.main-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}


.main-nav-list,
.mobile-nav-list {
    list-style-type: none;
}

.main-nav-list a,
.mobile-nav-list a {
    color: var(--color-heading-body-primary);
    font-size: 1.1rem;
    font-weight: bold;
}

.main-nav-list a:hover {
    color: var(--color-accent-secondary);
}

/* Mobile Nav */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 2rem;
    background: var(--color-heading-body-primary);
    margin: 10px 0;
}

.mobile-nav-container {
    position: fixed;
    backdrop-filter: blur(10px);
    inset: 0;
    display: none;
}

.mobile-nav-wrapper {
    background-color: var(--color-heading-body-secondary);
    padding-inline: 45px;
    padding-block: 35px 20px;
    border-radius: 25px;
    min-height: 9.1875rem;
    max-height: 90%;
    overflow-y: auto;
}

.mobile-nav {
    margin-block: 20px 40px;
}

.logo-header-mobile {
    width: 13rem;
}

.close-mobile-nav-btn {
    border: none;
    background: none;
    font-size: var(--fs-h1);
    color: var(--color-heading-body-primary);
    padding: 0;
    margin: 0;
    line-height: 1;
    margin: 0.5rem auto 0 auto;
    display: block;
    cursor: pointer;
}

.mobile-toggle {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100svh;
    width: 100%;
    border-bottom: 10px solid var(--color-accent-secondary);
    padding-top: calc(var(--header-height) + clamp(3rem, 4vw, 6rem));
    padding-bottom: clamp(3rem, 4vw, 6rem);
}

.headline {
    font-size: clamp(var(--fs-h2), 9vw, var(--fs-h1));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(29, 42, 69, 0.65);
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-heading-body-primary);
}

.hero p {
    font-size: clamp(var(--fs-body), 2vw, var(--fs-h3));
}

.hero-text {
    font-weight: 500;
    max-width: 478px;
    margin-bottom: 2rem;
    text-shadow: 5px 5px 10px black;
    line-height: var(--hero-line-height);
}

/* Services Section */
section:not(.hero):not(.sub-page-hero) {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 798px;
}

#services-section,
#faq-section,
#testimonial-section,
#faq-section {
    scroll-margin-top: calc(var(--header-height));
}

#pricing-section,
#why-us-section,
#process-section {
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.section-wrapper {
    width: 100%;
    max-width: 90rem;
    z-index: 1;
}

section.dark-section {
    padding-bottom: calc(6.25rem + 25px);
    color: #f8f9fA;
    background-size: cover;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 25px),
        calc(50% + 50px) calc(100% - 25px),
        50% 100%,
        calc(50% - 50px) calc(100% - 25px),
        0 calc(100% - 25px)
  );
}

.section-top-triangle {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 25px solid var(--color-heading-body-primary);
    z-index: 1;
}

.services-section .section-top-triangle,
.privacy-policy-section .section-top-triangle,
.article .section-top-triangle,
.about-us-section .section-top-triangle {
    border-top: 25px solid var(--color-accent-secondary);
}

.services-section {
    position: relative;
    background-image: url(images/flower-shop-bg.avif);
    padding-block: 6.8125rem 6.25rem;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(29, 42, 69, 1), rgba(29, 42, 69, 0.9));
}

.services-section-wrapper {
    background-image: linear-gradient(to bottom, rgba(22, 33, 55, 1) 1%, rgba(22, 33, 55, 0));
    border-radius: var(--bg-border-radius);
}

.services-section-header {
    position: relative;
    padding: 35px 40px 0 40px;
    margin-bottom: 9rem;
    column-gap: 3rem;
}

.services-section-header hr {
    display: none;
}

.services-section-header::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 1px;
    background-color: var(--color-hr);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 27px;
}

.services-section-heading {
    max-width: 37rem;
}

.services-section-body {
    max-width: 35.9375rem;
}

.service-section-cards {
    padding-inline: 0.875rem;
    justify-content: center;
    gap: 5rem;
}

.service-card {
    width: 18rem;
}

.service-card-header {
    display: flex;
    align-items: end;
    position: relative;
    height: 6.5rem;
    border: 1px solid var(--color-heading-body-primary);
    border-bottom: none;
    background-color: var(--color-bg-dark);
    border-top-right-radius: 3.125rem;
    padding-left: 15px;
    padding-bottom: 14px;
}

.service-card-icon {
    position: absolute;
    width: 5rem;
    bottom: 3.9375rem;
    left: 0.9375rem;
}

.service-card-body {
    background-color: var(--color-heading-body-primary);
    color: var(--color-body-primary);
    padding: 14px 20px 18px 15px;
    border-radius: 0 0 5px 5px;
}

.service-color-strip {
    height: 7px;
    width: 100%;
    border-left: 1px solid var(--color-heading-body-primary);
    border-right: 1px solid var(--color-heading-body-primary);
}

.branding-color {
    background-color: var(--color-accent-secondary);
}

.seo-color {
    background-color: #006E96;
}

.responsive-color {
    background-color: #B33F62;
}

.performance-color {
    background-color: #B94A48;
}

/* Pricing Section */
.pricing-section {
    padding-block: 8.625rem 10.1875rem;
}

.pricing-section-header {
    max-width: 36.375rem;
    padding-inline: 40px;
}

.pricing-options {
    column-gap: 2.5625rem;
    row-gap: 6rem;
    padding: 35px 35px 0 35px;
    border-radius: 25px 25px 0 0;
    background-image: linear-gradient(to bottom, var(--color-container-fade), var(--color-heading-body-primary));
}

.pricing-option {
    width: 20.375rem;
    height: 27.875rem;
    background-color: gray;
    border-radius: 0.625rem;
}

.lump-option {
    background-color: #FFFFFF;
}

.sub-option {
    position: relative;
    background-image: linear-gradient(to bottom right, var(--color-heading-body-secondary) 80%, var(--color-accent-secondary));
    color: var(--color-heading-body-primary);
    border-radius: 0 0 10px 10px;
}

.sub-option::before {
    content: "MOST POPULAR";
    position: absolute;
    width: 20.375rem;
    background-color: var(--color-accent-secondary);
    color: #FFFFFF;
    padding-block: 10px;
    border-radius: 10px 10px 0 0;
    left: 0;
    top: -40px;
    font-weight: bold;
    font-style: italic;
}

.sub-option .option-title {
    color: var(--color-accent-primary);
}

.pricing-option {
    text-align: center;
    padding-top: 1.5rem;
    box-shadow: 1px 1px 10px gray;
}

.sub-option .price {
    position: relative;
    border-top: 1px solid var(--color-heading-body-primary);
    border-bottom: 1px solid var(--color-heading-body-primary);
}

.sub-option .price::after {
    content: '/mo';
    position: absolute;
    font-size: 1rem;
    font-weight: 400;
    bottom: 0.65rem;
}

.price {
    font-size: var(--fs-h2);
    font-weight: 700;
    width: 11.25rem;
    margin: 1.3125rem auto 1.25rem auto;
    padding-block: 1rem;
    border-top: 1px solid var(--color-heading-body-secondary);
    border-bottom: 1px solid var(--color-heading-body-secondary);
}

.features-list {
    gap: 0.8125rem;
    text-align: left;
}

.features-list li {
    position: relative;
    list-style-type: none;
    padding-left: 3.5rem;
}

.included::before {
    content: '✓';
    position: absolute;
    left: 33px;
    font-weight: bold;
    color: var(--color-check-mark);
}

.not-included::before {
    content: '🚫';
    position: absolute;
    left: 30px;
}

.pricing-option .btn {
    padding: 0.8125rem 2.375rem;
    margin-top: 1.7rem;
    width: 15rem;
}

.lump-option .btn {
    background-color: var(--color-heading-body-secondary);
}

.lump-option .btn:hover {
    background-color: var(--color-accent-secondary);
}

/* FAQ Section */
section.faq-section {
    position: relative;
    background-image: url(images/clothing-store.avif);
    background-position: center;
    padding-block: 6.8125rem 7.5rem;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(29, 42, 69, 1), rgba(29, 42, 69, 0.9));
}

.faq-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top left, rgba(29, 42, 69, 0.9) 10%, rgba(29, 42, 69, 0));
}

.faq-section-header {
    max-width: 35.9375rem;
    margin-inline: 4.125rem 2rem;
    margin-block: auto;
}

.faq-categories-list {
    margin-top: 2.1875rem;
}

.faq-category {
    display: block;
    width: 260px;
    text-align: left;
    padding: 10px 0 10px 20px;
    font-family: var(--font-family-main);
    font-weight: 700;
    color: var(--color-heading-body-primary);
    background: none;
    border: none;
    font-size: 1.375rem;
}

.faq-category:hover {
    cursor: pointer;
}

.faq-category:not(:nth-child(3)) {
    margin-bottom: 1rem;
}

.faq-category.active {
    background-image: linear-gradient(to right, var(--color-accent-secondary), rgba(0, 176, 240, 0));
    border-radius: 5px 0 0 5px;
}

.faq-container {
    width: 100%;
    max-width: 42.25rem;
    padding: 35px 20px 35px 35px; 
    /* background-image: linear-gradient(to bottom, rgba(22, 33, 55, 1), rgba(29, 42, 69, 0)); */
    background-color: var(--color-bg-dark);
    border-radius: 25px 25px 25px 25px;
    margin-inline: 0 1.125rem;
}

.faq-list {
    height: 390px;
    padding-right: 30px;
    overflow-y: scroll;
}

.question {
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    padding-block: 1.875rem;
    border-bottom: 1px solid #A7A7A7;
    transition: color 0.2s ease;
    cursor: pointer;
}

.question::after {
    content: "▼";
    position: absolute;
    right: 0;
    transition: transform 0.25s ease;
}

.answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}

.answer {
    overflow: hidden;
    padding-block: 1rem;
    padding-inline: 2rem;
    border-bottom: 1px solid #A7A7A7;
    background-color: var(--color-heading-body-secondary);
    color: var(--color-heading-body-primary);
}

.faq.open .answer-wrapper {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq.open .question::after {
    transform: rotate(180deg);
    color: var(--color-accent-primary);
}

/* Proceess Section */
.process-section {
    padding-block: 6.25rem;
}

.process-section-header {
    text-align: center;
    max-width: 36.375rem;
    margin-bottom: 4rem;
}

.process-section-header hr {
    margin-inline: auto;
}

.process-step-container {
    position: relative;
    gap: 1.875rem;
}

.process-step {
    position: relative;
    width: 17.875rem;
    height: 16.3125rem;
}

.process-step::before {
    content: '';
    position: absolute;
    height: 7rem;
    width: 100%;
    background-image: linear-gradient(to bottom, var(--color-container-fade) 5%, var(--color-heading-body-primary));
    border-radius: 25px 25px 0 0;
    z-index: 0;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
}

.step-number.first-step {
    color: var(--color-accent-secondary);
}

.step-number.second-step {
    color: var(--color-hr);
}

.step-number.third-step {
    color: var(--color-eyebrow-buttons);
}

.step-title {
    position: relative;
    padding-left: 25px;
    padding-top: 5px;
    color: var(--color-heading-body-secondary);
    z-index: 1;
}

.process-arrow {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -40%);
    height: 5px;
    width: 1050px;
    background-image: linear-gradient(
        to right,
        rgba(0, 176, 240, 0) 0%,
        rgba(0, 176, 240, 0.15) 6%,
        rgb(0, 176, 240) 14%,
        rgb(179, 63, 98) 55%,
        rgb(249, 86, 79) 100%
    );
    z-index: 1;
}

.process-arrow::before {
    content: "▶";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    font-size: 2rem;
    line-height: 1;
    color: var(--color-eyebrow-buttons);
}

.process-step-body {
    position: relative;
    padding: 15px 25px 0 25px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--color-heading-body-secondary);
}

.testimonial-section-header p {
    margin-bottom: 2.1875rem;
}

.testimonial-section-header {
    max-width: 35.9375rem;
}

.testimonial-section {
    position: relative;
    background-image: url(images/small-business.avif);
    background-position: bottom;
    padding-block: 6.8125rem 6.25rem;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top left, rgba(29, 42, 69, 1) 20%, rgba(29, 42, 69, 0.9));
}

.testimonials-container {
    gap: 1.625rem;
}

.testimonial-card {
    max-height: 14.5rem;
    min-height: 11.1875rem;
    min-width: 21.9375rem;
    width: 100%;
    max-width: 36.125rem;
    background-color: var(--color-heading-body-primary);
    border-radius: 15px 15px 50px 0;
    color: var(--color-body-primary);
}

.testimonial-card-header {
    height: 4.25rem;
    background-color: gray;
    border-radius: 15px 15px 0 0;
    padding-inline: 1.625rem;
    color: var(--color-heading-body-primary);
}

.first-card {
    margin-left: 7.5rem;
}

.first-card .testimonial-card-header {
    background-image: linear-gradient(to right, #B94A48, #923634);
}

.second-card {
    margin-left: 3.75rem;
}

.second-card .testimonial-card-header {
    background-image: linear-gradient(to right, #B33F62, #762A41);
}

.third-card .testimonial-card-header {
    background-image: linear-gradient(to right, #00B0F0, #006E96);
}

.reviewer-name {
    font-weight: 900;
}

.reviewer-location {
    font-style: italic;
}

.testimonial-card-body {
    padding: 14px 26px 20px 26px;
}

.rating {
    font-size: 2rem;
    color: var(--color-accent-primary);
    letter-spacing: 0.625rem;
    filter: drop-shadow(1px 1px 4px gray);
}

/* Why Us Section */
.why-us-section-wrapper {
    position: relative;
    padding-block: 5.625rem;
}

.why-us-section-img {
    width: 25.25rem;
    height: 34.5rem;
    border-radius: 150px 25px 0 0;
    overflow: hidden;
    margin-right: 3.9375rem;
    flex: 0 0 25.25rem
}

.why-us-section-header {
    max-width: 37.25rem;
}

.why-us-card-container {
    position: absolute;
    column-gap: 1.6875rem;
    row-gap: 3.375rem;
    top: 380px;
    padding-left: 60px;
}

.why-us-card {
    width: 15.0625rem;
    height: 18.125rem;
    border-radius: 5px;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #FFFFFF, var(--color-heading-body-primary));
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.why-us-card-header h3 {
    color: var(--color-heading-body-primary);
    font-size: 1.125rem;
    padding-block: 1rem;
}

.custom-code .why-us-card-header {
    background-color: #B94A48;
}

.full-service .why-us-card-header {
    background-color: #B33F62;
}
.user-focused .why-us-card-header {
    background-color: #006E96;
}
.small-business .why-us-card-header {
    background-color: #1D2A45;
}

.why-us-icon {
    width: 4.375rem;
    margin: 1.3125rem auto;
}

.why-us-card-body {
    padding: 0 16px 20px 16px;
}

/* CTA Section */
.cta-section-wrapper {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 95%;
    background-image: linear-gradient(to bottom, #DBDBDB, var(--color-heading-body-primary));
    z-index: 1;
    border-radius: 5px 5px 0 0;
}

.cta-section-header {
    max-width: 35.125rem;
    text-align: center;
    margin-bottom: 2.1875rem;
    margin-inline: 40px;
}

/* Footer */
footer {
    background-color: var(--color-heading-body-secondary);
    padding: 6.25rem 4.0625rem;
    font-weight: 400;
}

.footer-content-container {
    background-image: linear-gradient(to bottom, var(--color-bg-dark), var(--color-heading-body-secondary));
    border-radius: 15px 15px 0 0;
    color: var(--color-heading-body-primary);
    padding: 2.1875rem;
    max-width: 90rem;
    margin: auto;
}

.footer-content-wrapper {
    border-bottom: 1px solid var(--color-accent-secondary);
    padding-bottom: 2rem;
}

.footer-logo {
    width: 10.625rem;
    margin-bottom: 13px;
}

.footer-body-text {
    max-width: 24.875rem;
}

.business-info {
    justify-content: flex-end;
    margin-top: 2rem;
}

.info-icon {
    width: 25px;
    margin-right: 1rem;
}

.footer-end {
    margin-top: 1.3125rem;
}

.social-icon {
    width: 25px;
}

/* Contact Page */
section.sub-page-hero {
    position: relative;
    height: clamp(15rem, 30vw, 28.125rem);
    border-bottom: 10px solid var(--color-accent-secondary);
}

.sub-page-hero::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(29, 42, 69, 0.8);
    z-index: 0;
}

.sub-page-hero-title {
    font-weight: bold;
    color: var(--color-heading-body-primary);
    padding-top: var(--header-height);
    padding-left: 4.0625rem;
    z-index: 1;
}

section.sub-page-hero.contact-hero {
    background-image: url(images/clothing-store.avif);
    object-position: center;
}

.contact-us-section .section-top-triangle {
    border-top: 25px solid var(--color-accent-secondary);
}

.contact-us-section-wrapper {
    column-gap: 8rem;
    row-gap: 3rem;
    padding: 6.25rem 2.5rem;
    overflow: hidden;
}

.contact-us-section-header {
    max-width: 36rem;
}

.contact-info-container {
    gap: 1.4375rem;
    margin-top: 2.3125rem;
}

.contact-info-icon {
    width: 2.5rem;
}

.info-title-and-details {
    gap: 0.3125rem;
}

.info-title {
    color: var(--color-accent-secondary);
    font-weight: bold;
}

.areas-served-icon {
    align-self: start;
}

.areas-served-list {
    padding-block: 1rem;
    padding-left: 2rem;
}

.contact-form-container {
    padding: 2.1875rem;
    background-image: linear-gradient(to bottom, #D9D9D9, var(--color-heading-body-primary));
    border-radius: 25px 25px 0 0;
}

/* Contact Form */
.contact-form-header {
    background-image: linear-gradient(to right, var(--color-heading-body-secondary), var(--color-bg-dark));
    padding: 1.75rem 0 1.75rem 2.1875rem;
    border-radius: 5px 5px 0 0;
    color: var(--color-heading-body-primary);
    border-bottom: 5px solid var(--color-accent-secondary);
}

.form-body {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    width: 28rem;
    border-radius: 0 0 5px 5px;
    padding: 1.9375rem 2.1875rem 1.9375rem 2.1875rem;
}

.form-body .btn {
    font-size: 1rem;
}

form label {
    font-weight: bold;
}

form input,
form textarea {
    display: block;
    width: 100%;
    margin-block: 0.3125rem 1.4375rem;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans';
}

/* Privacy Policy Page */
section.sub-page-hero.contact-hero {
    background-image: url(images/small-business-storefront.avif);
    object-position: center;
}

.privacy-section-wrapper {
    padding-block: 6.25rem;
}

.privacy-section-container {
    max-width: 43.875rem;
    margin-inline: 2.5rem;
}

.privacy-section-container h3 {
    margin-top: 2.1875rem;
}

.privacy-section-container h4 {
    margin-bottom: 0.8125rem;
}

.privacy-section-container li {
    line-height: 25.6px;
    margin-left: 1rem;
}

/* About Us Page */
.about-us-section-wrapper {
    padding-block: 6.25rem;
}

.about-us-section-body {
    max-width: 564px;
}

.about-us-logo {
    max-width: 494px;
    margin-right: 166px;
}

/* Media Queries */
@media (max-width: 1854px) {
    .hours-and-phone {
        display: none;
    }
}

@media (max-width: 1500px) {
    .testimonial-section-wrapper,
    .why-us-section-wrapper {
        padding-inline: 40px;
    }
    
    .testimonial-section-header {
        text-align: center;
        margin-bottom: 8rem;
    }

    .testimonial-section hr {
        margin: 13px auto;
    }
    
    .testimonial-section-wrapper {
        flex-direction: column;
    }

    .testimonials-container {
        gap: 3.125rem;
    }

    .testimonial-card {
        margin-left: 0;
    }
}

@media (max-width: 1400px) {
    .pricing-section-wrapper {
        flex-direction: column-reverse;
    }

    .pricing-section-header {
        text-align: center;
        padding-bottom: 3rem;
    }

    .pricing-section {
        padding-top: 6.25rem;
    }

    .pricing-section hr {
        margin: 13px auto;
    }
}

@media (max-width: 1367px) {
    .faq-section-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .faq-section-header {
        text-align: center;
        margin-inline: 40px;
        margin-bottom: 3.5rem;
    }

    .faq-section hr {
        margin: 13px auto;
    }

    .process-section-header {
        padding-inline: 40px;
    }

    .faq-category.active {
        background-image: linear-gradient(to left, rgba(0, 176, 240, 0), var(--color-accent-secondary), rgba(0, 176, 240, 0));
        border-radius: 5px 0 0 5px;
    }

    .faq-container hr {
        margin-left: 0;
    }

    .faq-categories-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-categories-list button {
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 1295.5px) {
    .services-section-header {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 50px;
        margin-bottom: 6.5rem;
    }
    
    .services-section-header::before {
        display: none;
    }

    .services-section-header hr {
        display: block;
        margin: 13px auto;
    }
}

@media (max-width: 1414px) {
    .header-contact-group,
    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}

@media (max-width: 1149px) {
  .why-us-section-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-us-section hr {
        margin: 13px auto;
    }

  .why-us-section-img {
    display: none;
  }

  .why-us-card-container {
    position: relative;
    top: auto;
    margin-top: 5.3125rem;
    padding-left: 0;
    width: 100%;
  }
}


@media (max-width: 1085px) {
    .process-step-container {
        flex-direction: column;
    }

    .process-arrow {
        display: none;
    }

    .first-step::after,
    .second-step::after,
    .third-step::after {
        content: "";
        position: absolute;
        height: 5px;
        width: 350px;
        top: 109%;
        left: 50%;
        transform: translate(-50%, -109%);
    }

    .first-step::after {
        background-image: linear-gradient(to right, rgba(0, 176, 240, 0), rgba(0, 176, 240, 1), rgba(0, 176, 240, 0));
    }

    .second-step::after {
        background-image: linear-gradient(to right, rgba(179, 63, 98, 0), rgba(179, 63, 98, 1), rgba(179, 63, 98, 0));
    }

    .third-step::after {
        background-image: linear-gradient(to right, rgba(249, 86, 79, 0), rgba(249, 86, 79, 1), rgba(249, 86, 79, 0));
    }
}

@media (max-width: 580px) {
    footer {
        padding-inline: 1rem;
    }

    .footer-logo {
        margin: auto;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 550px) {
    .hero-text {
        width: 21.875rem;
    }

     .services-section-header {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 50px;
        margin-bottom: 5rem;
    }

    .pricing-options {
        padding: 50px 35px 0 35px;
    }

    .faq-container {
        padding-top: 50px;
        margin-inline: 0;
    }
}

@media (max-width: 500px) {
    .break {
        display: inline;
    }
    
    .services-section,
    .pricing-section,
    .faq-section,
    .process-section {
        padding-block: 70px;
    }

    .why-us-section-wrapper {
        padding-block: 2.5rem 0;
    }

    .why-us-section {
        padding-top: 25px;
        padding-bottom: 70px;
    }

    .why-us-card-container {
        margin-top: 4rem;
    }
    
    .hero {
        height: 42rem;
    }

    .sub-page-hero-title {
        padding-left: 0;
    }

    .sub-page-hero {
        justify-content: center;
        align-items: center;
    }

    .faq-list {
        height: 473px;
        padding-right: 30px;
        overflow-y: scroll;
    }

    .question {
        padding-right: 20px;
    }

    .testimonial-section-header,
    .testimonial-section-header hr,
    .services-section-header,
    .services-section-header hr,
    .pricing-section-header,
    .pricing-section-header hr,
    .faq-section-header,
    .faq-section-header hr,
    .process-section-header,
    .process-section-header hr,
    .why-us-section-header,
    .why-us-section-header hr {
        text-align: left;
        margin-left: 0;
    }

    .faq-section-header {
        margin-inline: 40px;
    }

    .services-section-header h2,
    .pricing-section-header h2,
    .faq-section-header h2,
    .process-section-header h2,
    .testimonial-section-header h2,
    .why-us-section-header h2 {
        font-size: 1.84rem;
    }

    .testimonial-section-header .btn {
        padding-inline: 1.5rem;
    }

    .testimonial-card-header {
        padding-right: 0.5rem;
    }

    .testimonial-card-header .rating {
        letter-spacing: 0.3125rem;
    }

    .form-body {
        width: 23rem;
    }
}