/* =========================================================
   SEVAN HOME CARE
   WEBSITE MASTER STYLES
   Navy + Royal Blue Theme
   ========================================================= */

:root {
    --navy-dark: #071d34;
    --navy: #0b2a4a;
    --royal-blue: #1557b8;
    --blue: #2874d8;
    --soft-blue: #eef5ff;

    --white: #ffffff;
    --black: #111827;

    --text: #344054;
    --muted: #667085;
    --border: #e2e8f0;
    --light: #f7f9fc;

    --container: 1240px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 5px 18px rgba(7, 29, 52, 0.06);
    --shadow-md: 0 12px 35px rgba(7, 29, 52, 0.10);

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 8px 22px rgba(21, 87, 184, 0.22);
}

.btn-outline {
    background: var(--white);
    border-color: var(--border);
    color: var(--navy);
}

.btn-outline:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.btn-light {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.btn-full {
    width: 100%;
}


/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--royal-blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 15px;

    color: var(--navy);

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.9);

    font-size: 12px;
}

.top-bar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    transition: color var(--transition);
}

.top-bar-right a:hover {
    color: #8db9ff;
}

.top-bar-divider {
    opacity: 0.35;
}

.top-icon {
    margin-right: 5px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* Logo */

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--navy);
    color: var(--white);

    font-size: 22px;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: var(--navy);

    font-size: 18px;
    font-weight: 800;

    letter-spacing: 0.04em;
}

.logo-text small {
    margin-top: 4px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


/* Desktop navigation */

.main-navigation {
    display: flex;
    align-items: center;

    gap: 28px;
    margin-left: auto;
}

.main-navigation a {
    position: relative;

    padding: 30px 0;

    color: #475467;

    font-size: 14px;
    font-weight: 600;

    transition: color var(--transition);
}

.main-navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--royal-blue);

    transition: width var(--transition);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--royal-blue);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}


/* Header actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;

    flex-shrink: 0;
}

.login-link {
    color: var(--navy);

    font-size: 14px;
    font-weight: 700;

    transition: color var(--transition);
}

.login-link:hover {
    color: var(--royal-blue);
}


/* Mobile menu */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--white);
}

.mobile-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--navy);
}

.mobile-navigation {
    display: none;

    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.mobile-navigation nav {
    display: flex;
    flex-direction: column;
}

.mobile-navigation a {
    padding: 15px 20px;

    border-bottom: 1px solid var(--border);

    color: var(--navy);

    font-size: 15px;
    font-weight: 600;
}

.mobile-navigation a:hover {
    background: var(--soft-blue);
}

.mobile-navigation .mobile-book-btn {
    margin: 15px 20px;

    border: 0;
    border-radius: 8px;

    background: var(--royal-blue);
    color: var(--white);

    text-align: center;
}

.mobile-navigation.is-open {
    display: block;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;

    padding: 90px 0 100px;

    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #eef5ff 55%,
            #ffffff 100%
        );

    overflow: hidden;
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: rgba(40, 116, 216, 0.07);
}

.hero-container {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--royal-blue);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 22px;

    color: var(--navy);

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content h1 span {
    color: var(--royal-blue);
}

.hero-content > p {
    max-width: 650px;

    margin: 0 0 30px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 35px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.hero-trust-item strong {
    color: var(--navy);
    font-size: 14px;
}

.hero-trust-item span {
    color: var(--muted);
    font-size: 12px;
}


/* Booking card */

.hero-booking-card {
    padding: 32px;

    background: var(--white);

    border: 1px solid rgba(21, 87, 184, 0.10);
    border-radius: var(--radius-lg);

    box-shadow: 0 20px 50px rgba(7, 29, 52, 0.12);
}

.booking-card-label {
    color: var(--royal-blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-card-header h2 {
    margin: 8px 0 8px;

    color: var(--navy);

    font-size: 25px;
    line-height: 1.2;
}

.booking-card-header p {
    margin: 0 0 25px;

    color: var(--muted);

    font-size: 14px;
}

.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}

.form-group select {
    width: 100%;
    min-height: 48px;

    padding: 0 14px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--white);
    color: var(--text);

    outline: none;
}

.form-group select:focus {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(21, 87, 184, 0.08);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.service-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(21, 87, 184, 0.25);

    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 12px;

    background: var(--soft-blue);
    color: var(--royal-blue);

    font-size: 23px;
}

.service-card h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 18px;
}

.service-card p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}

.service-card a {
    color: var(--royal-blue);

    font-size: 13px;
    font-weight: 700;
}

.service-card a:hover {
    color: var(--navy);
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.process-section {
    background: var(--light);
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-step {
    position: relative;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--soft-blue);
    color: var(--royal-blue);

    font-size: 13px;
    font-weight: 800;
}

.process-step h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 17px;
}

.process-step p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WHY SEVAN
   ========================================================= */

.why-section {
    background: var(--white);
}

.why-container {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);

    align-items: center;

    gap: 80px;
}

.why-content > h2 {
    max-width: 600px;

    margin: 0 0 18px;

    color: var(--navy);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
}

.why-content > p {
    max-width: 620px;

    margin: 0 0 35px;

    color: var(--muted);

    font-size: 16px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--soft-blue);
    color: var(--royal-blue);

    font-weight: 800;
}

.why-item h3 {
    margin: 0 0 4px;

    color: var(--navy);

    font-size: 16px;
}

.why-item p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

.why-card {
    padding: 45px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--royal-blue)
        );

    color: var(--white);

    box-shadow: 0 20px 45px rgba(21, 87, 184, 0.20);
}

.why-card-label {
    display: block;

    margin-bottom: 20px;

    color: #bcd6ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-card strong {
    display: block;

    margin-bottom: 30px;

    font-size: 29px;
    line-height: 1.3;
}


/* =========================================================
   APP SECTION
   ========================================================= */

.app-section {
    background: var(--soft-blue);
}

.app-container {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 360px;

    align-items: center;

    gap: 80px;
}

.app-content h2 {
    max-width: 650px;

    margin: 0 0 18px;

    color: var(--navy);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
}

.app-content > p {
    max-width: 620px;

    margin: 0 0 28px;

    color: var(--muted);

    font-size: 16px;
}

.app-buttons {
    display: flex;
    gap: 12px;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;
    min-height: 48px;

    padding: 0 20px;

    border-radius: 8px;

    background: var(--navy);
    color: var(--white);

    font-size: 13px;
    font-weight: 700;
}

.app-store-button:hover {
    background: var(--royal-blue);
}

.app-visual {
    display: flex;
    justify-content: center;
}

.app-phone-placeholder {
    width: 210px;
    height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 8px solid var(--navy);
    border-radius: 30px;

    background: var(--white);
    color: var(--royal-blue);

    font-weight: 800;

    box-shadow: var(--shadow-md);
}


/* =========================================================
   PROMOTION
   ========================================================= */

.promo-section {
    background: var(--white);
}

.promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px 50px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--royal-blue)
        );

    color: var(--white);
}

.promo-content span {
    display: block;

    margin-bottom: 10px;

    color: #c8dcff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-content h2 {
    margin: 0 0 10px;

    font-size: 30px;
    line-height: 1.2;
}

.promo-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    background: var(--light);
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.review-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.review-stars {
    margin-bottom: 15px;

    color: var(--royal-blue);

    font-size: 16px;
    letter-spacing: 2px;
}

.review-card p {
    margin: 0 0 20px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}

.review-card strong {
    color: var(--navy);

    font-size: 14px;
}


/* =========================================================
   SERVICE AREAS
   ========================================================= */

.areas-section {
    background: var(--white);
}

.areas-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.area-card {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    color: var(--navy);

    font-weight: 700;

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.area-card:hover {
    transform: translateY(-3px);

    border-color: rgba(21, 87, 184, 0.25);

    background: var(--soft-blue);
}

.area-card span {
    color: var(--royal-blue);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.final-cta .section-eyebrow {
    color: #a9caff;
}

.final-cta h2 {
    margin: 0 0 12px;

    color: var(--white);

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.final-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.72);
}

.footer-main {
    padding: 75px 0 60px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 55px;
}

.footer-about p {
    max-width: 360px;

    margin: 22px 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    line-height: 1.8;
}

.footer-logo .logo-mark {
    background: var(--royal-blue);
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-text small {
    color: rgba(255, 255, 255, 0.55);
}


/* Footer contact */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    transition: color var(--transition);
}

.footer-contact a:hover {
    color: #9fc5ff;
}

.footer-contact span {
    display: inline-block;

    width: 24px;

    color: #8db9ff;
}


/* Footer columns */

.footer-column h3 {
    margin: 0 0 20px;

    color: var(--white);

    font-size: 15px;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column li a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-column li a:hover {
    padding-left: 4px;

    color: #9fc5ff;
}

.footer-cta {
    display: inline-flex;

    margin-top: 15px;

    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;
}

.footer-cta:hover {
    border-color: #7eaeef;
    background: rgba(255, 255, 255, 0.06);
}


/* Footer bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    min-height: 80px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 25px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
}

.footer-credit {
    display: flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.50);

    font-size: 11px;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--white);
}

.footer-credit img {
    width: 26px;
    height: 26px;

    object-fit: contain;
}

.footer-credit strong {
    color: #9fc5ff;

    font-size: 12px;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;

    gap: 18px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}

.footer-legal a:hover {
    color: #9fc5ff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .main-navigation {
        gap: 18px;
    }

    .hero-container {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

}


@media (max-width: 900px) {

    .main-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-inner {
        justify-content: space-between;
    }

    .hero-container,
    .why-container,
    .app-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-booking-card {
        max-width: 600px;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-container {
        text-align: center;
    }

    .app-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .app-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;

        padding: 20px 0;

        text-align: center;
    }

    .footer-credit,
    .footer-legal {
        justify-content: center;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .top-bar-inner {
        min-height: 36px;

        justify-content: center;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        gap: 15px;
    }

    .header-inner {
        min-height: 70px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .hero-section {
        padding: 65px 0 70px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 18px;
    }

    .hero-booking-card {
        padding: 24px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .services-grid,
    .process-grid,
    .reviews-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px;
    }

    .app-buttons {
        flex-direction: column;
    }

    .app-store-button {
        width: 100%;
    }

    .promo-card {
        flex-direction: column;
        align-items: flex-start;

        padding: 30px;
    }

    .final-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-main {
        padding: 60px 0 45px;
    }

    .footer-credit {
        flex-wrap: wrap;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

}