/* =========================================================
   COASTAL BLUE DIGITAL
   CLEAN MASTER STYLESHEET
   ========================================================= */

/* =========================
   GLOBAL
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #EAF4FF;
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
}

h1 {
    color: #0056B3;
    text-align: center;
    font-size: 42px;
    margin: 0 0 30px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
}


/* =========================
   NAVIGATION
   ========================= */

.navbar {
    background-color: #003E7E;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand img {
    height: 120px;
    width: auto;
    display: block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #BFE3FF;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* =========================
   HERO
   ========================= */

.hero {
    text-align: center;
    padding: 70px 28px;
}

.hero h1 {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    overflow-wrap: break-word;
}

.hero p {
    line-height: 1.5;
}

.tagline {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}


/* =========================
   BUTTONS
   ========================= */

button {
    background-color: #0056B3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    transition: background-color 0.3s ease,
                transform 0.3s ease;
}

button:hover {
    background-color: #003F82;
    transform: translateY(-3px);
}

.text-link {
    display: inline-block;
    color: #0056B3;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.pricing-button,
.portfolio-button {
    display: inline-block;
    background-color: #0056B3;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pricing-button:hover,
.portfolio-button:hover {
    background-color: #003E7E;
    transform: translateY(-3px);
}


/* =========================
   BUSINESS EXPERIENCE
   ========================= */

.business-experience {
    padding: 90px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section-eyebrow {
    margin-bottom: 14px;
    color: #0056B3;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.business-experience h2 {
    max-width: 850px;
    margin: 0 auto 24px;
    font-size: 42px;
    line-height: 1.2;
    color: #003E7E;
}

.business-experience-intro {
    max-width: 780px;
    margin: 0 auto 50px;
    font-size: 19px;
    line-height: 1.7;
    color: #4A4A4A;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 38px;
}

.experience-card {
    padding: 34px 28px;
    background-color: #F3F8FF;
    border: 1px solid #D8E7F5;
    border-radius: 12px;
    text-align: left;
}

.experience-card h3 {
    margin-bottom: 14px;
    color: #003E7E;
    font-size: 23px;
}

.experience-card p {
    margin: 0;
    line-height: 1.7;
    color: #4A4A4A;
}


/* =========================
   OUR STORY
   ========================= */

.our-story {
    padding: 90px 20px;
    background-color: #EAF4FF;
}

.our-story h2 {
    color: #003E7E;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.our-story p {
    font-size: 19px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 18px;
}

.story-intro {
    font-size: 22px;
    font-weight: 600;
    max-width: 950px;
}

.story-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.story-list div {
    background-color: white;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #D8E7F5;
    color: #003E7E;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* =========================
   HOMEPAGE
   ========================= */

.home-services,
.home-why,
.home-local {
    padding: 80px 20px;
    text-align: center;
}

.home-services,
.home-local {
    background-color: #ffffff;
}

.home-why {
    background-color: #EAF4FF;
}

.home-services h2,
.home-why h2,
.home-local h2 {
    max-width: 850px;
    margin: 0 auto 22px;
    color: #003E7E;
    font-size: 42px;
    line-height: 1.2;
}

.home-section-intro {
    max-width: 780px;
    margin: 0 auto 42px;
    color: #444444;
    font-size: 19px;
    line-height: 1.7;
}

.home-service-grid,
.home-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 0 auto 34px;
}

.home-service-card,
.home-why-card {
    padding: 32px 28px;
    background-color: #ffffff;
    border: 1px solid #D8E7F5;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.home-services .home-service-card {
    background-color: #F7FAFE;
}

.home-service-card h3,
.home-why-card h3 {
    margin: 0 0 14px;
    color: #0056B3;
    font-size: 23px;
    line-height: 1.25;
}

.home-service-card p,
.home-why-card p {
    margin: 0;
    color: #444444;
    font-size: 17px;
    line-height: 1.65;
}

.home-local p:not(.section-eyebrow) {
    max-width: 780px;
    margin: 0 auto;
    color: #444444;
    font-size: 19px;
    line-height: 1.7;
}


/* =========================
   WHY CHOOSE
   ========================= */

.why-choose {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.why-choose h2 {
    color: #0056B3;
    font-size: 42px;
    margin: 0 0 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background-color: #F7F9FC;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card h3 {
    color: #0056B3;
    margin: 0 0 18px;
    font-size: 24px;
}

.why-card p {
    color: #444444;
    line-height: 1.7;
    font-size: 17px;
}


/* =========================
   LOCAL SEO
   ========================= */

.local-seo-section {
    padding: 80px 20px;
    background-color: #EAF4FF;
    text-align: center;
}

.local-seo-section h2 {
    margin: 0 auto 24px;
    color: #003E7E;
    font-size: 42px;
    line-height: 1.2;
}

.local-seo-intro {
    max-width: 850px;
    margin: 0 auto 45px;
    font-size: 19px;
    line-height: 1.7;
}

.local-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.local-seo-card {
    padding: 32px 30px;
    background-color: #ffffff;
    border: 1px solid #D8E7F5;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.local-seo-card h3 {
    margin: 0 0 20px;
    color: #0056B3;
    font-size: 25px;
}

.local-seo-card ul {
    margin: 0;
    padding-left: 22px;
    line-height: 1.9;
}

.local-seo-closing {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page-hero {
    background-color: #EAF4FF;
    padding: 75px 20px 60px;
    text-align: center;
}

.services-page-hero .section-eyebrow {
    margin-bottom: 14px;
    color: #0056B3;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-page-hero h1 {
    max-width: 900px;
    margin: 0 auto 22px;
    color: #0056B3;
    font-size: 48px;
    line-height: 1.15;
}

.services-page-intro {
    max-width: 820px;
    margin: 0 auto;
    color: #333333;
    font-size: 20px;
    line-height: 1.7;
}

.services-page {
    background-color: #F7FAFE;
    padding: 70px 20px 80px;
}

.services-page .container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 38px 34px;
    border: 1px solid #D8E7F5;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    min-height: 240px;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

.service-detail-card h2 {
    margin: 0 0 18px;
    color: #0056B3;
    font-size: 28px;
    line-height: 1.25;
}

.service-detail-card p {
    margin: 0 0 16px;
    color: #333333;
    font-size: 20px;
    line-height: 1.6;
}

.service-detail-card p:last-child {
    margin-bottom: 0;
}

.services-cta {
    background-color: #0056B3;
    padding: 75px 20px;
    text-align: center;
    color: #ffffff;
}

.services-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    margin: 0 0 20px;
    font-size: 38px;
    line-height: 1.2;
}

.services-cta p {
    max-width: 680px;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 1.6;
}

.services-cta .cta-button {
    display: inline-block;
    padding: 17px 34px;
    background-color: #ffffff;
    color: #0056B3;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-hero {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.about-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    margin: 0;
}

.about-story {
    background-color: #EAF4FF;
    padding: 80px 20px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-story-content h2 {
    color: #0056B3;
    font-size: 40px;
    margin: 0 0 28px;
}

.about-story-content p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #222222;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-highlight-card {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.about-highlight-card h3 {
    color: #0056B3;
    font-size: 23px;
    margin: 0 0 10px;
}

.about-highlight-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.about-why {
    background-color: #ffffff;
    padding: 75px 20px 40px;
}

.about-why h2 {
    text-align: center;
    color: #0056B3;
    font-size: 42px;
    margin: 0 0 45px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-why-card {
    background-color: #F7FAFF;
    padding: 36px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.about-why-card h3 {
    color: #0056B3;
    font-size: 25px;
    line-height: 1.25;
    margin: 0 0 20px;
}

.about-why-card p {
    color: #444444;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

.about-mission {
    background-color: #ffffff;
    padding: 50px 20px 45px;
    text-align: center;
}

.about-mission h2 {
    color: #0056B3;
    font-size: 40px;
    margin: 0 0 20px;
}

.about-mission p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: #222222;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.contact-hero h1 {
    color: white;
    font-size: 56px;
    margin: 0 0 15px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-hero .hero-subtext {
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 650px;
}

.contact-content {
    background-color: #F3F8FF;
    padding: 45px 20px;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #0056B3;
    margin-top: 0;
}

.contact-card p {
    line-height: 1.8;
}

.contact-card a {
    color: #0056B3;
    font-weight: bold;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form label {
    font-weight: bold;
    color: #003E7E;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form .pricing-button {
    width: 280px;
    align-self: center;
    margin-top: 15px;
    padding: 16px 30px;
    font-size: 18px;
}

.contact-details {
    margin-top: 35px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: #0056B3;
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thank-you-content {
    background-color: #F3F8FF;
    min-height: 600px;
    padding: 100px 20px;
}

.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thank-you-card h1 {
    color: #0056B3;
    font-size: 48px;
    margin: 0 0 20px;
}

.thank-you-card p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 36px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    font-size: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #0057B8;
    color: white;
    text-decoration: none;
    padding: 18px 42px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #EAF4FF;
    color: #0056B3;
    transform: translateY(-3px);
}


/* =========================================================
   PRICING PAGE
   ========================================================= */

.pricing-hero {
    background-color: #0056B3;
    color: white;
    padding: 80px 20px;
}

.pricing-hero h1 {
    color: white;
    font-size: 48px;
    margin: 0 0 20px;
}

.pricing-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
}

.pricing-content {
    background-color: #EAF4FF;
    padding: 50px 20px 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
}

.pricing-card h2 {
    color: #0056B3;
    font-size: 32px;
    margin: 0 0 15px;
}

.pricing-card h3 {
    color: #003E7E;
    font-size: 24px;
    margin: 20px 0;
}

.pricing-description {
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-card ul {
    padding-left: 22px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.pricing-card .pricing-button {
    margin-top: auto;
}

.featured {
    border: 3px solid #0056B3;
    position: relative;
}

.popular-label {
    background-color: #0056B3;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 0 0 20px;
}

.pricing-note {
    background-color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.pricing-note .container {
    max-width: 800px;
}

.pricing-note h2 {
    color: #0056B3;
    font-size: 38px;
    margin-bottom: 20px;
}

.pricing-note p {
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}


/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.portfolio-hero {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.portfolio-hero h1 {
    color: white;
    font-size: 48px;
    margin: 0 0 20px;
}

.portfolio-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
}

.portfolio-content {
    background-color: #EAF4FF;
    padding: 80px 20px;
}

.portfolio-content h2 {
    color: #0056B3;
    font-size: 36px;
    text-align: center;
    margin: 0 0 45px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
}

.portfolio-placeholder {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0056B3;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.portfolio-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-card h3 {
    color: #0056B3;
    font-size: 27px;
    margin: 0 0 8px;
}

.portfolio-type {
    color: #003E7E;
    font-weight: bold;
    margin-top: 0;
}

.portfolio-card-content p {
    line-height: 1.6;
}

.portfolio-card ul {
    padding-left: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.portfolio-card .portfolio-button {
    margin-top: auto;
}

.portfolio-coming-soon {
    display: block;
    background-color: #EAF4FF;
    color: #0056B3;
    text-align: center;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: auto;
}

.portfolio-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ffffff;
}

.portfolio-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.portfolio-card:hover
.portfolio-image img:not(.pool-portfolio-image) {
    transform: scale(1.03);
}

.pool-portfolio-image {
    transform: scale(1.25);
    transform-origin: top center;
}

.portfolio-card:hover .pool-portfolio-image {
    transform: scale(1.30);
}

.portfolio-featured-label {
    display: inline-block;
    align-self: flex-start;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 14px;
    background-color: #0056B3;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-card-demo {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 520px;
    justify-self: center;
}

.portfolio-card-demo .portfolio-image {
    height: auto;
}

.portfolio-card-demo .portfolio-image img {
    height: auto;
    object-fit: contain;
    object-position: top center;
    background: #ffffff;
}

/* =========================
   PROCESS
   ========================= */

.process-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
}

.process-section h2 {
    color: #0056B3;
    font-size: 36px;
    margin: 0 0 20px;
}

.process-intro {
    max-width: 750px;
    margin: 0 auto 45px;
    font-size: 20px;
    line-height: 1.6;
}

.process-grid,
.portfolio-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.portfolio-process-grid {
    margin-top: 40px;
}

.process-card {
    background-color: #EAF4FF;
    padding: 30px 25px;
    border-radius: 10px;
}

.process-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #0056B3;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
}

.process-card h3 {
    color: #0056B3;
    font-size: 24px;
    margin-bottom: 12px;
}

.process-card p {
    margin-bottom: 0;
    line-height: 1.6;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background-color: #0056B3;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    margin: 0;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #BFE3FF;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 900px) {

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .portfolio-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

    .navbar {
        padding: 8px 0;
    }

    .nav-container {
        position: relative;
        padding: 0 20px;
    }

    .container {
        padding: 20px;
    }

    .brand img {
        height: 85px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 20px;
        background-color: #003E7E;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 14px 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-toggle-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* MOBILE HOMEPAGE REFINEMENTS */

    /* HERO */

    .hero {
        padding: 55px 20px 70px;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 44px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 24px;
        line-height: 1.35;
    }

    .hero .pricing-button {
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
    }


    /* GENERAL SECTIONS */

    .business-experience,
    .our-story {
        padding: 65px 20px;
    }

    .business-experience h2,
    .our-story h2,
    .home-services h2,
    .home-why h2,
    .home-local h2,
    .local-seo-section h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .business-experience-intro,
    .our-story p,
    .home-section-intro,
    .home-local p:not(.section-eyebrow),
    .local-seo-intro,
    .local-seo-closing {
        font-size: 17px;
    }

    .experience-grid,
    .story-list,
    .home-service-grid,
    .home-why-grid,
    .why-grid,
    .local-seo-grid,
    .pricing-grid,
    .portfolio-grid,
    .portfolio-grid-two,
    .process-grid,
    .portfolio-process-grid {
        grid-template-columns: 1fr;
    }

    .experience-card,
    .home-service-card,
    .home-why-card,
    .local-seo-card {
        padding: 28px 24px;
    }
    
    .experience-card {
    padding: 22px 20px;
    }

    .experience-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    }

    .experience-card p {
    font-size: 16px;
    line-height: 1.5;
    }

    .why-card {
        width: 100%;
        min-height: auto;
        padding: 28px 24px;
    }

    .home-services,
    .home-why,
    .home-local,
    .local-seo-section {
        padding: 60px 20px;
    }
    
    .home-local {
    padding: 45px 20px;
    }


    /* SERVICES */

    .services-page-hero {
        padding: 60px 20px 50px;
    }

    .services-page-hero h1 {
        font-size: 38px;
    }

    .services-page-intro {
        font-size: 18px;
        line-height: 1.6;
    }

    .services-page {
        padding: 55px 18px 65px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-card {
        padding: 28px 24px;
        min-height: 0;
    }

    .service-detail-card h2 {
        font-size: 26px;
    }

    .service-detail-card p {
        font-size: 18px;
        line-height: 1.6;
    }

    .services-cta {
        padding: 60px 20px;
    }

    .services-cta h2 {
        font-size: 32px;
    }

    .services-cta p {
        font-size: 18px;
    }


    /* ABOUT */

    .about-story {
        padding: 55px 0 35px;
    }

    .about-story-content h2 {
        font-size: 32px;
        line-height: 1.15;
        text-align: center;
    }

    .about-story-content p {
        font-size: 17px;
        line-height: 1.6;
        text-align: left;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .about-why {
        padding: 60px 0 40px;
    }

    .about-why h2,
    .about-mission h2 {
        font-size: 34px;
    }

    .about-mission {
        padding: 50px 0 45px;
    }

    .about-mission p {
        font-size: 18px;
    }


    /* CONTACT */

    .contact-hero {
        padding: 65px 20px;
    }

    .contact-hero h1 {
        font-size: 42px;
        line-height: 1.12;
    }

    .contact-hero .hero-subtext {
        font-size: 16px;
        line-height: 1.6;
        max-width: 360px;
    }

    .contact-content {
        padding: 35px 18px;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-form .pricing-button {
        width: 100%;
    }


    /* PRICING */

    .pricing-hero {
        padding: 55px 20px 65px;
    }

    .pricing-hero h1 {
        font-size: 44px;
        line-height: 1.08;
        margin-bottom: 24px;
    }

    .pricing-hero p {
        font-size: 22px;
        line-height: 1.45;
    }

    .pricing-content {
        padding: 40px 20px 60px;
    }

    .pricing-card {
        width: 100%;
        padding: 28px;
    }


    /* PORTFOLIO */

    .portfolio-content {
        padding: 45px 20px 60px;
    }

    .portfolio-content h2 {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 35px;
    }

    .portfolio-card {
        width: 100%;
    }

    .portfolio-placeholder {
        min-height: 180px;
        padding: 20px;
    }

    .portfolio-card-content {
        padding: 28px;
    }

    .portfolio-image {
        height: 240px;
    }

    .pool-portfolio-image {
        transform: scale(1.08);
    }

    .portfolio-card:hover .pool-portfolio-image {
        transform: scale(1.16);
    }


    /* CTA */

    .cta {
        padding: 55px 20px;
    }

    .cta p {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .cta .cta-button {
        background-color: #ffffff;
        color: #0056B3;
    }
    
    /* FOOTER */

    .footer {
        padding: 35px 20px;
    }

    .footer-container {
        padding: 0;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        text-align: center;
    }

    .footer p {
        width: 100%;
        line-height: 1.5;
    }

    .footer a {
        font-size: 18px;
        overflow-wrap: anywhere;
    }
}