/* =========================================================
   Blooming Hearts ABA Therapy Center
   Professional Responsive CSS
   Theme: Soft Light Blue / Pediatric Healthcare
   Works for: Desktop, Tablet, Mobile
========================================================= */

/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #38bdf8;
    --primary-dark: #1e88c8;
    --primary-soft: #dff5ff;
    --primary-light: #edf9ff;

    --secondary: #14b8a6;
    --white: #ffffff;
    --off-white: #f9fdff;

    --text-dark: #24476b;
    --text-main: #36536b;
    --text-muted: #6f8092;

    --border-light: rgba(56, 189, 248, 0.22);
    --shadow-soft: 0 12px 35px rgba(30, 136, 200, 0.12);
    --shadow-medium: 0 18px 45px rgba(56, 189, 248, 0.25);

    --radius-pill: 999px;
    --radius-large: 28px;

    --transition: all 0.3s ease;
}

/* =========================
   GLOBAL RESET
========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(92%, 1280px);
    margin-inline: auto;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
    background: linear-gradient(135deg, #dff5ff, #eefaff);
    color: var(--text-main);
    font-size: 0.875rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-light);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.left-info,
.right-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.top-bar i {
    color: var(--primary-dark);
    font-size: 0.95rem;
}

/* =========================
   HEADER / NAVIGATION
========================= */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(36, 71, 107, 0.08);
}

.nav-wrapper {
    min-height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.logo img {
    width: clamp(90px, 10vw, 150px);
    height: auto;
    object-fit: contain;
}

.logo-text h2 {
    color: var(--primary-dark);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.logo-text p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.15rem;
}

/* =========================
   MENU
========================= */
nav {
    flex: 1;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

nav a {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
	letter-spacing: 0.2px;
		
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

nav a:hover,
nav a:focus {
    color: var(--primary-dark);
}

nav a:hover::after,
nav a:focus::after {
    width: 100%;
}

/* =========================
   BUTTONS
========================= */
.buttons,
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn-outline,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.55rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #38bdf8, #79d4ff);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(56, 189, 248, 0.34);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 32%),
        radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.12), transparent 28%),
        linear-gradient(135deg, #edf9ff 0%, #dff5ff 55%, #f9fdff 100%);
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(120, 205, 255, 0.18);
    filter: blur(5px);
    pointer-events: none;
}

.circle1 {
    width: clamp(220px, 35vw, 420px);
    height: clamp(220px, 35vw, 420px);
    top: -120px;
    right: -120px;
}

.circle2 {
    width: clamp(160px, 22vw, 260px);
    height: clamp(160px, 22vw, 260px);
    bottom: -80px;
    left: -80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.hero-text {
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 0.7rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero h1 {
    margin-top: 1.5rem;
    color: var(--text-dark);
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    margin-top: 1.5rem;
    max-width: 620px;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    line-height: 1.85;
}

.hero-buttons {
    margin-top: 2.2rem;
}

/* =========================
   HERO STATS
========================= */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    max-width: 560px;
}

.hero-stats > div {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    padding: 1.15rem 1rem;
    box-shadow: 0 10px 24px rgba(36, 71, 107, 0.07);
}

.hero-stats h2 {
    color: var(--primary-dark);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    line-height: 1;
    font-weight: 700;
}

.hero-stats span {
    display: block;
    margin-top: 0.45rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================
   HERO IMAGE
========================= */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: min(100%, 560px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 35px rgba(36, 71, 107, 0.14));
}



/* Reduce animation for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

/* Large tablets and small laptops */
@media (max-width: 1180px) {
    .nav-wrapper {
        gap: 1.2rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .buttons {
        gap: 0.6rem;
    }

    .btn-outline,
    .btn-primary,
    .btn-secondary {
        padding-inline: 1.15rem;
    }
}

/* Tablet view */
@media (max-width: 991px) {
    .top-bar .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .left-info,
    .right-info {
        justify-content: center;
        gap: 0.9rem 1.4rem;
    }

    .nav-wrapper {
        min-height: 78px;
    }

    nav,
    header .buttons {
        display: none;
    }

    .logo img {
        width: 110px;
    }

    .hero {
        padding: 4.5rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero p,
    .hero-stats {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        width: min(82%, 430px);
    }
}

/* Mobile landscape and large phones */
@media (max-width: 767px) {
    .container {
        width: min(92%, 640px);
    }

    .top-bar {
        font-size: 0.8rem;
        padding: 0.55rem 0;
    }

    .left-info,
    .right-info {
        gap: 0.55rem 1rem;
    }

    .top-bar span {
        white-space: normal;
        justify-content: center;
    }

    .nav-wrapper {
        min-height: 72px;
    }

    .logo {
        gap: 0.7rem;
    }

    .logo img {
        width: 92px;
    }

    .logo-text h2 {
        font-size: 1.08rem;
    }

    .logo-text p {
        font-size: 0.74rem;
    }

    .hero {
        padding: 3.8rem 0;
    }

    .hero h1 {
        margin-top: 1.2rem;
        font-size: clamp(2.05rem, 9vw, 2.75rem);
    }

    .hero p {
        margin-top: 1.15rem;
        line-height: 1.75;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        margin-top: 1.8rem;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 2rem;
    }

    .hero-stats > div {
        padding: 1rem;
    }

    .hero-image img {
        width: min(88%, 360px);
    }
}

/* Small phones */
@media (max-width: 480px) {
    .top-bar .container {
        gap: 0.45rem;
    }

    .left-info,
    .right-info {
        flex-direction: column;
        gap: 0.35rem;
    }

    .logo img {
        width: 82px;
    }

    .logo-text h2 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

    .hero-tag {
        font-size: 0.82rem;
        padding: 0.65rem 0.95rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn-outline,
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 0.9rem 1.2rem;
        font-size: 0.92rem;
    }

    .circle1 {
        top: -150px;
        right: -160px;
    }

    .circle2 {
        bottom: -110px;
        left: -120px;
    }
}

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

.page-header {
    background: rgba(255, 255, 255, 0.96);
}

nav a.active {
    color: var(--primary-dark);
}

nav a.active::after {
    width: 100%;
}

/* About Hero */

.about-hero {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, #edf9ff, #dff5ff, #f9fdff);
}

.about-hero h1 {
    max-width: 850px;
    margin: 20px auto;
    color: var(--text-dark);
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.15;
}

.about-hero p {
    max-width: 760px;
    margin: auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Main */

.about-page {
    padding: 20px 0 40px;
    background: #ffffff;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-page-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(36, 71, 107, 0.12);
}

.about-page-content h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 20px 0;
}

.about-page-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* Mission */

.mission-section {
    padding: 30px 0 25px;
    background: #f2fbff;
}

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

.mission-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.18);
}

.mission-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Why Choose */

.why-section {
    padding: 40px 0 70px;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 20px 0 10px;
}

.section-heading p {
    color: var(--text-muted);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-box {
    background: #f9fdff;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #e5f6ff;
    transition: 0.3s ease;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(56, 189, 248, 0.15);
}

.why-box h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-box p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA */

.about-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #38bdf8, #79d4ff);
    color: white;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.about-cta p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-cta .btn-primary {
    background: white;
    color: #1e88c8;
    box-shadow: none;
}

/* Tablet */

@media (max-width: 991px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile */

@media (max-width: 767px) {
    .about-hero {
        padding: 65px 0;
    }

    .about-page,
    .why-section {
        padding: 70px 0;
    }

    .mission-section {
        padding: 65px 0;
    }

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

    .mission-card,
    .why-box {
        padding: 25px;
    }
}


/* =========================================================
   FINAL PROFESSIONAL OVERRIDES
   Blooming Hearts ABA - About Page Improvements
========================================================= */

/* About section label */
.section-tag {
    display: inline-block;
    padding: 12px 26px;
    background: #e8f8ff;
    color: #1e88c8;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 15px;
}

/* About main heading */
.about-page-content h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 650px;
    margin-bottom: 25px;
}

/* About paragraph */
.about-page-content p {
    color: var(--text-muted);
    font-size: 19px;
    line-height: 1.85;
    max-width: 650px;
}

/* Keep content aligned on desktop */
.about-page-content {
    max-width: 700px;
}

/* Better mobile typography */
@media (max-width: 767px) {

    .section-tag {
        font-size: 17px;
        padding: 10px 20px;
    }

    .about-page-content h2 {
        font-size: 36px;
        letter-spacing: -.5px;
    }

    .about-page-content p {
        font-size: 16px;
    }

}

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


.services-hero{

padding:80px 0;

text-align:center;

background:
linear-gradient(
135deg,
#edf9ff,
#dff5ff,
#f9fdff
);

}


.services-hero h1{

max-width:900px;

margin:25px auto;

font-size:clamp(2.4rem,5vw,4rem);

line-height:1.15;

font-weight:800;

color:var(--text-dark);

}


.services-hero p{

max-width:750px;

margin:auto;

font-size:18px;

line-height:1.8;

color:var(--text-muted);

}



/* Services Cards */


.services-page{

padding:90px 0;

}


.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.service-card{

background:white;

padding:35px;

border-radius:25px;

border:1px solid #e5f6ff;

box-shadow:0 15px 35px rgba(56,189,248,.10);

transition:.3s;

}



.service-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(56,189,248,.20);

}



.service-icon{

width:70px;

height:70px;

background:#38bdf8;

color:white;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

font-size:28px;

margin-bottom:25px;

}


.service-card h3{

font-size:22px;

color:var(--text-dark);

margin-bottom:15px;

}


.service-card p{

color:var(--text-muted);

line-height:1.8;

}





/* Process */


.process-section{

padding:90px 0;

background:#f2fbff;

}



.process-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.process-card{

background:white;

padding:35px;

border-radius:25px;

text-align:center;

}



.process-card h3{

font-size:45px;

color:#38bdf8;

}


.process-card h4{

font-size:22px;

color:var(--text-dark);

margin:15px 0;

}


.process-card p{

color:var(--text-muted);

}





/* CTA */


.services-cta{

padding:80px 0;

text-align:center;

background:
linear-gradient(
135deg,
#38bdf8,
#79d4ff
);

color:white;

}


.services-cta h2{

font-size:clamp(2rem,4vw,3rem);

margin-bottom:15px;

}


.services-cta p{

margin-bottom:30px;

}



/* Responsive */


@media(max-width:991px){


.services-grid{

grid-template-columns:repeat(2,1fr);

}


.process-grid{

grid-template-columns:1fr;

}


}



@media(max-width:767px){


.services-hero{

padding:60px 0;

}


.services-page,
.process-section{

padding:60px 0;

}


.services-grid{

grid-template-columns:1fr;

}


.service-card{

padding:25px;

}


}


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


.contact-hero{

padding:80px 0;

text-align:center;

background:
linear-gradient(
135deg,
#edf9ff,
#dff5ff,
#f9fdff
);

}


.contact-hero h1{

font-size:clamp(2.3rem,5vw,4rem);

max-width:900px;

margin:25px auto;

color:var(--text-dark);

line-height:1.15;

font-weight:800;

}


.contact-hero p{

max-width:750px;

margin:auto;

font-size:18px;

color:var(--text-muted);

line-height:1.8;

}





/* Contact Layout */


.contact-section{

padding:90px 0;

}



.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}



.contact-info h2,
.contact-form h2{

font-size:36px;

color:var(--text-dark);

margin-bottom:20px;

}



.contact-info p{

color:var(--text-muted);

line-height:1.8;

margin-bottom:30px;

}





.contact-card{

display:flex;

gap:20px;

background:#f9fdff;

padding:25px;

border-radius:20px;

margin-bottom:20px;

border:1px solid #e5f6ff;

}



.contact-card i{

font-size:28px;

color:#38bdf8;

}



.contact-card h3{

color:var(--text-dark);

margin-bottom:5px;

}



.contact-card a{

color:var(--text-muted);

font-size:16px;

}





/* Form */


.contact-form{

background:white;

padding:35px;

border-radius:25px;

box-shadow:0 20px 45px rgba(56,189,248,.15);

border:1px solid #e5f6ff;

}



.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:18px;

border-radius:12px;

border:1px solid #d9edf7;

font-family:Poppins;

font-size:15px;

}



.contact-form button{

width:100%;

padding:16px;

border:none;

border-radius:50px;

background:#38bdf8;

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

}





/* Map */


.map-section{

padding:80px 0;

background:#f2fbff;

}



.map-section img{

width:100%;

height:450px;

object-fit:cover;

border-radius:30px;

box-shadow:0 20px 40px rgba(0,0,0,.12);

}




/* CTA */


.contact-cta{

padding:80px 0;

background:linear-gradient(
135deg,
#38bdf8,
#79d4ff
);

color:white;

text-align:center;

}


.contact-cta h2{

font-size:42px;

margin-bottom:15px;

}


.contact-cta p{

margin-bottom:30px;

}



/* Responsive */


@media(max-width:991px){


.contact-grid{

grid-template-columns:1fr;

}


}



@media(max-width:767px){


.contact-section,
.map-section{

padding:60px 0;

}


.contact-info h2,
.contact-form h2{

font-size:30px;

}


.contact-form{

padding:25px;

}


.map-section img{

height:300px;

}


.contact-cta h2{

font-size:32px;

}

}


/* =========================================================
   FINAL GLOBAL SPACING & PADDING FIXES
   Blooming Hearts ABA Website
========================================================= */

/* Header spacing */
.nav-wrapper {
    min-height: 78px;
}

/* Homepage / About / Services / Contact hero spacing */
.hero,
.about-hero,
.services-hero,
.contact-hero {
    padding-top: 55px;
    padding-bottom: 55px;
}

/* About page spacing */
.about-page {
    padding: 25px 0 35px;
}

.about-page-grid {
    gap: 35px;
}

.about-page-content h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-page-content p {
    margin-bottom: 12px;
}

/* Section heading spacing globally */
.section-heading {
    margin-bottom: 25px;
}

.section-heading h2 {
    margin: 10px 0 5px;
}

.section-heading p {
    margin-bottom: 10px;
}

/* Mission / Vision / Values */
.mission-section {
    padding: 30px 0 35px;
}

.mission-grid {
    gap: 22px;
}

/* Why Choose Us */
.why-section {
    padding: 35px 0 55px;
}

.why-grid {
    gap: 20px;
}

/* Services page */
.services-page {
    padding: 55px 0;
}

.process-section {
    padding: 55px 0;
}

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

/* Contact page */
.contact-section {
    padding: 60px 0;
}

.map-section {
    padding: 55px 0;
}

.contact-cta {
    padding: 60px 0;
}

/* Keep cards compact */
.service-card,
.mission-card,
.why-box {
    padding: 28px;
}

/* Tablet */
@media (max-width: 991px) {

    .hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .about-page {
        padding: 25px 0 30px;
    }

    .mission-section,
    .why-section,
    .services-page,
    .process-section {
        padding: 45px 0;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .about-page,
    .contact-section,
    .map-section {
        padding: 40px 0;
    }

    .mission-section,
    .why-section,
    .services-page,
    .process-section {
        padding: 40px 0;
    }

}

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

.menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:#1f4f82;

    margin:6px 0;

    border-radius:4px;

    transition:.3s;

}

/* Mobile */

@media (max-width:900px){

.nav-wrapper{

    position:relative;

    justify-content:space-between;

}

.menu-toggle{

    display:block;

}

.main-nav{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#ffffff;

    display:none;

    box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.main-nav.active{

    display:block;

}

.main-nav ul{

    flex-direction:column;

    list-style:none;

}

.main-nav li{

    border-bottom:1px solid #eee;

}

.main-nav a{

    display:block;

    padding:18px;

    text-decoration:none;

    color:#24476b;

}

}
