@import url('local-fonts.css');

:root {
    --gold: #d4af37;
    --gold-hover: #b89a2d;
    --gold-light: rgba(212, 175, 55, .15);
    --dark: #050608;
    --dark-card: rgba(12, 13, 16, 0.5);
    --dark-border: rgba(255, 255, 255, .06);
    --gold-border: rgba(212, 175, 55, .15);
    --white: #fff;
    --muted: #a8a8b3;
    --nav-height: 75px
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at 50% 0%, #11131a 0%, #050608 100%) !important;
    background-attachment: fixed !important;
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.hero-title,
.section-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.hero-title,
.section-title {
    background: linear-gradient(135deg, #ffffff 30%, #f4df96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
}

.navbar-brand {
    background: linear-gradient(135deg, #ffffff 10%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

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

a {
    text-decoration: none
}

/* NAVBAR */
.glass-nav {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    border-radius: 50px;
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    transition: all .4s;
    z-index: 1000
}

.glass-nav.scrolled {
    padding: .6rem 0;
    background: rgba(5, 6, 8, .85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-brand {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--gold) !important;
    text-transform: uppercase
}

.nav-link {
    color: rgba(255, 255, 255, .85) !important;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: .5rem 0 !important;
    margin: 0 1.2rem;
    position: relative;
    transition: color .3s
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

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

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .4rem .7rem
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,175,55,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.btn-nav-book {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .5rem 1.5rem;
    border-radius: 2px;
    transition: all .3s;
    white-space: nowrap;
    min-width: max-content;
}

.btn-nav-book:hover {
    background: var(--gold-hover);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, .3)
}

@media(max-width:991px) {
    .glass-nav {
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 30px;
        top: 0; left: 0; right: 0;
        padding: 0.8rem 0;
    }

    .glass-nav.scrolled {
        border: 1px solid var(--gold-border);
        padding: 0.6rem 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 10px;
        right: 10px;
        margin-top: 10px;
        background: rgba(5, 6, 8, .95);
        backdrop-filter: blur(30px) saturate(150%);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid var(--gold-border);
        border-radius: 20px;
        padding: 1rem;
        max-height: 75vh;
        overflow-y: auto;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8)
    }

    .nav-link {
        display: block;
        font-size: 1rem;
        letter-spacing: 2px;
        padding: 0.6rem 0 !important;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .04);
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-style: italic
    }

    .nav-link::after {
        display: none
    }

    .btn-nav-book {
        display: block;
        text-align: center;
        margin-top: 1rem;
        padding: 0.7rem;
        border-radius: 8px
    }
}

/* HERO SECTION */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    z-index: 0;
    overflow: hidden;
    padding-bottom: 15vh
}

.hero-section.hero-inner {
    height: 85vh;
    position: fixed;
    align-items: center;
    padding-bottom: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    transition: opacity 1.2s ease, filter 0.8s ease;
    z-index: 0
}

.hero-inner .hero-slide {
    background-position: center 15%;
    filter: blur(4px) brightness(0.65);
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1
}

.hero-slide.blurred {
    filter: blur(10px);
    transform: scale(1.02)
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 6, 8, 0) 0%, rgba(5, 6, 8, 0.2) 40%, rgba(5, 6, 8, 0.85) 85%, rgba(5, 6, 8, 1) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 1.5rem
}

.hero-tagline {
    font-size: clamp(.65rem, 1.5vw, .85rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: clamp(2px, .5vw, 4px);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: clamp(2px, 1vw, 6px);
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 1);
    line-height: 1.3;
    margin-bottom: 0.75rem
}

.hero-subtitle {
    font-size: clamp(.65rem, 1.2vw, .8rem);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: clamp(1px, .5vw, 3px);
    text-transform: uppercase;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 1)
}

.fade-in-hero {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease
}

.fade-in-hero.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.hero-indicators {
    margin-top: 2.5rem;
    display: flex;
    gap: .6rem;
    justify-content: center
}

.hero-dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    transition: all .3s;
    border-radius: 2px
}

.hero-dot.active {
    background: var(--gold);
    width: 50px
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000
}

.hero-arrow-left {
    left: 1.5rem
}

.hero-arrow-right {
    right: 1.5rem
}

/* MAIN CONTENT (slides over hero) */
.main-content {
    position: relative;
    z-index: 10;
    background: var(--dark);
    box-shadow: 0 -30px 80px rgba(0, 0, 0, 1);
    margin-top: 100vh
}

.hero-inner~.main-content {
    margin-top: 60vh
}

/* SECTIONS */
.section-dark {
    background: var(--dark)
}

.section-dark-alt {
    background: var(--dark-card)
}

.section-gold-accent {
    background: linear-gradient(135deg, rgba(212, 175, 55, .04), var(--dark));
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border)
}

/* TYPOGRAPHY */
.text-gold {
    color: var(--gold) !important
}

.text-muted {
    color: var(--muted) !important
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--white)
}

.section-lead {
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.gold-divider {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.fade-up.visible .gold-divider,
.fade-in.visible .gold-divider {
    width: 60px;
}

.quote-block {
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.5rem;
    background: rgba(212, 175, 55, .04)
}

/* STATS */
.stat-number {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1
}

.stat-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: .5rem
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #ebd17f 0%, #b89a2d 100%) !important;
    color: #000 !important;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: .8rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    white-space: nowrap;
    min-width: max-content;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4af37 0%, #9e7b16 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5) !important;
    transform: translateY(-3px) scale(1.02);
    border-color: #d4af37
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    padding: .95rem 2.4rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: .8rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    min-width: max-content;
}

.btn-outline-gold:hover {
    background: var(--gold) !important;
    color: #000 !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25) !important;
    transform: translateY(-3px) scale(1.02);
    border-color: var(--gold)
}

/* FEATURE CARDS */
.feature-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, .6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .9), 0 0 30px rgba(212, 175, 55, 0.15)
}

.feature-card h4 {
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem
}

.feature-card p {
    font-size: .85rem;
    line-height: 1.8;
    color: var(--muted);
    margin: 0
}

/* EXPERTISE CARDS */
.expertise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height .5s
}

.expertise-card:hover::before {
    height: 100%
}

.expertise-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .9), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, .6)
}

.expertise-num {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .025);
    line-height: 1;
    pointer-events: none
}

.expertise-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-top: .5rem
}

.expertise-card .expertise-desc {
    font-size: .88rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 1.5rem
}

.expertise-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .6rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .7)
}

.expertise-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0
}

/* SERVICE CARDS (homepage) */
.service-card-home {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.service-card-home:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .9), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, .6)
}

.service-card-home .service-num {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    pointer-events: none
}

.service-card-home h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem
}

.service-card-home p {
    font-size: .85rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem
}

.service-link {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .3s
}

.service-link:hover {
    color: var(--gold-hover);
    letter-spacing: 3px
}

/* SERVICE DETAIL */
.service-detail-content {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--muted)
}

.service-detail-content h2,
.service-detail-content h3 {
    color: var(--white);
    margin: 2rem 0 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.service-detail-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0
}

.service-detail-content li {
    margin-bottom: .5rem
}

/* TEAM CARDS */
.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.team-card:hover {
    border-color: rgba(212, 175, 55, .6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .9), 0 0 30px rgba(212, 175, 55, 0.15)
}

.team-card-img {
    position: relative;
    height: 280px;
    overflow: hidden
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.team-card:hover .team-card-img img {
    transform: scale(1.05)
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8))
}

.team-card-body {
    padding: 1.5rem
}

.team-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .3rem
}

.team-spec {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: .75rem
}

.team-meta {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: .75rem
}

.team-divider {
    color: rgba(255, 255, 255, .2)
}

.team-desc {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0
}

/* TESTIMONIAL CARDS */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, .6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .9), 0 0 30px rgba(212, 175, 55, 0.15)
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.testimonial-text {
    font-size: .88rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .75);
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-border);
    flex-shrink: 0
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.testimonial-author h4 {
    font-size: .85rem;
    font-weight: 700;
    margin: 0 0 .2rem;
    color: var(--white)
}

.testimonial-author p {
    font-size: .72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0
}

.testimonial-social {
    display: flex;
    gap: .5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border)
}

.testimonial-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--muted);
    transition: all .3s
}

.testimonial-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px)
}

/* ABOUT TAGS & LISTS */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.about-tag {
    background: rgba(212, 175, 55, .08);
    border: 1px solid rgba(212, 175, 55, .15);
    color: var(--gold);
    padding: .5rem 1.2rem;
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s
}

.about-tag:hover {
    background: rgba(212, 175, 55, .15);
    transform: translateY(-2px)
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.about-list-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--dark-border);
    padding: .85rem 1.25rem;
    border-radius: 4px;
    font-size: .85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: all .3s
}

.about-list-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0
}

.about-list-item:hover {
    border-color: rgba(212, 175, 55, .2);
    background: rgba(212, 175, 55, .04)
}

/* BOOKING FORM */
.booking-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05)
}

.form-section-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--gold-border)
}

.success-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto
}

/* FORM INPUTS */
.dark-input {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    padding: .85rem 1.25rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%
}

.dark-input:focus {
    background: rgba(255, 255, 255, .06);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25) !important;
    color: #fff;
    outline: none
}

.dark-label {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: .5rem
}

select.dark-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem
}

select.dark-input option {
    background: #0c0d10;
    color: #fff
}

/* PORTRAIT */
.portrait-wrapper {
    position: relative;
    display: inline-block;
    width: 100%
}

.portrait-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 4px;
    z-index: 0
}

.portrait-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .8)
}

/* GALLERY */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #0a0b0e;
    border: 1px solid var(--dark-border);
    transition: all 0.4s;
    display: block;
    aspect-ratio: 4/5;
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, .5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .8);
    transform: translateY(-4px);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-overlay .op-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: .5rem;
    display: block;
    transform: translateY(15px);
    transition: all 0.4s ease
}

.gallery-overlay .op-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.1s
}

.gallery-item:hover .gallery-overlay .op-label,
.gallery-item:hover .gallery-overlay .op-title {
    transform: translateY(0);
}

/* LIGHTBOX */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .97);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s
}

.lightbox-overlay.active {
    display: flex
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 1);
    border: 1px solid rgba(212, 175, 55, .15)
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.4rem;
    transition: all .3s;
    z-index: 10000
}

.lightbox-close:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold)
}

/* SCROLL ANIMATION */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-arrow {
    color: var(--gold);
    animation: bounceUpDown 2s infinite ease-in-out;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

@keyframes bounceUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* LIQUID GLASS */
.liquid-glass-card {
    background: rgba(10, 11, 15, 0.45) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.liquid-glass-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 50%;
}

/* FOOTER */
footer {
    background: #020203;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.footer-links a {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .3s
}

.footer-links a:hover {
    color: var(--gold)
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    margin: 0 .4rem;
    transition: all .3s
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px)
}

/* CAROUSEL */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(72%) sepia(59%) saturate(415%) hue-rotate(9deg) brightness(97%) contrast(85%)
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    filter: blur(0);
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(-1%, -0.5%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 40s infinite ease-in-out;
}

@keyframes goldPulse {
    0% {
        border-color: rgba(212, 175, 55, 0.25);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.15);
    }

    50% {
        border-color: rgba(212, 175, 55, 0.6);
        box-shadow: 0 0 15px 2px rgba(212, 175, 55, 0.3);
    }

    100% {
        border-color: rgba(212, 175, 55, 0.25);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.15);
    }
}

.btn-whatsapp-icon {
    animation: goldPulse 2.5s infinite ease-in-out;
}

/* Card Shine Accent Glow */
.feature-card,
.expertise-card,
.blog-card,
.service-card-home {
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.expertise-card::after,
.blog-card::after,
.service-card-home::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 25%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.feature-card:hover::after,
.expertise-card:hover::after,
.blog-card:hover::after,
.service-card-home:hover::after {
    opacity: 1;
    left: 140%;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* RESPONSIVE */
@media(max-width:991px) {
    .hero-arrow {
        width: 36px;
        height: 36px
    }

    .hero-arrow-left {
        left: .75rem
    }

    .hero-arrow-right {
        right: .75rem
    }
}

@media(max-width:767px) {
    .hero-section {
        padding-bottom: 4rem !important
    }

    .hero-section.hero-inner {
        height: 45vh;
        padding-bottom: 0 !important;
    }

    .hero-content {
        margin-top: 15vh !important;
    }

    .hero-inner .hero-content {
        margin-top: 10vh !important;
    }

    .hero-title {
        font-size: clamp(1rem, 5vw, 1.4rem) !important;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: clamp(0.65rem, 3vw, 0.85rem) !important;
        margin-bottom: 1.5rem;
        white-space: normal !important;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 3%;
        width: 100%;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline-gold {
        width: 48%;
        max-width: none;
        text-align: center;
        padding: .7rem 0;
        font-size: clamp(0.55rem, 2.5vw, 0.75rem);
        margin: 0 !important;
        white-space: nowrap;
    }

    .scroll-indicator {
        bottom: 1.5rem !important;
        transform: translateX(-50%) scale(0.8) !important;
    }

    .portrait-wrapper {
        max-width: 320px;
        margin: 0 auto
    }

    .portrait-wrapper::before {
        display: none
    }

    .expertise-card {
        padding: 3rem 1.25rem 1.75rem;
        text-align: center
    }

    .expertise-card h3 {
        font-size: 1rem
    }

    .expertise-num {
        font-size: 3rem
    }

    .expertise-feature {
        justify-content: center
    }

    .feature-card {
        text-align: center
    }

    .quote-block {
        margin-left: 0
    }

    .stat-number {
        font-size: clamp(2rem, 10vw, 3rem)
    }

    .gallery-overlay {
        padding: .6rem .75rem
    }

    .gallery-overlay .op-label {
        font-size: .55rem;
        letter-spacing: 2px
    }

    .gallery-overlay .op-title {
        font-size: .72rem;
        letter-spacing: 1px
    }

    .team-card-img {
        height: 220px
    }

    .booking-form-wrapper {
        padding: 1.5rem
    }

    .hero-arrow {
        display: none
    }
}

@media(max-width:575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .py-lg-7 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .hero-title {
        letter-spacing: 2px
    }
}

@media(max-width:400px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* ── ADDITIONAL PREMIUM CUSTOM STYLES ── */

/* Modern Arrow Button for Cards */
.modern-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-end;
}

.modern-arrow-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* WhatsApp Floating Icon Button */
.btn-whatsapp-floating {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-floating svg {
    width: 28px;
    height: 28px;
}

.btn-whatsapp-floating:hover {
    background: #1ebc59;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-4px);
}

/* Align buttons container */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center !important;
    flex-wrap: wrap;
}

/* Scroll Indicator Hover Actions & Centering */
.scroll-indicator {
    position: absolute !important;
    bottom: 1.25rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    color: var(--gold);
}

.scroll-indicator:hover .scroll-arrow {
    animation: bounceUpDown 2s infinite ease-in-out !important;
}

.scroll-indicator span {
    font-size: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.scroll-indicator span::before {
    content: 'Go Up';
    font-size: 0.75rem;
}

.scroll-indicator:hover span::before {
    content: 'Go Up';
}

/* Adjust scroll indicator on inner hero to prevent text collisions */
.hero-inner .scroll-indicator {
    bottom: 0.75rem !important;
}

@media (max-width: 991px) {
    .hero-inner .scroll-indicator {
        display: none !important;
    }
}

/* Head Photo Container & Mask Fade */
.head-photo-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.7);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
}

.head-photo-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.head-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.head-photo-container:hover .head-photo {
    transform: scale(1.05);
}

/* Opaque Services Cards (Static, Non-Animated Hover) */
.service-card-home {
    background: linear-gradient(145deg, #090a0e 0%, #06070a 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-top: 3px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card-home:hover {
    border-color: rgba(212, 175, 55, 0.45) !important;
    border-top-color: rgba(212, 175, 55, 1) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-8px) scale(1.01) !important;
}

/* Static Service Icons Transition */
.service-card-home .liquid-glass-icon {
    animation: none !important;
    /* No floating animation */
    background: rgba(212, 175, 55, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card-home:hover .liquid-glass-icon {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4) !important;
    transform: none !important;
}

.service-card-home:hover .liquid-glass-icon svg {
    color: #000 !important;
    filter: none !important;
}

/* About Page Portrait Styling Override */
.portrait-wrapper {
    margin-top: -65px !important;
    position: relative;
    z-index: 15;
    transition: transform 0.4s ease;
}

.portrait-wrapper img {
    -webkit-mask-image: radial-gradient(ellipse at 50% 35%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 70%);
    mask-image: radial-gradient(ellipse at 50% 35%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 70%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85) !important;
    border-radius: 12px;
}

.portrait-wrapper::before {
    display: none !important;
}

/* Blog Styles */
.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(212, 175, 55, 0.65) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.25) !important;
}

.blog-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-meta-info {
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-meta-author {
    color: var(--gold);
    font-weight: 600;
}

.blog-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
}

.blog-hashtag {
    font-size: 0.7rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s;
}

.blog-hashtag:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #fff;
}

/* Blog & Service detail inline images styling */
.service-detail-content::after {
    content: "";
    display: table;
    clear: both;
}

.service-detail-content img {
    float: left;
    max-width: 45%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin: 0.5rem 2rem 1.5rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
}

@media(max-width: 767px) {
    .service-detail-content img {
        float: none;
        max-width: 100%;
        margin: 2rem auto;
        display: block;
    }
}

/* Prevent justified text alignment from stretching heading elements */
.service-detail-content h1,
.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4,
.service-detail-content h5,
.service-detail-content h6 {
    text-align: start !important;
}

/* ── MODERN DYNAMIC INTERACTIVE ANIMATIONS ── */

/* 1. Gentle Floating Animation for Portrait wrappers */
.portrait-wrapper {
    animation: floatPortrait 6s infinite ease-in-out !important;
}

@keyframes floatPortrait {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* 2. Desktop Nav Link Cascade Slide-In Stagger */
@media (min-width: 992px) {
    .glass-nav .nav-item {
        opacity: 0;
        transform: translateY(-12px);
        animation: navLinkSlideIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }

    .glass-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .glass-nav .nav-item:nth-child(2) {
        animation-delay: 0.18s;
    }

    .glass-nav .nav-item:nth-child(3) {
        animation-delay: 0.26s;
    }

    .glass-nav .nav-item:nth-child(4) {
        animation-delay: 0.34s;
    }

    .glass-nav .nav-item:nth-child(5) {
        animation-delay: 0.42s;
    }

    .glass-nav .nav-item:nth-child(6) {
        animation-delay: 0.5s;
    }

    .glass-nav .nav-item:nth-child(7) {
        animation-delay: 0.58s;
    }

    .glass-nav .btn-nav-book {
        opacity: 0;
        transform: scale(0.9);
        animation: navBookScaleIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
    }
}

@keyframes navLinkSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navBookScaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 3. Staggered Row Entrance Animation for grid columns */
@media (min-width: 768px) {

    .row>[class*="col-"]:nth-child(1) .fade-up,
    .row>[class*="col-"]:nth-child(1) .fade-in {
        transition-delay: 0.05s !important;
    }

    .row>[class*="col-"]:nth-child(2) .fade-up,
    .row>[class*="col-"]:nth-child(2) .fade-in {
        transition-delay: 0.2s !important;
    }

    .row>[class*="col-"]:nth-child(3) .fade-up,
    .row>[class*="col-"]:nth-child(3) .fade-in {
        transition-delay: 0.35s !important;
    }

    .row>[class*="col-"]:nth-child(4) .fade-up,
    .row>[class*="col-"]:nth-child(4) .fade-in {
        transition-delay: 0.5s !important;
    }
}