/* =========================================================
   DADDY DAY CARE
   MAIN WEBSITE STYLESHEET
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --navy: #173b59;

    --blue: #2d9fd6;

    --blue-dark: #1976a8;

    --yellow: #ffd45c;

    --orange: #ffad63;

    --pink: #ff8fa3;

    --green: #75c99a;

    --soft: #f4faff;

    --cream: #fffaf0;

    --text: #496274;

    --muted: #7d909e;

    --white: #ffffff;

    --border: rgba(23, 59, 89, 0.08);

    --shadow-soft:
        0 15px 45px rgba(23, 59, 89, 0.08);

    --shadow:
        0 25px 70px rgba(23, 59, 89, 0.13);

    --max-width: 1180px;

    --radius: 28px;

}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

    line-height: 1.5;
}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    height: 82px;

    padding:
        0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        rgba(255, 255, 255, 0.88);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);

}


.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.logo-icon {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            var(--orange)
        );

    font-size: 23px;

    box-shadow:
        0 10px 25px
        rgba(255, 173, 99, 0.25);

}


.logo strong {

    display: block;

    color: var(--navy);

    font-size: 16px;

    font-weight: 900;

}


.logo small {

    display: block;

    margin-top: 1px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


nav {

    display: flex;

    align-items: center;

    gap: 7px;

}


nav a {

    position: relative;

    padding:
        10px 13px;

    color: var(--text);

    font-size: 12px;

    font-weight: 700;

    transition:
        color 0.25s ease;

}


nav a::after {

    content: "";

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 3px;

    height: 2px;

    border-radius: 10px;

    background: var(--blue);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;

}


nav a:hover,
nav a.active {

    color: var(--blue);

}


nav a:hover::after,
nav a.active::after {

    transform:
        scaleX(1);

}


.nav-button {

    padding:
        12px 20px;

    border-radius: 14px;

    background: var(--navy);

    color: white;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(23, 59, 89, 0.15);

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.nav-button:hover {

    transform:
        translateY(-2px);

    background:
        var(--blue);

}


.menu-button {

    display: none;

    border: none;

    background: transparent;

    color: var(--navy);

    font-size: 25px;

    cursor: pointer;

}


/* =========================================================
   GENERAL
   ========================================================= */

main {

    overflow: hidden;

}


.section {

    padding:
        110px 5%;

}


.section-label {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.section-heading {

    width:
        min(700px, 100%);

    margin:
        0 auto 60px;

    text-align: center;

}


.section-heading h2 {

    color: var(--navy);

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;

}


.section-heading h2 span {

    display: block;

    color: var(--blue);

}


.section-heading p {

    max-width: 650px;

    margin:
        20px auto 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

}


.center-button {

    display: flex;

    justify-content: center;

    margin-top: 40px;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding:
        15px 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: white;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 14px 30px
        rgba(45, 159, 214, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.primary-button span {

    font-size: 18px;

    line-height: 0;

}


.primary-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 40px
        rgba(45, 159, 214, 0.32);

}


.secondary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        14px 21px;

    border-radius: 15px;

    background:
        white;

    border:
        1px solid var(--border);

    color: var(--navy);

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        var(--shadow-soft);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;

}


.secondary-button:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(45, 159, 214, 0.35);

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height:
        760px;

    padding:
        150px 7%
        90px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 60px;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #eefaff 0%,
            #ffffff 48%,
            #fff9e9 100%
        );

    overflow: hidden;

}


.hero-content {

    position: relative;

    z-index: 5;

    max-width: 680px;

}


.hero h1 {

    color: var(--navy);

    font-size:
        clamp(50px, 7vw, 82px);

    line-height:
        0.98;

    letter-spacing:
        -4px;

    font-weight:
        950;

}


.hero h1 span {

    display: inline;

    color: var(--blue);

}


.hero h1 span:last-child {

    color: var(--orange);

}


.hero p {

    max-width:
        600px;

    margin-top:
        25px;

    color:
        var(--text);

    font-size:
        16px;

    line-height:
        1.75;

}


.hero-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        32px;

}


.hero-trust {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        25px;

    margin-top:
        40px;

}


.hero-trust div {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

}


.hero-trust strong {

    width:
        34px;

    height:
        34px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        10px;

    background:
        white;

    box-shadow:
        var(--shadow-soft);

    font-size:
        15px;

}


.hero-trust span {

    color:
        var(--muted);

    font-size:
        10px;

    font-weight:
        800;

}


/* HERO VISUAL */

.hero-visual {

    position:
        relative;

    min-height:
        500px;

    display:
        grid;

    place-items:
        center;

}


.sun-glow {

    position:
        absolute;

    width:
        390px;

    height:
        390px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 212, 92, 0.5),
            rgba(255, 212, 92, 0)
        );

    filter:
        blur(15px);

}


.hero-sun {

    position:
        relative;

    z-index:
        2;

    width:
        260px;

    height:
        260px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        linear-gradient(
            135deg,
            #ffe78a,
            #ffad63
        );

    font-size:
        90px;

    box-shadow:
        0 35px 80px
        rgba(255, 173, 99, 0.3);

    animation:
        floatingCard 5s ease-in-out infinite;

}


.floating-card {

    position:
        absolute;

    z-index:
        5;

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        13px 16px;

    border:
        1px solid
        rgba(255,255,255,0.8);

    border-radius:
        18px;

    background:
        rgba(255,255,255,0.88);

    backdrop-filter:
        blur(14px);

    box-shadow:
        var(--shadow);

    animation:
        floatingCard 4s ease-in-out infinite;

}


.floating-card > span {

    width:
        40px;

    height:
        40px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    background:
        var(--soft);

    font-size:
        20px;

}


.floating-card strong {

    display:
        block;

    color:
        var(--navy);

    font-size:
        11px;

}


.floating-card small {

    display:
        block;

    margin-top:
        2px;

    color:
        var(--muted);

    font-size:
        8px;

}


.card-one {

    top:
        70px;

    left:
        5px;

}


.card-two {

    top:
        160px;

    right:
        -5px;

    animation-delay:
        0.8s;

}


.card-three {

    bottom:
        65px;

    left:
        35px;

    animation-delay:
        1.4s;

}


.hero-dots {

    position:
        absolute;

    bottom:
        20px;

    right:
        20px;

    display:
        flex;

    gap:
        6px;

}


.hero-dots span {

    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        var(--blue);

    opacity:
        0.35;

}


.hero-dots span:nth-child(2) {

    background:
        var(--orange);

    opacity:
        0.8;

}


/* HERO BACKGROUND */

.hero-background-shape {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

}


.shape-one {

    width:
        350px;

    height:
        350px;

    top:
        -170px;

    right:
        25%;

    background:
        rgba(45,159,214,0.08);

}


.shape-two {

    width:
        250px;

    height:
        250px;

    bottom:
        -120px;

    left:
        20%;

    background:
        rgba(255,212,92,0.12);

}


.shape-three {

    width:
        180px;

    height:
        180px;

    top:
        120px;

    right:
        5%;

    background:
        rgba(255,143,163,0.08);

}


/* =========================================================
   INTRO CARDS
   ========================================================= */

.intro-section {

    background:
        white;

}


.intro-grid {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;

}


.intro-card {

    padding:
        30px 25px;

    border:
        1px solid var(--border);

    border-radius:
        25px;

    background:
        white;

    box-shadow:
        var(--shadow-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.intro-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.intro-icon {

    width:
        58px;

    height:
        58px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        18px;

    background:
        #eef9ff;

    font-size:
        26px;

}


.intro-card h3 {

    margin-top:
        22px;

    color:
        var(--navy);

    font-size:
        20px;

}


.intro-card p {

    margin-top:
        10px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.7;

}


.intro-card a {

    display:
        inline-block;

    margin-top:
        20px;

    color:
        var(--blue);

    font-size:
        10px;

    font-weight:
        900;

}


/* =========================================================
   ABOUT
   ========================================================= */

.about-preview {

    background:
        var(--soft);

}


.split-section {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1fr
        1fr;

    gap:
        80px;

    align-items:
        center;

}


.split-content h2 {

    color:
        var(--navy);

    font-size:
        clamp(38px, 5vw, 58px);

    line-height:
        1.05;

    letter-spacing:
        -2px;

}


.split-content h2 span {

    display:
        block;

    color:
        var(--blue);

}


.split-content p {

    max-width:
        560px;

    margin-top:
        18px;

    color:
        var(--muted);

    line-height:
        1.75;

    font-size:
        14px;

}


.split-content .primary-button {

    margin-top:
        28px;

}


.about-visual {

    position:
        relative;

    min-height:
        450px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        40px;

    background:
        radial-gradient(
            circle at center,
            #ffffff,
            #dff5ff
        );

    overflow:
        hidden;

}


.visual-circle {

    width:
        230px;

    height:
        230px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            var(--orange)
        );

    font-size:
        85px;

    box-shadow:
        0 30px 70px
        rgba(255,155,84,0.25);

    animation:
        floatingCard 5s ease-in-out infinite;

}


.visual-bubble {

    position:
        absolute;

    width:
        70px;

    height:
        70px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        22px;

    background:
        white;

    font-size:
        30px;

    box-shadow:
        var(--shadow);

    animation:
        floatingCard 4s ease-in-out infinite;

}


.bubble-one {

    top:
        60px;

    left:
        60px;

}


.bubble-two {

    top:
        80px;

    right:
        60px;

    animation-delay:
        0.7s;

}


.bubble-three {

    bottom:
        60px;

    right:
        110px;

    animation-delay:
        1.2s;

}


/* =========================================================
   ACTIVITIES
   ========================================================= */

.activities-preview {

    background:
        white;

}


.activity-grid {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;

}


.activity-card {

    min-height:
        270px;

    padding:
        30px;

    border-radius:
        28px;

    background:
        var(--soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.activity-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.activity-icon {

    width:
        65px;

    height:
        65px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        25px;

    border-radius:
        20px;

    background:
        white;

    font-size:
        30px;

    box-shadow:
        var(--shadow-soft);

}


.activity-card > span {

    color:
        var(--blue);

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

}


.activity-card h3 {

    margin-top:
        8px;

    color:
        var(--navy);

    font-size:
        21px;

}


.activity-card p {

    margin-top:
        10px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.7;

}


/* =========================================================
   SAFETY / WHY US
   ========================================================= */

.safety {

    padding:
        100px 5%;

    background:
        var(--navy);

    color:
        white;

}


.safety-content {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap:
        80px;

    align-items:
        center;

}


.safety .section-label {

    color:
        var(--yellow);

}


.safety h2 {

    color:
        white;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height:
        1.05;

    letter-spacing:
        -2px;

}


.safety h2 span {

    display:
        block;

    color:
        var(--yellow);

}


.safety-content > div > p {

    max-width:
        520px;

    margin-top:
        20px;

    color:
        rgba(255,255,255,0.7);

    font-size:
        14px;

    line-height:
        1.8;

}


.safety-features {

    display:
        flex;

    flex-direction:
        column;

    gap:
        15px;

}


.safety-feature {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    padding:
        20px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius:
        22px;

    background:
        rgba(255,255,255,0.05);

}


.safety-feature > span {

    width:
        55px;

    height:
        55px;

    flex-shrink:
        0;

    display:
        grid;

    place-items:
        center;

    border-radius:
        17px;

    background:
        rgba(255,255,255,0.08);

    font-size:
        24px;

}


.safety-feature h3 {

    color:
        white;

    font-size:
        16px;

}


.safety-feature p {

    margin-top:
        5px;

    color:
        rgba(255,255,255,0.6);

    font-size:
        11px;

}


/* =========================================================
   PRICING PREVIEW
   ========================================================= */

.pricing-preview {

    background:
        var(--cream);

}


.mini-pricing-grid {

    width:
        min(1050px, 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

}


.mini-price-card {

    padding:
        35px;

    border-radius:
        28px;

    background:
        white;

    box-shadow:
        var(--shadow-soft);

    transition:
        transform 0.3s ease;

}


.mini-price-card:hover {

    transform:
        translateY(-8px);

}


.mini-price-card > span {

    font-size:
        30px;

}


.mini-price-card h3 {

    margin-top:
        20px;

    color:
        var(--navy);

    font-size:
        21px;

}


.mini-price-card p {

    margin-top:
        10px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.7;

}


.mini-price-card a {

    display:
        inline-block;

    margin-top:
        22px;

    color:
        var(--blue);

    font-size:
        10px;

    font-weight:
        900;

}


.featured-mini {

    border:
        2px solid var(--yellow);

    transform:
        translateY(-8px);

}


/* =========================================================
   GALLERY PREVIEW
   ========================================================= */

.gallery-preview {

    background:
        white;

}


.gallery-mini-grid {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;

}


.gallery-mini {

    height:
        240px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        flex-end;

    align-items:
        center;

    gap:
        10px;

    padding:
        25px;

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #dff5ff,
            #fff4c9
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.gallery-mini:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.gallery-mini span {

    font-size:
        55px;

}


.gallery-mini strong {

    color:
        var(--navy);

    font-size:
        13px;

}


.gallery-mini.gallery-two {

    background:
        linear-gradient(
            135deg,
            #e8f8ff,
            #dff1ff
        );

}


.gallery-mini.gallery-three {

    background:
        linear-gradient(
            135deg,
            #fff4c9,
            #ffe7d4
        );

}


.gallery-mini.gallery-four {

    background:
        linear-gradient(
            135deg,
            #f5eaff,
            #ffe9ef
        );

}


/* =========================================================
   CTA
   ========================================================= */

.cta {

    position:
        relative;

    padding:
        110px 5%;

    text-align:
        center;

    background:
        linear-gradient(
            135deg,
            #eaf9ff,
            #fff6d9
        );

    overflow:
        hidden;

}


.cta::before {

    content:
        "";

    position:
        absolute;

    width:
        300px;

    height:
        300px;

    left:
        -150px;

    top:
        -120px;

    border-radius:
        50%;

    background:
        rgba(45,159,214,0.1);

}


.cta::after {

    content:
        "";

    position:
        absolute;

    width:
        250px;

    height:
        250px;

    right:
        -100px;

    bottom:
        -100px;

    border-radius:
        50%;

    background:
        rgba(255,173,99,0.12);

}


.cta-content {

    position:
        relative;

    z-index:
        2;

}


.cta h2 {

    color:
        var(--navy);

    font-size:
        clamp(40px, 5vw, 62px);

    line-height:
        1;

    letter-spacing:
        -2px;

}


.cta h2 span {

    display:
        block;

    color:
        var(--blue);

}


.cta p {

    max-width:
        580px;

    margin:
        20px auto 28px;

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.7;

}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

    padding:
        55px 5%
        25px;

    background:
        #102d44;

    color:
        white;

}


.footer-content {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1fr
        1fr
        auto;

    gap:
        50px;

    align-items:
        center;

}


.footer-brand {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

}


.footer-logo {

    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        15px;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size:
        22px;

}


.footer-brand strong {

    display:
        block;

    font-size:
        15px;

}


.footer-brand span {

    display:
        block;

    margin-top:
        3px;

    color:
        rgba(255,255,255,0.5);

    font-size:
        9px;

    letter-spacing:
        1px;

}


.footer-content > p {

    max-width:
        350px;

    color:
        rgba(255,255,255,0.55);

    font-size:
        11px;

    line-height:
        1.7;

}


.footer-links {

    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        flex-end;

    gap:
        13px;

}


.footer-links a {

    color:
        rgba(255,255,255,0.65);

    font-size:
        10px;

    font-weight:
        700;

    transition:
        color 0.2s ease;

}


.footer-links a:hover {

    color:
        var(--yellow);

}


.footer-bottom {

    width:
        min(var(--max-width), 100%);

    margin:
        40px auto 0;

    padding-top:
        20px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        rgba(255,255,255,0.4);

    font-size:
        9px;

}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {

    background:
        var(--soft);

}


.contact-grid {

    width:
        min(1100px, 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap:
        40px;

}


.contact-info {

    display:
        flex;

    flex-direction:
        column;

    gap:
        15px;

}


.contact-item {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    padding:
        20px;

    border-radius:
        20px;

    background:
        white;

    box-shadow:
        var(--shadow-soft);

}


.contact-icon {

    width:
        50px;

    height:
        50px;

    flex-shrink:
        0;

    display:
        grid;

    place-items:
        center;

    border-radius:
        15px;

    background:
        #eef9ff;

    font-size:
        21px;

}


.contact-item span {

    display:
        block;

    color:
        var(--blue);

    font-size:
        8px;

    font-weight:
        900;

    letter-spacing:
        1.3px;

}


.contact-item strong {

    display:
        block;

    margin-top:
        3px;

    color:
        var(--navy);

    font-size:
        12px;

}


.contact-form {

    padding:
        35px;

    border-radius:
        28px;

    background:
        white;

    box-shadow:
        var(--shadow-soft);

}


.contact-form h3 {

    color:
        var(--navy);

    font-size:
        25px;

}


.contact-form > p {

    margin:
        6px 0 25px;

    color:
        var(--muted);

    font-size:
        12px;

}


.contact-form input,
.contact-form textarea,
.contact-form select {

    width:
        100%;

    padding:
        15px 17px;

    margin-bottom:
        13px;

    border:
        1px solid
        var(--border);

    border-radius:
        14px;

    outline:
        none;

    background:
        white;

    color:
        var(--navy);

    font-size:
        12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {

    border-color:
        rgba(45,159,214,0.5);

    box-shadow:
        0 0 0 4px
        rgba(45,159,214,0.08);

}


.contact-form textarea {

    resize:
        vertical;

}


.form-row {

    display:
        grid;

    grid-template-columns:
        1fr
        1fr;

    gap:
        13px;

}


.contact-form .primary-button {

    border:
        none;

    cursor:
        pointer;

}


.contact-note {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        18px;

    border-radius:
        18px;

    background:
        #fff7dc;

}


.contact-note span {

    font-size:
        23px;

}


.contact-note p {

    color:
        var(--text);

    font-size:
        11px;

    line-height:
        1.6;

}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {

    min-height:
        500px;

    padding:
        160px 7%
        80px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    background:
        linear-gradient(
            135deg,
            #eaf9ff,
            #fff8e8
        );

}


.page-hero h1 {

    max-width:
        950px;

    color:
        var(--navy);

    font-size:
        clamp(45px, 7vw, 75px);

    line-height:
        1;

    letter-spacing:
        -3px;

    font-weight:
        900;

}


.page-hero h1 span {

    display:
        block;

    color:
        var(--blue);

}


.page-hero p {

    max-width:
        650px;

    margin-top:
        25px;

    color:
        var(--muted);

    font-size:
        16px;

    line-height:
        1.7;

}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.value-grid {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;

}


.value-card {

    padding:
        35px 28px;

    background:
        white;

    border-radius:
        25px;

    box-shadow:
        var(--shadow-soft);

    text-align:
        center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.value-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.value-card > div {

    width:
        65px;

    height:
        65px;

    display:
        grid;

    place-items:
        center;

    margin:
        auto auto 25px;

    border-radius:
        20px;

    background:
        #eef9ff;

    font-size:
        30px;

}


.value-card h3 {

    color:
        var(--navy);

    font-size:
        19px;

}


.value-card p {

    margin-top:
        12px;

    color:
        var(--muted);

    font-size:
        13px;

    line-height:
        1.7;

}


/* =========================================================
   ACTIVITY PAGE
   ========================================================= */

.activity-large-grid {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

}


.activity-large-card {

    padding:
        35px;

    min-height:
        300px;

    border-radius:
        28px;

    background:
        var(--soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.activity-large-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.large-activity-icon {

    width:
        70px;

    height:
        70px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        28px;

    border-radius:
        22px;

    background:
        white;

    font-size:
        32px;

    box-shadow:
        var(--shadow-soft);

}


.activity-large-card > span {

    color:
        var(--blue);

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

}


.activity-large-card h3 {

    margin-top:
        8px;

    color:
        var(--navy);

    font-size:
        23px;

}


.activity-large-card p {

    margin-top:
        12px;

    color:
        var(--muted);

    font-size:
        13px;

    line-height:
        1.7;

}


/* =========================================================
   PRICING PAGE
   ========================================================= */

.pricing-section {

    background:
        var(--soft);

}


.pricing-grid {

    width:
        min(1100px, 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

    align-items:
        stretch;

}


.pricing-card {

    position:
        relative;

    padding:
        35px;

    background:
        white;

    border-radius:
        30px;

    box-shadow:
        var(--shadow-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.pricing-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.pricing-card.featured {

    border:
        2px solid var(--yellow);

    transform:
        translateY(-12px);

}


.pricing-card.featured:hover {

    transform:
        translateY(-18px);

}


.popular {

    position:
        absolute;

    top:
        20px;

    right:
        20px;

    padding:
        7px 11px;

    border-radius:
        20px;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size:
        8px;

    font-weight:
        900;

    letter-spacing:
        1px;

}


.pricing-icon {

    width:
        62px;

    height:
        62px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        19px;

    background:
        #eef9ff;

    font-size:
        28px;

    margin-bottom:
        25px;

}


.pricing-label {

    color:
        var(--blue);

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

}


.pricing-card h3 {

    margin-top:
        7px;

    color:
        var(--navy);

    font-size:
        24px;

}


.price {

    display:
        flex;

    align-items:
        baseline;

    gap:
        5px;

    margin-top:
        22px;

}


.price small {

    color:
        var(--blue);

    font-weight:
        900;

}


.price strong {

    color:
        var(--navy);

    font-size:
        22px;

}


.pricing-card > p {

    margin-top:
        10px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.6;

}


.pricing-card ul {

    list-style:
        none;

    display:
        flex;

    flex-direction:
        column;

    gap:
        13px;

    margin:
        25px 0 30px;

}


.pricing-card li {

    color:
        var(--text);

    font-size:
        12px;

    font-weight:
        600;

}


.pricing-card .primary-button,
.pricing-card .secondary-button {

    width:
        100%;

}


/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-grid {

    width:
        min(var(--max-width), 100%);

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows:
        250px;

    gap:
        18px;

}


.gallery-item {

    position:
        relative;

    display:
        flex;

    align-items:
        flex-end;

    padding:
        25px;

    overflow:
        hidden;

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            #dff5ff,
            #fff4c9
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.gallery-item:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);

}


.gallery-item::before {

    content:
        "";

    position:
        absolute;

    width:
        180px;

    height:
        180px;

    top:
        -60px;

    right:
        -40px;

    border-radius:
        50%;

    background:
        rgba(255,255,255,0.4);

}


.gallery-item > div {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        10px 15px;

    border-radius:
        15px;

    background:
        rgba(255,255,255,0.88);

    backdrop-filter:
        blur(10px);

}


.gallery-item span {

    font-size:
        22px;

}


.gallery-item strong {

    color:
        var(--navy);

    font-size:
        13px;

}


.gallery-two {

    background:
        linear-gradient(
            135deg,
            #e8f8ff,
            #dff1ff
        );

}


.gallery-three {

    background:
        linear-gradient(
            135deg,
            #fff4c9,
            #ffe7d4
        );

}


.gallery-four {

    background:
        linear-gradient(
            135deg,
            #e9fff4,
            #dff5ff
        );

}


.gallery-five {

    background:
        linear-gradient(
            135deg,
            #f5eaff,
            #e8f8ff
        );

}


.gallery-six {

    background:
        linear-gradient(
            135deg,
            #ffe9ef,
            #fff4c9
        );

}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes floatingCard {

    0% {

        transform:
            translateY(0px);

    }

    50% {

        transform:
            translateY(-10px);

    }

    100% {

        transform:
            translateY(0px);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1100px) {

    .navbar {

        padding:
            0 4%;

    }


    nav {

        gap:
            0;

    }


    nav a {

        padding:
            10px 8px;

    }


    .intro-grid,
    .activity-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .gallery-mini-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .value-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 900px) {

    .navbar {

        height:
            72px;

    }


    .navbar nav,
    .navbar .nav-button {

        display:
            none;

    }


    .menu-button {

        display:
            block;

    }


    .navbar.nav-open nav {

        position:
            absolute;

        top:
            72px;

        left:
            4%;

        right:
            4%;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        padding:
            15px;

        border-radius:
            20px;

        background:
            white;

        box-shadow:
            var(--shadow);

    }


    .navbar.nav-open nav a {

        padding:
            13px 15px;

    }


    .hero {

        grid-template-columns:
            1fr;

        padding-top:
            130px;

        text-align:
            center;

    }


    .hero-content {

        margin:
            auto;

    }


    .hero-buttons,
    .hero-trust {

        justify-content:
            center;

    }


    .hero-visual {

        min-height:
            400px;

    }


    .split-section,
    .safety-content,
    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .about-visual {

        min-height:
            350px;

    }


    .pricing-grid {

        grid-template-columns:
            1fr;

    }


    .pricing-card.featured {

        transform:
            none;

    }


    .pricing-card.featured:hover {

        transform:
            translateY(-8px);

    }


    .activity-large-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-content {

        grid-template-columns:
            1fr;

        gap:
            25px;

    }


    .footer-links {

        justify-content:
            flex-start;

    }

}


@media (max-width: 600px) {

    .section {

        padding:
            80px 5%;

    }


    .hero {

        min-height:
            700px;

        padding:
            120px 5%
            70px;

    }


    .hero h1 {

        font-size:
            50px;

        letter-spacing:
            -2.5px;

    }


    .hero-visual {

        min-height:
            330px;

    }


    .hero-sun {

        width:
            190px;

        height:
            190px;

        font-size:
            65px;

    }


    .sun-glow {

        width:
            280px;

        height:
            280px;

    }


    .floating-card {

        transform:
            scale(0.85);

    }


    .card-one {

        left:
            -5px;

        top:
            30px;

    }


    .card-two {

        right:
            -5px;

        top:
            100px;

    }


    .card-three {

        left:
            0;

        bottom:
            20px;

    }


    .intro-grid,
    .activity-grid,
    .value-grid,
    .activity-large-grid,
    .gallery-grid,
    .gallery-mini-grid {

        grid-template-columns:
            1fr;

    }


    .mini-pricing-grid {

        grid-template-columns:
            1fr;

    }


    .featured-mini {

        transform:
            none;

    }


    .page-hero {

        min-height:
            430px;

        padding:
            130px 5%
            70px;

    }


    .page-hero h1 {

        font-size:
            45px;

        letter-spacing:
            -2px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap:
            0;

    }


    .contact-form {

        padding:
            25px;

    }


    .footer-bottom {

        flex-direction:
            column;

    }


    .footer-bottom span:last-child {

        display:
            none;

    }

}