:root {
    --primary-color: #e07038;
    --primary-light: #299696;
    --primary-dark: #1d2c34;
    --dark-grey: #2c2c2c;
    --light-grey: #dae0dc;
    --white: #ffffff;
    --black: #1a1a1a;
    --font-header: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --text-wrap: pretty;
    --text-wrap: balance;
    --scroll-behavior: smooth
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    transition: background-color .3s ease, color .3s ease;
    background-color: var(--bg);
    color: var(--text-main)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-header);
    font-weight: 800;
    color: var(--primary-dark)
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s
}

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

.bg-light {
    background-color: var(--light-grey)
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px
}

::selection {
    background: var(--primary-light);
    color: #fff
}

header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: all .3s ease
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    border-bottom: none
}

header.solid-header {
    background-color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05) !important;
    border-bottom: none !important
}

header.solid-header .logo h1 {
    color: var(--primary-dark) !important
}

header.solid-header .sub-logo {
    color: #777 !important
}

header.solid-header .nav-item {
    color: var(--black) !important
}

header.solid-header .nav-item:hover {
    color: var(--primary-color) !important
}

header.solid-header .hamburger {
    color: var(--primary-dark) !important
}

#contact p,
#contact ul li,
.logo,
.nav-container {
    display: flex;
    align-items: center
}

.nav-container {
    justify-content: space-between;
    padding: 15px 0
}

#contact p,
#contact ul li {
    margin-bottom: 15px;
    gap: 10px
}

.logo {
    gap: 15px
}

.logo img {
    height: 88px !important;
    width: auto !important;
    transition: filter .3s ease
}

.hero-content h2,
.logo h1 {
    line-height: 1.1;
    color: var(--white);
    text-transform: capitalize
}

.logo h1 {
    font-size: 1.4rem;
    transition: color .3s
}

.sub-logo {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .7)
}

header.scrolled .logo h1 {
    color: var(--primary-dark)
}

header.scrolled .sub-logo {
    color: #777
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none
}

.hamburger,
.nav-item {
    color: var(--white);
    cursor: pointer
}

.nav-item {
    position: relative;
    font-weight: 700;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: .5px
}

header.scrolled .nav-item {
    color: var(--black)
}

.nav-item:hover,
header.scrolled .nav-item:hover {
    color: var(--primary-color)
}

.hamburger {
    display: none;
    font-size: 1.5rem
}

.progress-wrap i,
header.scrolled .hamburger {
    color: var(--primary-dark)
}

.btn-modern {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
    display: inline-block;
    border: 0;
    cursor: pointer
}

.btn-modern:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.header-cta {
    background: var(--primary-light) !important
}

.header-cta:hover {
    background: var(--primary-color) !important
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-dark)
}

.hero-text-layer,
.slide {
    position: absolute;
    width: 100%;
    height: 100%
}

.slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1
}

.slide.active {
    opacity: 1
}

.hero-text-layer {
    top: 0;
    left: 0;
    z-index: 5;
    background: rgba(29, 44, 52, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.hero-content {
    color: #fff;
    max-width: 900px;
    padding: 0 20px
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 800
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.hero-secondary-btn {
    background: 0 0;
    border: 2px solid var(--white);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
    margin-left: 20px;
    display: inline-block
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, .1)
}

.hero-btn-wrap,
.next-btn,
.prev-btn {
    display: flex;
    justify-content: center;
    align-items: center
}

.next-btn,
.prev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 0;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 20;
    transition: all .3s ease
}

.prev-btn {
    left: 20px
}

.next-btn {
    right: 20px
}

.next-btn:hover,
.prev-btn:hover {
    background: rgba(255, 255, 255, .2)
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    transition: .3s ease;
    cursor: pointer
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2)
}

.section-padding {
    padding: 100px 0
}

.section-tag {
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: none
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.about-text p,
.curriculum-card ul li {
    font-size: 1.1rem;
    color: #555
}

.curriculum-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .02);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 40px
}

.hours-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px
}

.hours-flex .curriculum-card {
    margin: 0
}

.hours-photo {
    width: 400px;
    max-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

#contact ul,
.curriculum-card ul {
    list-style: none
}

.curriculum-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    display: flex;
    justify-content: space-between
}

.curriculum-card ul li strong {
    color: var(--primary-dark);
    font-weight: 700
}

.catalog-grid,
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .02);
    transition: all .3s ease
}

.catalog-card,
.catalog-info,
.service-card {
    display: flex;
    flex-direction: column
}

.catalog-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .02);
    transition: all .3s ease;
    padding: 0;
    overflow: hidden
}

.catalog-info {
    padding: 30px;
    flex-grow: 1
}

.catalog-img {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-bottom: 3px solid var(--primary-color);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94)
}

.catalog-card:hover .catalog-img {
    transform: scale(1.04)
}

.catalog-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08)
}

.service-icon-wrap,
.service-learn-more {
    color: var(--primary-light);
    align-items: center
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: rgba(41, 150, 150, .05);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all .3s ease
}

.service-card:hover .service-icon-wrap {
    background-color: var(--primary-light);
    color: var(--white)
}

.catalog-card h3,
.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase
}

.catalog-card p,
.service-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1
}

.service-learn-more {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    gap: 8px;
    margin-top: auto;
    font-size: .9rem
}

#contact ul li a:hover,
.service-learn-more:hover {
    color: var(--primary-color)
}



.cta-banner {
    padding: 80px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay
}

.emergency-banner {
    background-color: #3d4a52;
    background-image: url(images/hero1.jpg)
}

.emergency-banner .section-title {
    color: var(--white)
}

.emergency-btn {
    background: var(--primary-dark)
}

#contact h3,
.btn-whatsapp-catalog {
    text-transform: uppercase;
    font-weight: 800
}

.btn-whatsapp-catalog,
.whatsapp-float {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease
}

.btn-whatsapp-catalog {
    background: #25d366;
    color: #fff !important;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: center;
    gap: 8px;
    font-size: .85rem;
    letter-spacing: .5px;
    border: 0;
    cursor: pointer
}

.btn-whatsapp-catalog:hover {
    background: #128c7e
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    z-index: 9999;
    opacity: 1;
    visibility: visible
}

.whatsapp-float.show {
    bottom: 85px
}

#contact,
.whatsapp-float:hover {
    background-color: var(--primary-dark)
}

.whatsapp-float:hover {
    transform: translateY(-5px)
}

#contact {
    color: rgba(255, 255, 255, .7);
    padding: 80px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px
}

#contact h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem
}

.map-placeholder {
    background-color: #111;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 60px;
    padding-top: 20px;
    font-size: .9rem
}

.modal,
.progress-wrap svg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease
}

.modal.open {
    display: flex;
    opacity: 1
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    transform: scale(.9);
    transition: transform .3s ease
}

.modal.open .modal-content {
    transform: scale(1)
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #aaa;
    cursor: pointer;
    transition: .2s;
    line-height: 1;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-color);
}

@media screen and (max-width:768px) {
    .close-modal {
        top: 6px;
        right: 10px;
        font-size: 24px;
        padding: 6px;
    }
}

.modal-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    max-height: 65vh;
    overflow: hidden;
    background: #0d0d0d;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 14px;
    box-sizing: border-box;
}

.modal-slides {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    transition: transform .4s ease-in-out;
}

.modal-slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}




.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    color: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: .2s
}

.modal-nav:hover {
    background: var(--primary-color)
}

.modal-nav.prev {
    left: 10px
}

.modal-nav.next {
    right: 10px
}

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease
}

.progress-wrap.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.progress-wrap svg {
    position: absolute;
    transform: rotate(-90deg)
}

.progress-wrap svg circle.track {
    fill: none;
    stroke: rgba(0, 0, 0, .05);
    stroke-width: 4
}

.progress-wrap svg circle.progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    transition: stroke-dashoffset .1s linear
}

.progress-wrap i {
    font-size: 1.2rem;
    z-index: 1
}

.progress-wrap:hover {
    transform: translateY(-5px)
}



    {
    .section-title {
        font-size: 2.2rem
    }

    .hero-content h2 {
        font-size: 2.8rem
    }

    .hero-content p {
        font-size: 1rem
    }

    .hamburger {
        display: block
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
        text-align: center;
        gap: 15px;
        border-top: 1px solid #eee
    }

    .nav-links.active {
        display: flex
    }

    .nav-item {
        color: var(--primary-dark)
    }

    .header-cta {
        margin: 10px 0 0;
        width: 100%
    }

    .hero-btn-wrap {
        flex-direction: column;
        gap: 15px
    }

    .hero-secondary-btn {
        margin-left: 0;
        width: 100%;
        text-align: center
    }
}

[data-theme=dark] body {
    background-color: var(--bg);
    color: var(--text-main)
}

[data-theme=dark] .bg-light,
[data-theme=dark] .catalog-card,
[data-theme=dark] .curriculum-card,
[data-theme=dark] .modal-content,
[data-theme=dark] .service-card {
    background-color: #1a1a1a;
    border-color: rgba(255, 255, 255, .05);
    background-color: var(--surface) !important;
    border-color: var(--border-soft) !important
}

[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4,
[data-theme=dark] h5,
[data-theme=dark] h6 {
    color: var(--white)
}

[data-theme=dark] .curriculum-card ul li,
[data-theme=dark] p {
    color: #aaa;
    border-color: rgba(255, 255, 255, .05)
}

html {
    scroll-behavior: smooth
}

:root {
    --bg: #dae0dc;
    --surface: #ffffff;
    --surface-2: #f4f6f8;
    --text-main: #2c2c2c;
    --text-soft: #555555;
    --border-soft: rgba(0, 0, 0, 0.07);
    --header-bg: #ffffff
}

[data-theme=dark] {
    --bg: #102a43;
    --surface: #1c3d5e;
    --surface-2: #16344f;
    --text-main: #e6edf5;
    --text-soft: #b3c2d6;
    --border-soft: rgba(255, 255, 255, 0.1);
    --header-bg: #102a43
}

[data-theme=dark] header.scrolled,
[data-theme=dark] header.solid-header {
    background-color: var(--header-bg) !important
}

[data-theme=dark] #catalog.bg-light {
    background-color: var(--surface-2) !important
}

[data-theme=dark] .catalog-card h3,
[data-theme=dark] .catalog-info button,
[data-theme=dark] .curriculum-card ul li strong,
[data-theme=dark] .nav-links .nav-item,
[data-theme=dark] .section-title,
[data-theme=dark] .service-card button,
[data-theme=dark] .service-card h3,
[data-theme=dark] [style*="color: var(--primary-dark)"],
[data-theme=dark] header.scrolled .brand-name,
[data-theme=dark] header.scrolled .hamburger,
[data-theme=dark] header.scrolled .nav-item,
[data-theme=dark] header.solid-header .brand-name,
[data-theme=dark] header.solid-header .hamburger,
[data-theme=dark] header.solid-header .nav-item {
    color: var(--text-main) !important
}

[data-theme=dark] #modal-description,
[data-theme=dark] .about-text p,
[data-theme=dark] .catalog-card p,
[data-theme=dark] .curriculum-card ul li,
[data-theme=dark] .service-card p,
[data-theme=dark] [style*="color: #555"],
[data-theme=dark] [style*="color: var(--dark-grey)"],
[data-theme=dark] p {
    color: var(--text-soft) !important
}

[data-theme=dark] .about-text>div>div {
    background: var(--surface) !important;
    border-color: var(--border-soft) !important
}

.logo {
    min-width: 0
}

.logo h1.brand-name {
    white-space: nowrap;
    text-transform: uppercase;
    font-size: clamp(.72rem, 2vw, 1.3rem);
    line-height: 1.15
}

.hero-content .section-tag {
    text-transform: none;
    letter-spacing: .5px
}

.nav-links {
    gap: 16px
}

.header-cta {
    margin-left: 8px
}

.theme-toggle-li {
    display: flex;
    align-items: center
}

.theme-toggle {
    background: 0 0;
    border: 1px solid rgba(255, 255, 255, .5);
    color: var(--white);
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all .3s ease;
    padding: 0
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, .15)
}

header.scrolled .theme-toggle,
header.solid-header .theme-toggle {
    color: var(--primary-dark);
    border-color: rgba(0, 0, 0, .22)
}

[data-theme=dark] .theme-toggle,
[data-theme=dark] header.scrolled .theme-toggle,
[data-theme=dark] header.solid-header .theme-toggle {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, .3)
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    display: block
}

@media screen and (max-width:992px) {
    .nav-links .theme-toggle {
        color: var(--primary-dark);
        border-color: rgba(0, 0, 0, .25)
    }

    [data-theme=dark] .nav-links .theme-toggle {
        color: var(--text-main);
        border-color: rgba(255, 255, 255, .3)
    }
}

.services-search-wrap {
    max-width: 560px;
    margin: 0 auto 45px;
    position: relative
}

.services-search {
    width: 100%;
    padding: 14px 44px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: var(--surface);
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    outline: 0;
    transition: .2s
}

.services-search:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 112, 56, .15)
}

.services-search::-webkit-search-cancel-button,
.services-search::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none
}

.services-search::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

.search-clear,
.search-ic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft)
}

.search-ic {
    left: 16px;
    pointer-events: none
}

.search-clear {
    right: 8px;
    background: 0 0;
    border: 0;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: none;
    padding: 0 8px
}

.search-clear.show {
    display: block
}

.catalog-card.hidden,
.no-results {
    display: none
}

.no-results {
    padding: 30px;
    color: var(--text-soft);
    grid-column: 1/-1;
    font-size: 1.05rem
}

.no-results.show {
    display: block
}

.footer-bottom,
.no-results {
    text-align: center
}

.footer-bottom p {
    margin: 0 auto
}

.lcs-badge {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 150;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 18, .85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 0 18px rgba(224, 112, 56, .35);
    cursor: pointer;
    transition: box-shadow .3s, border-color .3s, transform .3s
}

.lcs-badge:hover {
    box-shadow: 0 0 26px rgba(224, 112, 56, .5);
    border-color: rgba(224, 112, 56, .5);
    transform: translateY(-2px)
}

.lcs-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%
}

@media screen and (max-width:430px) {
    .container {
        padding: 0 16px
    }

    .logo {
        gap: 8px
    }

    .logo img {
        height: 62px !important
    }

    .logo h1.brand-name {
        font-size: clamp(.56rem, 2.3vw, .78rem)
    }

    .hero-content h2 {
        font-size: 2.2rem
    }

    .hero-content p {
        font-size: .95rem
    }

    .theme-toggle {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: .9rem
    }

    .services-search-wrap {
        margin-bottom: 30px
    }

    .section-title {
        font-size: 2rem
    }
}

@media screen and (max-width:360px) {
    .logo img {
        height: 54px !important
    }

    .logo h1.brand-name {
        font-size: clamp(.5rem, 2.1vw, .62rem)
    }
}

#contact .footer-bottom p {
    display: flex;
    justify-content: center;
    text-align: center
}

[data-theme=dark] [style*="color:var(--primary-dark)"] {
    color: var(--text-main) !important
}

[data-theme=dark] [style*="color:#555"],
[data-theme=dark] [style*="color:var(--dark-grey)"] {
    color: var(--text-soft) !important
}

[data-theme=dark] .service-icon-wrap {
    background-color: rgba(255, 255, 255, .07) !important
}

@media screen and (max-width:992px) {
    [data-theme=dark] .nav-links {
        background-color: var(--header-bg) !important
    }
}