:root {
    --color-primary: #2c7cda;
    --color-accent: #039fd2;
    --color-light: #f5f1ed;
    --color-dark: #2d2d2d;
    --color-neutral: #5a5a5a;
    /* Typography */
    --font-serif: "Playfair Display", serif;
    --font-sans: "Poppins", sans-serif;
    /* Spacing (px converted) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-light:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.navbar {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.logo-tagline {
    font-size: 16px;
    color: #05b5ef;
    font-style: italic;
    line-height: 1;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-dark)!important;
    font-weight: 500;
    position: relative;
    transition: .3s;
    font-size: 18px;
}

.nav-link:hover,.nav-link.active {
    color: var(--color-primary)!important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .navbar-brand img {
    width: 60px;
    height: 60px;
}

.hero {
    padding: 48px 32px;
    /* background: linear-gradient(135deg,var(--color-light),#fafaf8); */
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2c7cda+0,039fd2+100 */
    /* background: linear-gradient(135deg, rgb(80 211 253 / 76%) 0%, rgb(48 82 180 / 31%) 100%); */
    background-color: #01162e;
    position: relative;
}
.hero .bg-fixed {
    opacity: 0.2;
        z-index: 1;
}

.hero .container-lg {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 60px;
    max-width: 100%;
    color: #1dbcf1;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.cta-button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 24px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button-large {
    padding: 32px 64px;
    font-size: 18px;
}

.about-massage {
    padding: 48px 32px;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.about-text p {
    color: var(--color-neutral);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.services {
    padding: 48px 32px;
    background: var(--color-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 32px;
}

.service-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}
.service-card .card-body {
    padding: 20px;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-primary);
    padding: 24px 24px 16px;
}

.service-card p {
    color: var(--color-neutral);
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
}
.service-card .card-body {
    padding: 20px;
}
.service-card .card-title {
    margin: 0 0 10px;
}

.gallery {
    padding: 48px 32px;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 32px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.contact-section {
    padding: 48px 32px;
    background: #fff;
}

.contact-card {
    background: #f2fbff;
    padding: 32px;
    border-radius: 8px 0px 0px 8px;
}

.contact-header {
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.contact-header h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 0;
}

.contact-services {
    background: #039fd224;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.contact-services li {
    font-size: 14px;
    padding: 2px 0 2px 24px;
    position: relative;
    list-style: none;
}
.info-group h5 {
    font-weight: 600;
    margin: 0;
}

.info-group p, .info-group p a {
    color: var(--color-dark);
}
.contact-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.cta-section {
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--color-primary), #00c0ff);
    color: #fff;
    text-align: center;
}
.map-container {
    height: 100%;
}

.map-container>iframe {
    height: 100%;
    border-radius: 0px 8px 8px 0 !important;
}
.cta-section h2 {
    font-size: 40px;
    font-family: var(--font-serif);
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 18px;
    margin: 0 auto 32px;
    max-width: 600px;
    opacity: .95;
}
.contact-card .contact-subtitle {
    margin: 0;
}

.contact-services ul {
    padding: 0;
    margin: 0;
}
.cta-section .cta-button {
    background: #fff;
    color: var(--color-primary);
}

.cta-section .cta-button:hover {
    background: var(--color-light);
}

.footer {
    background: #07111d;
    color: #fff;
    padding: 48px 32px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer a {
    color: #ffffff;
}
.contact-card-wrap {
    box-shadow: 0 0 15px 0px #00000024;
    border-radius: 12px;
}
.bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
}

.about-omg-left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
}
.services-carousel-wrap .owl-carousel .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #0000004f !important;
    color: #ffffff !important;
    margin: 0;
    line-height: 1 !important;
    padding: 10px !important;
}
.services-carousel-wrap .owl-carousel .owl-nav [class*=owl-]:hover {
    background-color: #05b5ef !important;
}
.services-carousel-wrap .owl-nav  .owl-prev {
    left: 0;
}

.services-carousel-wrap .owl-nav .owl-next {
    right: 0;
}

.services-carousel-wrap .owl-nav [class*=owl-] svg {
    color: inherit;
}
.services-carousel-wrap .owl-stage {
    display: flex;
}

.services-carousel-wrap .owl-stage .item {
    height: 100%;
}


@media(max-width: 991px) {
    .hero-content {
        margin-bottom: 30px;
    }

}
@media(max-width: 767px) {
    :root {
        --spacing-xl:32px;
        --spacing-2xl: 40px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-container {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .hero {
        text-align: center;
        padding: 32px;
    }

    .about-content {
        flex-direction: column;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .section-title {
    font-size: 30px;
}
.hero-content h1 {
    font-size: 50px;
}
}

@media(max-width: 480px) {
    :root {
        --spacing-lg:24px;
        --spacing-xl: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 24px;
    }

header .navbar-brand img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 26px;
}

.logo-tagline {
    max-width: 200px;
    display: block;
    white-space: normal;
    font-size: 11px;
}
.contact-section,
.gallery,
.footer,
.services,
.about-massage {
    padding: 32px 16px;
}
.hero-content h1 {
    font-size: 40px;
}

}

@media(min-width: 768px) and (max-width:1024px) {
    .services-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(min-width: 1025px) {
    .services-grid {
        grid-template-columns:repeat(3,1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4,1fr);
    }
}
