
/* 1. Reduce the overall thickness */
.navbar {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    border-bottom: 1px solid #e0e0e0; /* Very thin line at the bottom */
    background-color: white !important;
}

/* 2. Change Nav Links from Green to Blue */
.nav-link {
    color: #007bff !important; /* Professional Blue */
    font-weight: 600;
    font-size: 0.85rem; /* Slightly smaller to keep it slim */
    margin: 0 12px;
    text-transform: uppercase;
}

/* 3. Hover effect for links */
.nav-link:hover {
    color: #0056b3 !important; /* Darker blue when hovering */
}

/* 4. The PROMO!! Button (Now Blue) */
.promo-btn {
    border: 2px solid #007bff !important; 
    color: #007bff !important;
    padding: 3px 15px !important; /* Very slim padding */
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

/* 5. Promo Button Hover */
.promo-btn:hover {
    background-color: #007bff !important;
    color: white !important;
}

/* 6. Keep the Logo height small so it doesn't stretch the bar */
.navbar-brand img {
    height: 55px !important; /* This controls the thickness of the whole bar */
    width: auto;
    display: block;
}

/* 7. Ensure the mobile menu looks right */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
    }
    .promo-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

/* Simple clean permit design */
.permit-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* Image full view (no crop) */
.permit-box img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
}

/* Simple hover */
.permit-box:hover {
    transform: scale(1.03);
}

/* Owner Image */
.owner-jfif {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%; /* makes it circle */
    border: 5px solid #0d6efd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Service Card Design */
.service-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon style */
.service-icon {
    font-size: 50px;
    color: #0d6efd;
}

 /* Services Cards */
.service-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 50px;
    color: #0d6efd;
}
/* Modal Images */
.modal-content img {
    max-height: 300px;
    object-fit: contain;
    width: 100%;
}

html, body {
  min-height: 100%;
  margin: 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f9ff 50%,
    #eef4ff 100%
  ) !important;
}


body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 50%, #eef4ff 100%) !important;
}

/* Make sections/cards see-through so gradient shows */
.card,
.container,
section {
    background: transparent !important;
}



/* 1. Smooth global transitions */
* {
    transition: all 0.25s ease-in-out;
}


/* 2. Add subtle animated gradient glow to background */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(13,110,253,0.10), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(0,123,255,0.08), transparent 40%);
    animation: floatGlow 12s infinite alternate ease-in-out;
    z-index: -2;
}

@keyframes floatGlow {
    0% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(30px, -20px);
    }
}


/* 3. Glass effect cards (premium look) */
.card,
.permit-box,
.service-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* 4. Premium hover lift effect for ALL cards */
.card:hover,
.permit-box:hover,
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.15);
}


/* 5. Make headings look premium gradient */
h1, h2, h3 {
    background: linear-gradient(90deg, #0d6efd, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}


/* 6. Premium buttons glow effect */
button, .btn {
    position: relative;
    overflow: hidden;
}

/* button shine animation */
button::after, .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
}

button:hover::after, .btn:hover::after {
    left: 120%;
    transition: 0.6s ease;
}


/* 7. Navbar premium upgrade (glass feel) */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
}


/* 8. Smooth image hover zoom */
img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}


/* 9. Soft section spacing improvement */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}


/* 10. Scroll smooth behavior */
html {
    scroll-behavior: smooth;
}


/* 11. Subtle divider line between sections */
section:not(:last-child)::after {
    content: "";
    display: block;
    margin: 40px auto 0;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13,110,253,0.3), transparent);
}


/* Stronger animated gradient base */
body {
    background: linear-gradient(-45deg, #e0f2ff, #ffffff, #e8f0ff, #f3e8ff) !important;
    background-size: 400% 400% !important;
    animation: gradientMove 15s ease infinite;
}

/* Smooth animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Floating soft color blobs */
body::after {
    content: "";
    position: fixed;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13,110,253,0.25), transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    from {
        transform: translateY(0px) translateX(0px);
    }
    to {
        transform: translateY(40px) translateX(30px);
    }
}


/* Second floating blob */
body::before {
    content: "";
    position: fixed;
    bottom: 10%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,188,212,0.18), transparent 60%);
    filter: blur(70px);
    z-index: -1;
    animation: floatBlob2 12s ease-in-out infinite alternate;
}

@keyframes floatBlob2 {
    from {
        transform: translateY(0px) translateX(0px);
    }
    to {
        transform: translateY(-40px) translateX(-20px);
    }
}


/* Subtle blue-white animated background */
body {
    background: linear-gradient(-45deg,
        #ffffff,
        #f4f8ff,
        #eaf2ff,
        #ffffff
    ) !important;

    background-size: 300% 300% !important;
    animation: cleanBlueMove 18s ease infinite;
}

/* Soft smooth movement */
@keyframes cleanBlueMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Soft BLUE glow (no other colors) */
body::before {
    content: "";
    position: fixed;
    top: 15%;
    left: 10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(13,110,253,0.18), transparent 60%);
    filter: blur(70px);
    z-index: -1;
    animation: floatBlue1 12s ease-in-out infinite alternate;
}

@keyframes floatBlue1 {
    from {
        transform: translate(0px, 0px);
    }
    to {
        transform: translate(40px, 30px);
    }
}


/* Second BLUE glow */
body::after {
    content: "";
    position: fixed;
    bottom: 10%;
    right: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0,123,255,0.15), transparent 60%);
    filter: blur(80px);
    z-index: -1;
    animation: floatBlue2 14s ease-in-out infinite alternate;
}

@keyframes floatBlue2 {
    from {
        transform: translate(0px, 0px);
    }
    to {
        transform: translate(-30px, -40px);
    }
}



/* 1. Better page structure spacing */
section {
    padding: 80px 20px;
    position: relative;
}


/* 2. Add subtle section container feel (prevents "plain white space") */
.container, .container-fluid {
    padding: 20px;
}


/* 3. Premium “soft panel” sections */
section {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    margin: 30px auto;
    width: 95%;
    box-shadow: 0 10px 30px rgba(13,110,253,0.06);
}


/* 4. Add elegant top highlight line for sections */
section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, transparent, #0d6efd, transparent);
    opacity: 0.4;
}


/* 5. Make ALL text feel more modern */
body {
    letter-spacing: 0.2px;
    line-height: 1.6;
}


/* 6. Improve paragraph readability */
p {
    color: #4b5563;
    font-size: 0.95rem;
}


/* 7. Make headings feel more “luxury UI” */
h1, h2, h3 {
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}


/* 8. Better cards (even stronger depth) */
.card, .service-card, .permit-box {
    border-radius: 16px !important;
    border: 1px solid rgba(13,110,253,0.08) !important;
}


/* 9. Add subtle hover glow everywhere */
.card:hover, .service-card:hover, .permit-box:hover {
    box-shadow: 0 20px 40px rgba(13,110,253,0.18) !important;
}


/* 10. Make images feel less flat */
img {
    border-radius: 10px;
}


/* 11. Add subtle divider spacing between elements */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #cfe2ff, transparent);
    margin: 40px 0;
}


/* 12. Smooth scroll feel upgrade */
html {
    scroll-behavior: smooth;
}


/* Force modal above EVERYTHING */
.modal {
    position: fixed !important;
    z-index: 999999 !important;
}

/* Force backdrop behind modal */
.modal-backdrop {
    position: fixed !important;
    z-index: 999998 !important;
    opacity: 0.4 !important;
}

/* Make sure modal is fully clickable */
.modal-content {
    position: relative !important;
    z-index: 1000000 !important;
    pointer-events: auto !important;
}

/* Fix close button always clickable */
.btn-close,
.close {
    pointer-events: auto !important;
    z-index: 1000001 !important;
}

.modal-backdrop.show {
    background-color: rgba(0,0,0,0.4) !important;
}

/* Prevent stacking dark layers */
body.modal-open {
    overflow: hidden !important;
}


section,
.container,
.card,
.service-card,
.permit-box {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: none !important;
}




body {
    background: #f6f9ff !important;
}


/* 2. Add gentle section separation (fix plain look) */
section {
    margin: 25px auto !important;
    width: 95%;
    padding: 60px 20px;
    background: #ffffff !important;
    border-radius: 12px;
    border: 1px solid #e6efff;
}


/* 3. Slight blue accent line (very subtle, not flashy) */
section::before {
    content: "";
    display: block;
    height: 2px;
    width: 60px;
    background: #0d6efd;
    margin-bottom: 15px;
    border-radius: 10px;
}


/* 4. Cards: clean soft style (not too heavy) */
.card, .service-card, .permit-box {
    background: #ffffff !important;
    border: 1px solid #e6efff !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.06);
}


/* 5. Gentle hover (very subtle, not moving too much) */
.card:hover, .service-card:hover, .permit-box:hover {
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.10);
}


/* 6. Better text clarity (clean look) */
p {
    color: #4a5568 !important;
    line-height: 1.6;
}


/* 7. Soft headings (no gradient, simple premium look) */
h1, h2, h3 {
    color: #0d6efd;
    font-weight: 600;
}


/* 8. Clean image style */
img {
    border-radius: 8px;
}


/* 9. Make layout feel less empty */
.container {
    padding-left: 15px;
    padding-right: 15px;
}


/* 10. Divider (very subtle) */
hr {
    border: none;
    height: 1px;
    background: #e6efff;
    margin: 40px 0;
}



#labCarousel {
    max-width: 700px;
    margin: auto;
}

#labCarousel png {
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

@charset "utf-8";


:root {
    --color-cream: #FFFBF5;
    --color-ivory: #F7F3ED;
    --color-warm-white: #FEFCF9;
    --color-gold: #B8860B;
    --color-gold-light: #D4A853;
    --color-gold-dark: #8B6914;
    --color-charcoal: #1C1C1C;
    --color-charcoal-soft: #3A3A3A;
    --color-taupe: #A69080;
    --color-taupe-light: #C4B5A5;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
.heading-display {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-editorial {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

.text-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-taupe);
}

.text-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-charcoal-soft);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: 900px;
}

.container--wide {
    max-width: 1600px;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: background 0.4s ease, padding 0.4s ease;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 251, 245, 0.6);
    z-index: -1;
}

.site-header.scrolled {
    background: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.site-header.scrolled::before {
    display: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--color-gold);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-main a:not(.nav-cta) {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.nav-main a:not(.nav-cta):hover {
    color: var(--color-gold);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--color-charcoal);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-charcoal);
    transition: all 0.3s ease;
}


.hero {
    min-height: 600px;
    max-height: 820px;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--color-cream);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    padding-left: max(var(--space-md), calc((100vw - 1400px) / 2 + var(--space-md)));
}

.hero-tagline {
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    max-width: 380px;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.1rem 2.25rem;
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
}

.btn-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
}

.btn-text::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.btn-text:hover::after {
    margin-left: 0.75rem;
}

.hero-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background-color: var(--color-warm-white);
    padding: var(--space-md);
    max-width: 280px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

.overlay-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
    transition: opacity 0.5s ease;
}

.overlay-price {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 500;
    transition: opacity 0.5s ease;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
           FEATURED PIECE SECTION
        ======================================== */
.featured-piece {
    padding: var(--space-2xl) 0;
    background-color: var(--color-ivory);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.featured-image-wrapper {
    position: relative;
}

.featured-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-image-wrapper:hover .featured-image img {
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background-color: var(--color-gold);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.featured-content {
    padding-right: var(--space-lg);
}

.featured-label {
    margin-bottom: var(--space-sm);
}

.featured-title {
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    margin-bottom: var(--space-md);
}

.featured-description {
    margin-bottom: var(--space-md);
}

.featured-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-taupe-light);
    border-bottom: 1px solid var(--color-taupe-light);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.detail-label {
    color: var(--color-taupe);
}

.detail-value {
    font-weight: 500;
}

.featured-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-md);
}

/* ========================================
           COLLECTIONS SECTION
        ======================================== */
.collections {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
}

.section-header-left {
    max-width: 500px;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--color-taupe);
}

/* Asymmetric Masonry Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--space-md);
}

.collection-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.collection-item:nth-child(2) {
    grid-column: 6 / 10;
    grid-row: 1 / 2;
}

.collection-item:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
}

.collection-item:nth-child(4) {
    grid-column: 6 / 9;
    grid-row: 2 / 3;
}

.collection-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

.collection-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.collection-item:nth-child(1) .collection-image {
    min-height: 600px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 28, 28, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: var(--space-xs);
}

.collection-count {
    font-size: 0.9rem;
    color: var(--color-taupe-light);
    letter-spacing: 0.05em;
}

/* ========================================
           ABOUT / STORY SECTION
        ======================================== */
.story {
    padding: var(--space-2xl) 0;
    background: linear-gradient(104deg,
            #1C1C1C 0%,
            #1C1C1C 50%,
            #222222 50%,
            #222222 100%);
    color: var(--color-cream);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.story-content {
    padding-right: var(--space-lg);
}

.story-label {
    color: var(--color-gold-light);
    margin-bottom: var(--space-sm);
}

.story-title {
    font-size: clamp(2.75rem, 4.5vw, 4.5rem);
    margin-bottom: var(--space-md);
    color: var(--color-cream);
}

.story-text {
    color: var(--color-taupe-light);
    margin-bottom: var(--space-md);
}

.story-signature {
    margin-top: var(--space-lg);
}

.signature-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--color-gold-light);
    margin-bottom: var(--space-xs);
}

.signature-title {
    font-size: 0.9rem;
    color: var(--color-taupe);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    position: relative;
}

.story-image:first-child {
    margin-top: var(--space-xl);
}

.story-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
           CRAFTSMANSHIP SECTION
        ======================================== */
.craftsmanship {
    padding: var(--space-2xl) 0;
    background-color: var(--color-ivory);
    overflow: hidden;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: center;
}

.craft-content {
    order: 1;
}

.craft-image-wrapper {
    order: 2;
    position: relative;
}

.craft-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-stats {
    position: absolute;
    bottom: -40px;
    left: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    gap: var(--space-lg);
    background-color: var(--color-warm-white);
    padding: var(--space-md) var(--space-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--color-gold-dark);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-taupe);
}

.craft-title {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    margin-bottom: var(--space-md);
}

.craft-text {
    margin-bottom: var(--space-md);
}

.craft-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.craft-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 1.05rem;
}

.craft-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 1px;
    background-color: var(--color-gold);
}

/* ========================================
           TESTIMONIALS SECTION
        ======================================== */
.testimonials {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonials-title {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.testimonials-subtitle {
    color: var(--color-taupe);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background-color: var(--color-ivory);
    padding: var(--space-lg);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.3;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.testimonial-stars span {
    color: var(--color-gold);
    font-size: 1rem;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-taupe-light);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.testimonial-detail {
    font-size: 0.9rem;
    color: var(--color-taupe);
}

/* ========================================
           CONTACT / VISIT SECTION
        ======================================== */
.contact {
    padding: var(--space-2xl) 0;
    background-color: var(--color-ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-content {
    padding-right: var(--space-lg);
}

.contact-title {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    margin-bottom: var(--space-md);
}

.contact-text {
    margin-bottom: var(--space-lg);
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-item {
    margin-bottom: var(--space-md);
}

.contact-item-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-taupe);
    margin-bottom: var(--space-xs);
}

.contact-item-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.contact-item-value a {
    transition: color 0.3s ease;
}

.contact-item-value a:hover {
    color: var(--color-gold);
}

.contact-form-wrapper {
    background-color: var(--color-warm-white);
    padding: var(--space-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-taupe-light);
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-gold-dark);
}

/* ========================================
           FOOTER - 4 Column Layout
        ======================================== */
.site-footer {
    background: linear-gradient(104deg,
            #1C1C1C 0%,
            #1C1C1C 28%,
            #222222 28%,
            #222222 72%,
            #1C1C1C 72%,
            #1C1C1C 100%);
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column 1: Brand */
.footer-brand {
    padding-right: var(--space-md);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-sm);
}

.footer-logo span {
    color: var(--color-gold-light);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--color-taupe);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-contact-info p {
    font-size: 0.95rem;
    color: var(--color-taupe-light);
    margin-bottom: var(--space-xs);
}

.footer-contact-info a {
    color: var(--color-taupe-light);
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--color-gold-light);
}

/* Column Headers */
.footer-column-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

/* Column Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 1rem;
    color: var(--color-taupe-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-cream);
}

/* Column 4: About Website */
.footer-about p {
    font-size: 0.95rem;
    color: var(--color-taupe);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-about a {
    color: var(--color-gold-light);
    transition: color 0.3s ease;
}

.footer-about a:hover {
    color: var(--color-cream);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-taupe);
}

.footer-copyright a {
    color: var(--color-gold-light);
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--color-cream);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    font-size: 0.9rem;
    color: var(--color-taupe);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-gold-light);
}

/* ========================================
           RESPONSIVE STYLES
        ======================================== */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        padding: var(--space-md) var(--space-md);
        padding-left: var(--space-lg);
    }

    .collections-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .collection-item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 2;
    }

    .collection-item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }

    .collection-item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .collection-item:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }

    .collection-item:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2 / 3;
    }

    .collection-item:nth-child(1) .collection-image {
        min-height: 350px;
    }
}

@media (max-width: 1100px) {
    .logo {
        font-size: 1.5rem;
    }

    .nav-main {
        gap: var(--space-md);
    }

    .nav-main a:not(.nav-cta) {
        font-size: 0.85rem;
    }

    .nav-cta {
        font-size: 0.75rem;
        padding: 0.7rem 1rem;
    }

    .craft-stats {
        gap: var(--space-md);
        padding: var(--space-sm) var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
    }
}

@media (max-width: 860px) {
    .nav-main {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }

    .hero-content {
        padding: calc(var(--space-lg) + 60px) var(--space-md) var(--space-lg);
        order: 2;
    }

    .hero-image {
        order: 1;
        height: 400px;
        clip-path: none;
    }

    .hero-image-overlay {
        display: none;
    }

    .featured-grid,
    .story-grid,
    .craft-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding-right: 0;
        order: 2;
    }

    .featured-image-wrapper {
        order: 1;
    }

    .story-content {
        padding-right: 0;
    }

    .craft-content {
        order: 2;
    }

    .craft-image-wrapper {
        order: 1;
    }

    .craft-stats {
        position: static;
        margin-top: var(--space-md);
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-content {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-item:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .collection-item:nth-child(2),
    .collection-item:nth-child(3),
    .collection-item:nth-child(4),
    .collection-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .collection-item:nth-child(1) .collection-image {
        min-height: 300px;
    }

    .collection-overlay {
        opacity: 1;
    }

    .story-images {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .story-image:first-child {
        margin-top: 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-item:nth-child(n) {
        grid-column: 1;
    }

    .craft-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:nth-child(3) {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-warm-white);
    z-index: 2000;
    padding: var(--space-xl) var(--space-md);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal);
}

.mobile-nav-links {
    list-style: none;
    margin-top: var(--space-xl);
}

.mobile-nav-links li {
    margin-bottom: var(--space-md);
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--color-gold);
}

.mobile-nav-cta {
    margin-top: var(--space-xl);
    padding-bottom: var(--space-md);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-item .icon {
  background: none !important;
}

.service-item .icon::before,
.service-item .icon::after {
  display: none !important;
}

.service-item .icon {
  background-image: none !important;
}

.service-item .icon i {
  font-size: 40px;
  line-height: 80px;
}

.service-item:hover .icon {
  background-image: none !important;
}

footer {
  background: #f8fbff;
  padding: 80px 0 40px;
}

.footer-widget h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f3c88;
}

.footer-widget ul {
  padding: 0;
}

.footer-widget ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.footer-widget ul li a:hover {
  color: #1f3c88;
}

.footer-widget p {
  color: #666;
  font-size: 14px;
}

.copyright-text {
  text-align: center;
  margin-top: 30px;
  color: #888;
  font-size: 13px;
}

.btn-highlight {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white !important;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* hover effect */
.btn-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.5);
}

/* subtle shine animation */
.btn-highlight::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.25);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.btn-highlight:hover::after {
    left: 120%;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(96,165,250,0.18), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(59,130,246,0.14), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(147,197,253,0.12), transparent 50%),
        #f4f6f9;
    min-height: 100vh;
}

/* Make columns stretch equally */
.pricing-tables .row {
  display: flex;
  flex-wrap: wrap;
}

/* Make each column flex */
.pricing-tables .col-lg-3 {
  display: flex;
}

/* Make ALL cards equal height */
.pricing-item-regular,
.pricing-item-pro {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 20px !important;
}

/* Remove bigger effect on Card 2 */
.pricing-item-pro {
  transform: scale(1) !important;
  margin-top: 0 !important;
}

/* Force equal spacing inside */
.pricing-item-regular ul,
.pricing-item-pro ul {
  flex-grow: 1;
}

/* Hover effect */
.pricing-item-regular:hover,
.pricing-item-pro:hover {
  transform: translateY(-10px);
  transition: 0.3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* FIX FONT ONLY */
.section-heading p {
  font-family: inherit;
  color: inherit;
}

.section-heading p {
  color: #444 !important;
}

/* CARD TEXT COLOR FIX ONLY */
.pricing-item-regular ul li {
  color: #444 !important;
}

.pricing-item-regular h4 {
  color: #222 !important;
}
/* GAP KILLER: Removes any hidden spacing between content and footer */
html, body {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

section, main, .container-fluid {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ==========================================================================
   BUAN-TULIO OPTICAL CLINIC - CUSTOM STYLES
   ========================================================================== */

:root {
    --clinic-teal: #008080;
    --clinic-light-bg: #f8f9fa;
    --clinic-text-muted: #6c757d;
    --footer-gap: 80px; /* Adjust this single value to change spacing globally */
}

/* 1. Global Section Resets (Removes unwanted gaps) */
section, .section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 2. Footer Section */
.footer-section {
    background-color: var(--clinic-light-bg);
    border-top: 1px solid #eee;
    padding: 40px 0 20px !important;
    margin-top: var(--footer-gap) !important; /* Controlled gap */
    display: block;
    clear: both;
}

/* 3. Footer Typography & Links */
.footer-section h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li, 
.footer-contact li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--clinic-text-muted);
    list-style: none;
}

.footer-links a {
    color: var(--clinic-text-muted);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--clinic-teal) !important;
    padding-left: 5px;
}

/* 4. Custom Components */
.text-teal {
    color: var(--clinic-teal) !important;
}

.btn-teal-outline {
    background: transparent;
    border: 2px solid var(--clinic-teal);
    color: var(--clinic-teal);
    font-weight: 600;
    border-radius: 10px 30px 10px 10px; /* Your signature curved design */
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-teal-outline:hover {
    background-color: var(--clinic-teal);
    color: #fff;
}

/* 5. Utility: Responsive Mobile Fixes */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        margin-top: 40px !important;
    }
    .footer-contact li i {
        display: block;
        margin-bottom: 5px;
    }
}

/* Shared footer, home appointment, and services layout */
.clinic-footer {
    background: #ffffff;
    border-top: 1px solid #dfe8f5;
    margin-top: 32px;
    padding: 20px 0 14px;
    position: relative;
    z-index: 1;
}

.clinic-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.9fr));
    gap: 18px;
    align-items: start;
}

.clinic-footer__brand img {
    height: 38px;
    width: auto;
    margin-bottom: 10px;
}

.clinic-footer__title {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f4f86;
}

.clinic-footer__brand p,
.clinic-footer__group p,
.clinic-footer__group a,
.clinic-footer__bottom p {
    margin: 0;
    color: #5d6b7a;
    font-size: 0.9rem;
    line-height: 1.55;
}

.clinic-footer__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clinic-footer__group a:hover {
    color: #0d6efd;
}

.clinic-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff !important;
    font-weight: 600;
}

.clinic-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #edf2f8;
}

.appointment-strip {
    padding: 8px 0 20px;
}

.appointment-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe7f5;
    border-radius: 26px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: 20px;
    align-items: start;
}

.appointment-kicker {
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.appointment-panel__intro h2 {
    color: #12345b;
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
}

.appointment-panel__intro p {
    max-width: 440px;
}

.appointment-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.appointment-form__field {
    min-width: 0;
}

.appointment-form .form-control,
.appointment-form .form-select {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid #d4e0ee;
    background: #fff;
}

.appointment-form__submit {
    grid-column: span 3;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd, #2ea4ff);
    color: #fff;
    font-weight: 600;
}

.home-highlight-card {
    height: 100%;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #dde8f6;
    background: #fff;
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.06);
}

.home-highlight-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #17375e;
}

.services-hero {
    padding: 56px 0 24px;
}

.services-hero__content {
    max-width: 760px;
}

.services-hero__kicker,
.services-summary__label,
.service-detail-card__eyebrow {
    margin-bottom: 8px;
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-hero__content h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    color: #16355a;
    margin-bottom: 14px;
}

.services-hero__text {
    max-width: 620px;
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.services-overview {
    padding: 12px 0 24px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    height: 100%;
    padding: 18px;
    border: 1px solid #dbe7f5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.06);
}

.service-detail-card__media {
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    background: #eff5fb;
}

.service-detail-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-card__body h2 {
    margin-bottom: 10px;
    font-size: 1.45rem;
    color: #17375e;
}

.service-detail-card__body ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #506173;
}

.services-summary {
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid #dbe7f5;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
}

body {
    background:
        radial-gradient(circle at top left, rgba(83, 160, 255, 0.20), transparent 34%),
        radial-gradient(circle at top right, rgba(104, 193, 255, 0.16), transparent 30%),
        linear-gradient(180deg, #f6fbff 0%, #eef5fb 42%, #f8fbff 100%) !important;
    background-attachment: fixed;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: 110px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(13, 110, 253, 0.10);
}

body::after {
    right: -20px;
    bottom: 80px;
    width: 260px;
    height: 260px;
    background: rgba(58, 175, 255, 0.11);
}

main,
section,
.card,
.appointment-panel,
.service-detail-card,
.home-highlight-card,
.promo-poster-card,
.promo-showcase__header {
    position: relative;
    z-index: 1;
}

.promo-showcase {
    padding: 56px 0 24px;
}

.promo-showcase__header {
    max-width: 760px;
    margin: 0 auto 28px;
}

.promo-showcase__kicker {
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.promo-showcase__header h1 {
    margin-bottom: 12px;
    color: #17375e;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.promo-poster-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dce8f5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(13, 110, 253, 0.08);
}

.promo-poster-frame {
    background: linear-gradient(180deg, #edf6ff 0%, #dfeeff 100%);
    padding: 14px;
}

.promo-poster-frame img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 79, 134, 0.15);
}

.promo-poster-fallback {
    min-height: 520px;
    border-radius: 18px;
    padding: 28px;
    align-content: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.88), rgba(225,239,255,0.92)),
        radial-gradient(circle at top right, rgba(73, 145, 255, 0.22), transparent 35%);
    text-align: left;
}

.promo-fallback-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.10);
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.promo-poster-fallback h2 {
    margin-bottom: 10px;
    color: #17375e;
}

.promo-poster-fallback p {
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.promo-poster-fallback small {
    color: #5d6b7a;
}

.promo-copy {
    padding: 20px 22px 24px;
}

.promo-copy h3 {
    margin-bottom: 10px;
    color: #17375e;
}

.promo-copy p {
    margin-bottom: 10px;
}

.promo-meta {
    color: #0f4f86 !important;
    font-weight: 600;
}

@media (max-width: 991px) {
    .clinic-footer__inner,
    .appointment-panel,
    .services-summary,
    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clinic-footer__brand,
    .appointment-panel__intro {
        grid-column: 1 / -1;
    }

    .appointment-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .appointment-form__submit {
        grid-column: span 2;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card__media {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .clinic-footer__inner,
    .appointment-panel,
    .appointment-form,
    .services-summary,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .clinic-footer__bottom {
        flex-direction: column;
    }

    .appointment-form__submit {
        grid-column: span 1;
    }

    .appointment-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .clinic-footer {
        padding-top: 18px;
    }

    .promo-poster-fallback {
        min-height: 360px;
    }
}

/* Final UI refresh */
:root {
    --clinic-ink: #10243f;
    --clinic-muted: #59697a;
    --clinic-blue: #0b6fbf;
    --clinic-teal: #099f9b;
    --clinic-green: #2f8f5b;
    --clinic-gold: #d99a2b;
    --clinic-line: rgba(16, 36, 63, 0.12);
    --clinic-card: rgba(255, 255, 255, 0.88);
    --clinic-shadow: 0 18px 45px rgba(16, 36, 63, 0.12);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    color: var(--clinic-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    background:
        linear-gradient(180deg, rgba(246, 251, 255, 0.92), rgba(237, 247, 244, 0.95)),
        url("images/lab1.png") center top / cover fixed !important;
}

body::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    filter: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
        radial-gradient(circle at 12% 18%, rgba(9, 159, 155, 0.18), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(217, 154, 43, 0.16), transparent 24%);
    z-index: -2;
}

body::after {
    display: none;
}

* {
    transition-property: color, background-color, border-color, box-shadow, transform, opacity;
}

.navbar {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(16, 36, 63, 0.08);
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(16, 36, 63, 0.08) !important;
}

.navbar-brand img {
    height: 58px !important;
    max-width: 180px;
    object-fit: contain;
}

.nav-link {
    position: relative;
    color: var(--clinic-ink) !important;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 6px;
    padding: 9px 11px !important;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--clinic-blue), var(--clinic-teal));
}

.nav-link.text-danger {
    color: #b35f00 !important;
}

.nav-link.text-danger:hover,
.nav-link.text-danger.active {
    color: #fff !important;
    background: linear-gradient(135deg, #e89b26, #d45b39);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-display,
.main-title {
    color: var(--clinic-ink);
    letter-spacing: 0;
    -webkit-text-fill-color: currentColor;
    background: none;
}

h1,
.main-title,
.heading-display {
    font-weight: 850;
    line-height: 1.05;
}

p,
li,
.text-body,
.text-muted {
    color: var(--clinic-muted) !important;
}

.badge,
.text-label,
.appointment-kicker,
.promo-showcase__kicker,
.services-hero__kicker,
.services-summary__label,
.service-detail-card__eyebrow {
    letter-spacing: 0.08em;
}

.btn,
.btn-primary,
.btn-highlight,
.appointment-form__submit,
.form-submit {
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--clinic-blue), var(--clinic-teal)) !important;
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(11, 111, 191, 0.22);
}

.btn:hover,
.btn-primary:hover,
.btn-highlight:hover,
.appointment-form__submit:hover,
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(9, 159, 155, 0.25);
}

.btn-outline-primary,
.btn-secondary,
.btn-dark {
    background: rgba(255, 255, 255, 0.86) !important;
    color: var(--clinic-blue) !important;
    border: 1px solid rgba(11, 111, 191, 0.24) !important;
    box-shadow: none;
}

img:hover {
    transform: none;
    filter: none;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 76px 0 58px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(247, 252, 255, 0.96) 0%, rgba(247, 252, 255, 0.82) 48%, rgba(247, 252, 255, 0.34) 100%),
        url("images/f1.jfif") center / cover no-repeat !important;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(246, 251, 255, 0.94));
    pointer-events: none;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--clinic-shadow);
    backdrop-filter: blur(14px);
}

.main-title {
    max-width: 620px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.lead {
    max-width: 620px;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.professional-img {
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 12px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    box-shadow: 0 28px 60px rgba(16, 36, 63, 0.25);
}

.floating-circle {
    display: none;
}

.appointment-strip,
.home-highlights,
.services-overview,
.promo-showcase,
.collections,
section.container,
.container.py-5 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
}

.appointment-panel,
.home-highlight-card,
.service-detail-card,
.promo-poster-card,
.permit-box,
.card,
.collection-item {
    border: 1px solid var(--clinic-line) !important;
    border-radius: 22px !important;
    background: var(--clinic-card) !important;
    box-shadow: var(--clinic-shadow);
    backdrop-filter: blur(16px);
}

.home-highlight-card,
.service-detail-card,
.card {
    overflow: hidden;
}

.home-highlight-card::before,
.service-detail-card::before,
.card::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--clinic-blue), var(--clinic-teal), var(--clinic-gold));
}

.card:hover,
.permit-box:hover,
.service-card:hover,
.home-highlight-card:hover,
.service-detail-card:hover,
.promo-poster-card:hover,
.collection-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(16, 36, 63, 0.16);
}

.appointment-panel {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
    gap: 26px;
    padding: 28px;
}

.appointment-panel__intro {
    padding: 10px;
}

.appointment-form .form-control,
.appointment-form .form-select,
.form-control,
.form-select,
.form-input,
.form-textarea {
    min-height: 48px;
    border: 1px solid rgba(16, 36, 63, 0.14) !important;
    border-radius: 14px !important;
    background-color: rgba(255, 255, 255, 0.92) !important;
    color: var(--clinic-ink) !important;
    box-shadow: none !important;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus,
.form-control:focus,
.form-select:focus,
.form-input:focus,
.form-textarea:focus {
    border-color: rgba(9, 159, 155, 0.70) !important;
    box-shadow: 0 0 0 4px rgba(9, 159, 155, 0.12) !important;
}

.home-highlight-card {
    min-height: 100%;
    padding: 24px;
}

.home-highlight-card h3,
.service-detail-card__body h2,
.promo-copy h3 {
    font-size: 1.25rem;
}

.services-hero {
    position: relative;
    width: 100% !important;
    margin: 0 auto 32px !important;
    padding: 86px 0 70px;
    border-radius: 0 0 34px 34px !important;
    box-shadow: none !important;
    background:
        linear-gradient(90deg, rgba(246, 251, 255, 0.82), rgba(246, 251, 255, 0.36)),
        url("images/lab2.png") center / cover no-repeat !important;
}

.services-hero::before,
.hero::before {
    display: none !important;
}

.services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--clinic-shadow);
    backdrop-filter: blur(16px);
}

.services-hero__content h1,
.services-hero__text,
.services-hero__kicker {
    color: var(--clinic-ink) !important;
}

.service-detail-card {
    grid-template-columns: 190px minmax(0, 1fr);
    padding: 20px;
}

.service-detail-card__media {
    border-radius: 18px;
}

.services-summary {
    border-color: var(--clinic-line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--clinic-shadow);
}

.owner-jfif {
    border-color: #fff;
    box-shadow: 0 18px 42px rgba(16, 36, 63, 0.22);
}

.permit-box img {
    border-radius: 16px;
}

.hero {
    min-height: calc(100vh - 80px);
    width: 100% !important;
    margin: 0 auto 32px !important;
    padding: 78px min(6vw, 74px);
    border-radius: 0 0 34px 34px !important;
    box-shadow: none !important;
    background:
        linear-gradient(110deg, rgba(246, 251, 255, 0.88) 0%, rgba(246, 251, 255, 0.66) 42%, rgba(9, 159, 155, 0.25) 100%),
        url("images/f1.jfif") center / cover no-repeat !important;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--clinic-shadow);
    backdrop-filter: blur(16px);
}

.hero-title,
.hero-description,
.hero-tagline {
    color: var(--clinic-ink) !important;
}

.hero .hero-tagline,
.hero .hero-title,
.hero .hero-description,
.hero .hero-actions,
.hero .hero-image,
.hero .hero-image-overlay {
    opacity: 1 !important;
    transform: none !important;
}

.hero-title em {
    color: #a7f3d0;
}

.hero-actions .btn-primary {
    min-width: 176px;
    padding: 16px 22px;
    font-size: 0.8rem;
    line-height: 1.25;
}

.hero-image {
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.collection-image {
    border-radius: 22px;
}

.collection-overlay {
    background: linear-gradient(180deg, transparent, rgba(16, 36, 63, 0.82));
}

.collection-name,
.collection-count {
    color: #fff !important;
}

.promo-showcase__header {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--clinic-shadow);
}

.promo-poster-frame {
    background:
        linear-gradient(135deg, rgba(11, 111, 191, 0.10), rgba(9, 159, 155, 0.12)),
        rgba(255, 255, 255, 0.70);
}

.clinic-footer {
    margin-top: 42px;
    background:
        linear-gradient(135deg, rgba(16, 36, 63, 0.98), rgba(8, 81, 105, 0.98)),
        url("images/f1.jfif") center / cover no-repeat;
}

.clinic-footer__brand p,
.clinic-footer__group p,
.clinic-footer__group a,
.clinic-footer__bottom p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.clinic-footer__title {
    color: #fff;
}

.clinic-footer__cta {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    color: #fff !important;
    background: linear-gradient(135deg, var(--clinic-green), var(--clinic-teal));
}

.clinic-footer,
footer.clinic-footer {
    margin-top: 48px !important;
    padding: 34px 0 18px !important;
    border-top: 0 !important;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 36, 63, 0.96), rgba(8, 81, 105, 0.96)),
        url("images/f1.jfif") center / cover no-repeat !important;
}

.clinic-footer .container {
    max-width: 1180px;
    padding: 0 24px !important;
    background: transparent !important;
    box-shadow: none !important;
}

.clinic-footer__inner {
    gap: 34px;
    padding: 0 !important;
    background: transparent !important;
}

.clinic-footer__brand img {
    height: 50px !important;
    padding: 6px 10px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
}

.clinic-footer__title {
    margin-bottom: 12px;
    color: #ffffff !important;
    font-size: 0.8rem;
}

.clinic-footer__brand p,
.clinic-footer__group p,
.clinic-footer__group a,
.clinic-footer__bottom p {
    color: rgba(255, 255, 255, 0.82) !important;
}

.clinic-footer__group {
    gap: 9px;
}

.clinic-footer__group a {
    text-decoration: none;
}

.clinic-footer__group a:hover {
    color: #ffffff !important;
}

.clinic-footer__cta {
    margin-top: 4px;
    padding: 10px 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.clinic-footer__bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.services-overview .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.services-overview .service-detail-card {
    display: flex !important;
    flex-direction: column;
    min-height: 100%;
    gap: 14px;
    padding: 14px !important;
}

.services-overview .service-detail-card__media {
    width: 100%;
    height: 180px !important;
    border-radius: 16px;
    order: 0;
}

.services-overview .service-detail-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-overview .service-detail-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.services-overview .service-detail-card__eyebrow {
    margin-bottom: 4px;
}

.services-overview .service-detail-card__body h2 {
    margin-bottom: 6px;
    font-size: 1.18rem;
}

.services-overview .service-detail-card__body p {
    margin-bottom: 8px;
    line-height: 1.55;
}

.services-overview .service-detail-card__body ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px 14px;
    margin: 4px 0 0;
    padding-left: 18px;
}

.services-overview .service-detail-card__body li {
    line-height: 1.45;
}

@media (max-width: 991px) {
    .services-overview .service-detail-card__body ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .services-overview .service-detail-card__media {
        height: 160px !important;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        align-items: stretch !important;
        gap: 6px;
        padding: 14px 0 6px;
    }

    .nav-link {
        margin: 0;
    }

    .hero-section {
        min-height: auto;
        padding: 58px 0 42px;
        background:
            linear-gradient(180deg, rgba(247, 252, 255, 0.96), rgba(247, 252, 255, 0.72)),
            url("images/f1.jfif") center / cover no-repeat !important;
    }

    .hero-content {
        padding: 24px;
    }

    .professional-img {
        aspect-ratio: 16 / 11;
        border-radius: 26px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body {
        background-attachment: scroll !important;
    }

    .navbar-brand img {
        height: 50px !important;
    }

    .main-title {
        font-size: clamp(2.35rem, 15vw, 3.45rem);
    }

    .hero-content {
        border-radius: 22px;
        padding: 20px;
    }

    .appointment-strip,
    .home-highlights,
    .services-overview,
    .promo-showcase,
    .collections,
    section.container,
    .container.py-5 {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .appointment-panel,
    .service-detail-card,
    .promo-poster-card,
    .card {
        border-radius: 18px !important;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 54px 20px;
    }

    .hero-actions,
    .services-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a,
    .services-hero__actions a,
    .d-flex .btn {
        width: 100%;
        text-align: center;
    }

    .promo-poster-frame {
        padding: 10px;
    }
}
