@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&display=swap");

:root {
    --minimal-accent: #0f766e;
    --minimal-accent-dark: #0b5f59;
    --minimal-surface: #ffffff;
    --minimal-surface-soft: #f3f7f5;
    --minimal-ink: #0f172a;
    --minimal-muted: #5f6b7a;
    --minimal-border: #dde7e2;
    --minimal-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body.landing-modern {
    font-family: "Manrope", sans-serif;
    color: var(--minimal-ink);
    background: radial-gradient(circle at top right, #e8f6f1 0%, rgba(232, 246, 241, 0) 45%),
        radial-gradient(circle at 0% 40%, #eaf1ff 0%, rgba(234, 241, 255, 0) 35%),
        #f9fcfb;
}

body.landing-modern h1,
body.landing-modern h2,
body.landing-modern h3,
body.landing-modern h4,
body.landing-modern h5,
body.landing-modern h6 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
    color: var(--minimal-ink);
}

body.landing-modern .text--base,
body.landing-modern .text--title {
    color: var(--minimal-muted) !important;
}

body.landing-modern .navbar-top {
    border-bottom: 1px solid rgba(221, 231, 226, 0.8);
    backdrop-filter: blur(4px);
}

body.landing-modern .navbar-bottom {
    background: transparent;
    margin-top: 12px;
}

body.landing-modern .navbar-bottom.active {
    top: 8px;
}

body.landing-modern .navbar-bottom-wrapper {
    border: 1px solid var(--minimal-border);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: var(--minimal-shadow);
    min-height: 74px;
}

body.landing-modern .navbar-bottom-wrapper .logo img {
    max-height: 38px;
}

body.landing-modern .navbar-bottom-wrapper .menu li a {
    color: #273244;
    font-weight: 600;
    border-radius: 999px;
    padding: 8px 14px;
}

body.landing-modern .navbar-bottom-wrapper .menu li a:hover,
body.landing-modern .navbar-bottom-wrapper .menu li a.active {
    color: var(--minimal-accent);
    background: #ebf6f2;
}

body.landing-modern .cmn--btn,
body.landing-modern .cmn--btn2 {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 16px rgba(15, 118, 110, 0.2);
}

body.landing-modern .cmn--btn {
    background: var(--minimal-accent);
    border: 1px solid var(--minimal-accent);
}

body.landing-modern .cmn--btn:hover {
    background: var(--minimal-accent-dark);
    border-color: var(--minimal-accent-dark);
}

body.landing-modern .cmn--btn2 {
    background: #ffffff;
    border: 1px solid #b9d7cd;
    color: var(--minimal-accent);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

body.landing-modern .cmn--btn2:hover {
    border-color: var(--minimal-accent);
    background: #ebf6f2;
}

body.landing-modern .banner-section {
    padding-top: 56px;
    padding-bottom: 64px;
}

body.landing-modern .banner-wrapper {
    background: linear-gradient(135deg, #ffffff, #f4faf8);
    border: 1px solid var(--minimal-border);
    border-radius: 28px;
    box-shadow: var(--minimal-shadow);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

body.landing-modern .banner-wrapper::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -80px;
    top: -90px;
    background: rgba(15, 118, 110, 0.08);
}

body.landing-modern .banner-content .subtitle {
    display: inline-block;
    margin-bottom: 14px;
    background: #e9f6f2;
    color: var(--minimal-accent);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.landing-modern .banner-content .title {
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 14px;
}

body.landing-modern .banner-content .txt {
    font-size: 1.02rem;
    max-width: 560px;
    line-height: 1.7;
}

body.landing-modern .banner-thumb .banner-thumb-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0eae6;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.landing-modern .service-section,
body.landing-modern .about-section,
body.landing-modern .contact-info-section,
body.landing-modern .app-slider-section,
body.landing-modern .cta-section,
body.landing-modern .testimonial-section,
body.landing-modern .contact-section,
body.landing-modern .home-showcase-section,
body.landing-modern .home-campaign-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

body.landing-modern .showcase-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

body.landing-modern .showcase-header p {
    margin-top: 0;
}

body.landing-modern .home-showcase-grid,
body.landing-modern .home-campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.landing-modern .home-showcase-card,
body.landing-modern .home-campaign-card {
    border-radius: 18px;
    border: 1px solid var(--minimal-border);
    background: var(--minimal-surface);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

body.landing-modern .home-showcase-card__media,
body.landing-modern .home-campaign-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
}

body.landing-modern .home-showcase-card__media img,
body.landing-modern .home-campaign-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.landing-modern .home-showcase-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
}

body.landing-modern .home-showcase-card__body,
body.landing-modern .home-campaign-card__content {
    padding: 14px;
}

body.landing-modern .home-showcase-card__body h5,
body.landing-modern .home-campaign-card__content h5 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}

body.landing-modern .home-showcase-card__meta,
body.landing-modern .home-campaign-card__content p {
    color: var(--minimal-muted);
    font-size: 13px;
    margin: 0;
}

body.landing-modern .home-showcase-card__link {
    color: var(--minimal-accent);
    font-weight: 700;
    font-size: 13px;
}

body.landing-modern .home-showcase-card__link:hover {
    color: var(--minimal-accent-dark);
}

body.landing-modern .section-title {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    margin-bottom: 20px;
}

body.landing-modern .service__item,
body.landing-modern .counter__item,
body.landing-modern .contact__item,
body.landing-modern .testimonial__item-wrapper,
body.landing-modern .dynamic-page-wrapper,
body.landing-modern .about__wrapper,
body.landing-modern .app-slider-wrapper {
    border-radius: 20px;
    border: 1px solid var(--minimal-border);
    background: var(--minimal-surface);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

body.landing-modern .service__item {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.landing-modern .service__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

body.landing-modern .service__item-btn {
    border-radius: 999px;
    border-color: #b5d6cb;
    color: var(--minimal-accent);
    font-weight: 700;
}

body.landing-modern .service__item-btn:hover {
    background: #ebf6f2;
    border-color: var(--minimal-accent);
}

body.landing-modern .about__wrapper {
    overflow: hidden;
}

body.landing-modern .about__wrapper-thumb .main-img {
    border-radius: 18px;
}

body.landing-modern .app-slider-wrapper {
    padding: 26px;
}

body.landing-modern .owl-btn,
body.landing-modern .slide-icon {
    border-radius: 999px;
    border: 1px solid #c4dbd3;
    background: #ffffff;
    color: var(--minimal-accent);
}

body.landing-modern .cta-wrapper {
    border-radius: 26px;
    border: 1px solid var(--minimal-border);
    background: linear-gradient(135deg, #eef8f4, #ffffff);
    box-shadow: var(--minimal-shadow);
    padding: 40px 28px;
}

body.landing-modern .cta-wrapper .title {
    font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

body.landing-modern .subscribe-newsletter .input-group,
body.landing-modern .newsletter-form {
    background: #ffffff;
    border: 1px solid #d8e8e2;
    border-radius: 999px;
    padding: 6px;
}

body.landing-modern .subscribe-newsletter input.form-control,
body.landing-modern .newsletter-form input.form-control,
body.landing-modern .contact-section input.form-control,
body.landing-modern .contact-section textarea.form-control {
    border-radius: 14px;
    border-color: #d9e5e0;
}

body.landing-modern .main-footer {
    background: linear-gradient(180deg, #0d2d2a, #0b2220);
}

body.landing-modern .footer__wrapper {
    gap: 32px;
}

body.landing-modern .footer__wrapper-widget .logo img {
    max-width: 160px;
}

body.landing-modern .footer__wrapper-link li a,
body.landing-modern .footer__wrapper-contact h6,
body.landing-modern .footer__wrapper-contact a,
body.landing-modern .footer__wrapper-contact span,
body.landing-modern .footer__wrapper-widget p {
    color: #cfe6dc;
}

body.landing-modern .footer__wrapper-link li a:hover,
body.landing-modern .footer__wrapper-contact a:hover {
    color: #ffffff;
}

body.landing-modern .footer-bottom {
    border-top: 1px solid rgba(207, 230, 220, 0.15);
    background: transparent;
    color: #d4e9e0;
}

body.landing-modern .page-header {
    border-radius: 22px;
    border: 1px solid var(--minimal-border);
    overflow: hidden;
}

body.landing-modern .dynamic-page-wrapper {
    padding: 28px;
    line-height: 1.8;
}

body.landing-modern .dynamic-page-wrapper p,
body.landing-modern .dynamic-page-wrapper li {
    color: #334155;
}

body.landing-modern .dynamic-page-wrapper h1,
body.landing-modern .dynamic-page-wrapper h2,
body.landing-modern .dynamic-page-wrapper h3,
body.landing-modern .dynamic-page-wrapper h4 {
    margin-top: 8px;
}

body.dark-theme.landing-modern {
    --minimal-surface: #132126;
    --minimal-surface-soft: #0f1a1e;
    --minimal-ink: #e7f5ef;
    --minimal-muted: #a3c1b6;
    --minimal-border: #27413a;
    background: radial-gradient(circle at 10% 10%, #16302d 0%, rgba(22, 48, 45, 0) 40%),
        #0d1619;
}

body.dark-theme.landing-modern .navbar-bottom-wrapper,
body.dark-theme.landing-modern .service__item,
body.dark-theme.landing-modern .counter__item,
body.dark-theme.landing-modern .contact__item,
body.dark-theme.landing-modern .testimonial__item-wrapper,
body.dark-theme.landing-modern .dynamic-page-wrapper,
body.dark-theme.landing-modern .about__wrapper,
body.dark-theme.landing-modern .app-slider-wrapper,
body.dark-theme.landing-modern .banner-wrapper,
body.dark-theme.landing-modern .cta-wrapper,
body.dark-theme.landing-modern .home-showcase-card,
body.dark-theme.landing-modern .home-campaign-card {
    background: #132126;
    border-color: #27413a;
    box-shadow: none;
}

body.dark-theme.landing-modern .navbar-top {
    border-bottom-color: #27413a;
}

body.dark-theme.landing-modern .navbar-bottom-wrapper .menu li a {
    color: #d3ede2;
}

body.dark-theme.landing-modern .navbar-bottom-wrapper .menu li a:hover,
body.dark-theme.landing-modern .navbar-bottom-wrapper .menu li a.active {
    background: #1d3430;
    color: #7ce4ca;
}

body.dark-theme.landing-modern .subscribe-newsletter .input-group {
    background: #132126;
    border-color: #27413a;
}

@media (max-width: 991px) {
    body.landing-modern .navbar-bottom-wrapper {
        border-radius: 16px;
    }

    body.landing-modern .navbar-bottom-wrapper .menu {
        background: rgba(255, 255, 255, 0.96);
        border-radius: 16px;
        border: 1px solid var(--minimal-border);
        box-shadow: var(--minimal-shadow);
        padding: 14px;
    }

    body.dark-theme.landing-modern .navbar-bottom-wrapper .menu {
        background: #132126;
    }

    body.landing-modern .banner-wrapper {
        padding: 24px;
    }

    body.landing-modern .service-section,
    body.landing-modern .about-section,
    body.landing-modern .contact-info-section,
    body.landing-modern .app-slider-section,
    body.landing-modern .cta-section,
    body.landing-modern .testimonial-section,
    body.landing-modern .contact-section,
    body.landing-modern .home-showcase-section,
    body.landing-modern .home-campaign-section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    body.landing-modern .home-showcase-grid,
    body.landing-modern .home-campaign-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    body.landing-modern .navbar-top {
        display: none;
    }

    body.landing-modern .navbar-bottom {
        margin-top: 0;
    }

    body.landing-modern .navbar-bottom-wrapper {
        border-radius: 0;
    }

    body.landing-modern .dynamic-page-wrapper {
        padding: 18px;
    }

    body.landing-modern .home-showcase-grid,
    body.landing-modern .home-campaign-grid {
        grid-template-columns: 1fr;
    }
}
