@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('styles-social.css');
/* =========================
   VARIABLES / COLORS
   ========================= */
:root {
    --navy: #082f49;
    --blue: #087fbd;
    --blue-2: #0ea5d9;
    --red: #d62f28;
    --red-dark: #b91f1a;
    --ink: #102a3a;
    --muted: #5f7380;
    --ice: #eef8fc;
    --line: #dce8ee;
    --white: #fff;
    --shadow: 0 20px 55px rgba(8,47,73,.12);
    --radius: 22px
}

/* =========================
   GLOBAL / RESET
   ========================= */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Manrope,Arial,sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65
}

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

a {
    color: inherit;
    text-decoration: none
}

button,

input,

select,

textarea {
    font: inherit
}

.container {
    width: min(1160px,calc(100% - 40px));
    margin: auto
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.section-title {
    margin: 0;
    font-size: clamp(2rem,4vw,3.5rem);
    line-height: 1.08;
    letter-spacing: -.045em
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 680px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s ease;
    cursor: pointer
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 12px 24px rgba(214,47,40,.22)
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px)
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border-color: #c9dce5
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.icon {
    width: 28px;
    height: 28px;
    fill: none
}

/* =========================
   TOP BAR + HEADER / NAV
   ========================= */
.topbar {
    background: var(--navy);
    color: #d8edf6;
    font-size: .84rem
}

.topbar .container {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar a {
    font-weight: 800;
    color: #fff
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220,232,238,.8)
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 9px 15px;
    border-radius: 12px
}

.brand img {
    width: 215px;
    height: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    font-size: .91rem;
    font-weight: 750;
    color: #294554
}

.nav-links a:hover,

.nav-links a.active {
    color: var(--blue)
}






.nav-links .btn-primary {
    color: white;
}

.nav-links .btn-primary:hover {
    color: white;
}







.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    color: var(--navy)
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    margin: 5px
}

/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    color: white;
    background: linear-gradient(90deg,rgba(4,31,48,.96) 0%,rgba(4,31,48,.83) 48%,rgba(4,31,48,.28) 100%),url('images/hero-comfort.jpg') center/cover
}

.hero-content {
    max-width: 680px;
    padding: 100px 0
}

.hero .eyebrow {
    color: #82d7f4
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem,6.8vw,5.8rem);
    line-height: .98;
    letter-spacing: -.06em
}

.hero p {
    font-size: 1.12rem;
    color: #d9eaf1;
    max-width: 590px;
    margin: 26px 0 32px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero .btn-secondary {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.45);
    color: white
}

.hero-card {
    position: absolute;
    right: max(20px,calc((100% - 1160px)/2));
    bottom: -58px;
    width: min(420px,calc(100% - 40px));
    padding: 24px;
    background: white;
    color: var(--ink);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center
}

.hero-card .icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: #e5f6fc;
    color: var(--blue);
    display: grid;
    place-items: center
}

.hero-card strong {
    display: block;
    font-size: 1.08rem
}

.hero-card span {
    font-size: .9rem;
    color: var(--muted)
}

/* =========================
   TRUST STRIP
   ========================= */
.trust-strip {
    padding: 98px 0 45px
}

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

.trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px;
    border-bottom: 1px solid var(--line)
}

.trust-item .icon {
    color: var(--blue);
    flex: 0 0 auto
}

.trust-item strong {
    display: block
}

.trust-item span {
    color: var(--muted);
    font-size: .88rem
}

/* =========================
   GENERAL SECTIONS
   ========================= */
.section {
    padding: 105px 0
}

.section-soft {
    background: var(--ice)
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 42px
}

/* =========================
   SERVICES
   ========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.service-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    transition: .25s ease
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #e9f7fc;
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 26px
}

.service-icon .icon {
    width: 34px;
    height: 34px
}

.service-card h3 {
    font-size: 1.08rem;
    margin: 0 0 8px
}

.service-card p {
    font-size: .89rem;
    color: var(--muted);
    margin: 0
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--red);
    font-size: .82rem;
    font-weight: 800
}

/* =========================
   ABOUT
   ========================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 70px;
    align-items: center
}

.about-photo {
    position: relative
}

.about-photo img {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover
}

.experience-badge {
    position: absolute;
    right: -24px;
    bottom: 28px;
    background: var(--red);
    color: white;
    padding: 20px 23px;
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.experience-badge strong {
    display: block;
    font-size: 2.1rem;
    line-height: 1
}

.experience-badge span {
    font-size: .82rem
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0
}

.check-list li {
    position: relative;
    padding-left: 29px;
    margin: 12px 0;
    color: #385361
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900
}

/* =========================
   CTA
   ========================= */
.cta {
    background: linear-gradient(135deg,var(--navy),#07577e);
    color: white;
    border-radius: 28px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.cta h2 {
    font-size: clamp(2rem,4vw,3.2rem);
    line-height: 1.05;
    margin: 0
}

.cta p {
    color: #cce3ed;
    margin: 12px 0 0
}

/* =========================
   INNER PAGE HERO
   ========================= */
.page-hero {
    padding: 90px 0 76px;
    background: linear-gradient(135deg,#e8f7fc,#f7fbfd);
    border-bottom: 1px solid var(--line)
}

.page-hero .lead {
    margin-bottom: 0
}

/* =========================
   DETAILS / BRANDS
   ========================= */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px
}

.detail-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px
}

.detail-card .service-icon {
    margin: 0
}

.detail-card h3 {
    margin: 0 0 8px
}

.detail-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 32px
}

.brand-pill {
    padding: 24px 15px;
    text-align: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-weight: 800;
    color: #385361
}

/* =========================
   CONTACT
   ========================= */
.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 60px;
    align-items: start
}

.contact-cards {
    display: grid;
    gap: 15px;
    margin-top: 30px
}

.contact-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 15px
}

.contact-card .icon {
    color: var(--blue);
    flex: 0 0 auto
}

.contact-card strong {
    display: block
}

.contact-card span,

.contact-card a {
    font-size: .9rem;
    color: var(--muted)
}

.contact-form {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

.field {
    display: grid;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: .85rem;
    font-weight: 800
}

.field input,

.field select,

.field textarea {
    width: 100%;
    border: 1px solid #cddde4;
    border-radius: 10px;
    padding: 13px 14px;
    background: #fbfdfe;
    color: var(--ink);
    outline: none
}

.field input:focus,

.field select:focus,

.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8,127,189,.12)
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

.form-note {
    font-size: .79rem;
    color: var(--muted)
}

.form-status {
    display: none;
    margin: 18px 0 0;
    padding: 13px 15px;
    border-radius: 10px;
    background: #e8f8ef;
    color: #14663a;
    font-size: .9rem
}

.form-status.show {
    display: block
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    background: #061f2e;
    color: #c8dde6;
    margin-top: 105px
}

.footer-grid {
    padding: 62px 0 44px;
    display: grid;
    grid-template-columns: 1.3fr .7fr .8fr;
    gap: 55px
}

.footer-logo {
    background: #0b3851;
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 10px;
    margin-bottom: 18px
}

.footer-logo img {
    width: 210px
}

.site-footer p {
    font-size: .9rem;
    color: #9db8c4;
    max-width: 390px
}

.site-footer h3 {
    color: white;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .11em
}

.footer-links {
    display: grid;
    gap: 9px;
    font-size: .9rem
}

.footer-links a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    font-size: .8rem;
    color: #83a3b2;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

/* =========================
   RESPONSIVE - TABLET
   ========================= */
@media (max-width: 900px) {
    .nav-toggle {
        display: block
    }
    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 123px;
        background: white;
        padding: 24px 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(8,47,73,.1)
    }
    .nav-links.open {
        display: flex
    }
    .nav-links .btn {
        width: 100%
    }
    .hero {
        min-height: 630px;
        background-position: 60% center
    }
    .hero-content {
        padding: 80px 0 120px
    }
    .hero-card {
        left: 20px;
        right: auto
    }
    .trust-grid,
    .services-grid {
        grid-template-columns: repeat(2,1fr)
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }
    .about-photo {
        max-width: 650px
    }
    .details-grid {
        grid-template-columns: 1fr
    }
    .brand-grid {
        grid-template-columns: repeat(2,1fr)
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
    .footer-grid>div:first-child {
        grid-column: 1/-1
    }
}

/* =========================
   RESPONSIVE - MOBILE
   ========================= */
@media (max-width: 600px) {
    .container {
        width: min(100% - 28px,1160px)
    }
    .topbar .container span {
        display: none
    }
    .nav {
        height: 72px
    }
    .brand img {
        width: 180px
    }
    .nav-links {
        top: 113px
    }
    .hero {
        min-height: 680px
    }
    .hero-content {
        padding-top: 70px
    }
    .hero h1 {
        font-size: 3.2rem
    }
    .hero-card {
        bottom: -70px
    }
    .trust-strip {
        padding-top: 115px
    }
    .trust-grid,
    .services-grid {
        grid-template-columns: 1fr
    }
    .section {
        padding: 76px 0
    }
    .section-heading {
        display: block
    }
    .service-card {
        padding: 23px
    }
    .about-grid {
        gap: 45px
    }
    .experience-badge {
        right: 12px;
        bottom: 12px
    }
    .cta {
        padding: 35px 25px;
        display: block
    }
    .cta .btn {
        margin-top: 24px;
        width: 100%
    }
    .page-hero {
        padding: 65px 0 55px
    }
    .details-grid {
        gap: 15px
    }
    .detail-card {
        grid-template-columns: 1fr
    }
    .brand-grid {
        grid-template-columns: 1fr 1fr
    }
    .contact-form {
        padding: 24px
    }
    .form-grid {
        grid-template-columns: 1fr
    }
    .field.full {
        grid-column: auto
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
    .footer-grid>div:first-child {
        grid-column: auto
    }
    .footer-bottom {
        display: block
    }
    .hero-actions .btn {
        width: 100%
    }
}
