/* ----- GOOGLE FONTS LINK ----- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    max-width: 100%;
}

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

/* ---------- HEADER SECTION ----------- */
/* ---- Header Shell ---- */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background 0.4s ease, box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}

/* Transparent by default — sits over hero image */
#site-header.nav-top {
    background: transparent;
    box-shadow: none;
}

/* Scrolled state — dark with blur */
#site-header.nav-scrolled {
    background: rgba(14, 12, 4, 0.97);
    /* background: whitesmoke; */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* ---- Nav Bar ---- */
#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(4%, 6vw, 70px);
    height: 80px;
    transition: height 0.4s ease;
}

#site-header.nav-scrolled #navbar {
    height: 68px;
}

/* ---- Logo ---- */
.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 62px;
    width: auto;
    transition: height 0.4s ease, filter 0.3s ease;
}

#site-header.nav-scrolled .nav-logo img {
    height: 52px;
}

/* ---- Desktop Nav List ---- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 6px 14px;
    font-family: "Cinzel", serif;
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Gold underline on hover/active */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #d4af37;
}

/* ---- Right Actions ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Book Event CTA button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.nav-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(4px);
}

/* ---- Hamburger Button ---- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px 9px;
    transition: background 0.3s ease;
}

.nav-hamburger:hover {
    background: rgba(212, 175, 55, 0.2);
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Drawer ---- */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100dvh;
    background: linear-gradient(160deg, #111111 0%, #1c1508 60%, #111111 100%);
    /* background: white; */
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 998;
    transition: right 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nav-drawer.open {
    right: 0;
}

.drawer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
}

.drawer-link {
    display: block;
    padding: 14px 0;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.drawer-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, #d4af37, #b8860b);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.drawer-link:hover {
    color: #d4af37;
    padding-left: 14px;
}

.drawer-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

/* Drawer CTA button */
.drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 24px;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drawer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
}

/* Drawer contact info */
.drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.drawer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Nunito", sans-serif;
    font-size: 0.85rem;
    color: #6a5a40;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.drawer-contact a:hover {
    color: #d4af37;
}

.drawer-contact i {
    color: #d4af37;
    font-size: 13px;
    width: 16px;
}

/* ---- Backdrop ---- */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* ---------- HOME SECTION ----------- */
#home {
    min-height: 60vh;
    height: 100vh;
    max-height: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mySwiperHome {
    width: 100%;
    height: 100%;
}

.mySwiperHome .swiper-slide {
    position: relative;
    overflow: hidden;
}

.mySwiperHome .swiper-slide img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    animation: kenburns 8s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

/* Gradient overlay - looks more premium than flat black */
.mySwiperHome .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.mySwiperHome .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    color: #fff;
    text-align: center;
    z-index: 2;
    width: min(90%, 800px);
    padding: 0 16px;
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.mySwiperHome .swiper-slide-active .caption {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.mySwiperHome .caption h1 {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(22px, 4vw, 44px);
    line-height: 1.3;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mySwiperHome .caption p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(13px, 1.6vw, 17px);
    line-height: 1.6;
    margin-bottom: 22px;
    opacity: 0.95;
}

.mySwiperHome .hero-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 1.4vw, 15px);
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.mySwiperHome .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.55);
}

/* Navigation arrows */
.mySwiperHome .swiper-button-next,
.mySwiperHome .swiper-button-prev {
    color: #fff;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}

.mySwiperHome .swiper-button-next:hover,
.mySwiperHome .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.7);
}

.mySwiperHome .swiper-button-next::after,
.mySwiperHome .swiper-button-prev::after {
    font-size: 18px;
}

/* Pagination dots */
.mySwiperHome .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.6;
}

.mySwiperHome .swiper-pagination-bullet-active {
    background: #d4af37;
    opacity: 1;
    width: 28px;
    border-radius: 5px;
    transition: width 0.3s ease;
}

/* ---------- ABOUT US SECTION ----------- */
#wedding-section {
    width: 100%;
    padding: clamp(60px, 9vw, 100px) clamp(5%, 8vw, 100px);
    background: #fdfaf4;
    position: relative;
    overflow: hidden;
}

/* Top separator */
#wedding-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Bottom-right background blob */
#wedding-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
    position: relative;
    z-index: 1;
}

/* ----- LEFT TEXT ----- */
.abt-text {
    flex: 1 1 460px;
}

.abt-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-style: italic;
    font-weight: 600;
    color: #b8860b;
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}

.abt-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 2px;
    background: #d4af37;
}

.abt-text h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 10px 0 4px;
    background: linear-gradient(135deg, #d4af37, #8a6d1d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.abt-text h2 {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 18px;
}

.abt-text>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.92rem, 1.3vw, 1rem);
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 540px;
    margin-bottom: 32px;
}

/* Stats */
.abt-stats {
    display: flex;
    gap: clamp(24px, 5vw, 50px);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.abt-stat h3 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: #d4af37;
    margin: 0 0 4px;
    line-height: 1;
}

.abt-stat p {
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

/* Button */
.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.5);
}

.abt-btn i {
    transition: transform 0.3s ease;
}

.abt-btn:hover i {
    transform: translateX(5px);
}

/* ----- RIGHT VISUAL ----- */
.abt-visual {
    flex: 1 1 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 380px;
}

/* Decorative spinning ring */
.abt-deco-ring {
    position: absolute;
    width: 105%;
    height: 105%;
    border: 1.5px dashed rgba(212, 175, 55, 0.35);
    border-radius: 40px;
    animation: abt-spin 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes abt-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Phone/reel frame */
.abt-reel-frame {
    width: 275px;
    aspect-ratio: 9 / 16;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 5px rgba(212, 175, 55, 0.5),
        0 30px 70px rgba(0, 0, 0, 0.22);
    background: #111;
}

/* Notch at top of phone frame */
.abt-reel-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    z-index: 4;
}

/* Video / image fills frame */
.abt-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay at bottom */
.abt-reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.abt-reel-caption {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.abt-reel-caption i {
    color: #d4af37;
    font-size: 14px;
}

/* Floating badge — top left */
.abt-float-badge {
    position: absolute;
    top: -18px;
    left: -24px;
    z-index: 5;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}

.abt-float-badge i {
    font-size: 13px;
}

/* Floating event card — bottom right */
.abt-float-card {
    position: absolute;
    bottom: -18px;
    right: -24px;
    z-index: 5;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 160px;
}

.abt-float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-float-card-icon i {
    color: #d4af37;
    font-size: 16px;
}

.abt-float-card h4 {
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.abt-float-card p {
    font-family: "Nunito", sans-serif;
    font-size: 0.72rem;
    color: #b8860b;
    font-weight: 600;
    margin: 0;
}

/* ---------- SERVICES SECTION ----------- */
#services {
    width: 100%;
    padding: clamp(50px, 8vw, 90px) clamp(4%, 6vw, 80px);
    background: linear-gradient(160deg, #141414 0%, #1e1a10 60%, #141414 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle gold glow top-left */
#services::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Subtle gold glow bottom-right */
#services::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ----- TOP HEADER ----- */
.top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: clamp(36px, 5vw, 56px);
}

.left-text {
    flex: 1 1 300px;
}

.s-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.left-text h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}

.left-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.right-text {
    flex: 1 1 280px;
    max-width: 420px;
    text-align: right;
}

.right-text p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.88rem, 1.3vw, 0.98rem);
    color: #b0a090;
    line-height: 1.7;
    margin-bottom: 20px;
}

.s-links {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.s-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.82rem, 1.2vw, 0.92rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.s-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45);
}

.s-link-btn--ghost {
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    box-shadow: none;
}

.s-link-btn--ghost:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.15);
}

/* ----- SWIPER CARDS ----- */
.mySwiperServices {
    width: 100%;
    padding-bottom: 40px !important;
}

.mySwiperServices .swiper-wrapper {
    align-items: stretch;
}

.mySwiperServices .swiper-slide {
    position: relative;
    height: 320px;
    width: 260px !important;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.mySwiperServices .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.mySwiperServices .swiper-slide:hover img {
    transform: scale(1.07);
    filter: brightness(0.55);
}

/* Always-visible bottom label strip */
.s-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.3) 45%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    transition: background 0.4s ease;
}

.mySwiperServices .swiper-slide:hover .s-card-overlay {
    background: linear-gradient(to top,
            rgba(10, 6, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.55) 55%,
            rgba(0, 0, 0, 0.15) 100%);
}

/* Gold accent line that slides in on hover */
.s-card-overlay::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.4s ease;
}

.mySwiperServices .swiper-slide:hover .s-card-overlay::before {
    width: 100%;
}

.s-card-name {
    font-family: "Cinzel", serif;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 10px 0;
    transform: translateY(4px);
    transition: transform 0.35s ease;
}

.mySwiperServices .swiper-slide:hover .s-card-name {
    transform: translateY(0);
}

.s-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    align-self: flex-start;
}

.mySwiperServices .swiper-slide:hover .s-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ----- NAVIGATION ARROWS ----- */
.mySwiperServices .swiper-button-next,
.mySwiperServices .swiper-button-prev {
    color: #d4af37;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    top: 42%;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.mySwiperServices .swiper-button-next:hover,
.mySwiperServices .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.mySwiperServices .swiper-button-next::after,
.mySwiperServices .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* ----- PAGINATION DOTS ----- */
.mySwiperServices .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.mySwiperServices .swiper-pagination-bullet-active {
    background: #d4af37;
    width: 24px;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ---------- WHY CHOOSE US SECTION ----------- */
#why-choose-us {
    width: 100%;
    padding: clamp(60px, 9vw, 100px) clamp(5%, 8vw, 100px);
    background: #fdfaf4;
    position: relative;
    overflow: hidden;
}

/* Top gold separator line */
#why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Soft background accent blobs */
#why-choose-us::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- HEADER ----- */
.wcu-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 64px);
}

.wcu-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wcu-header h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 16px;
}

.wcu-header h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wcu-header>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ----- GRID ----- */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 26px);
    margin-bottom: clamp(40px, 6vw, 56px);
}

/* ----- CARD ----- */
.wcu-card {
    background: #fff;
    border-radius: 18px;
    padding: clamp(24px, 3vw, 36px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    /* Scroll reveal — starts hidden */
    opacity: 0;
    transform: translateY(30px);
}

.wcu-card.wcu-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s ease;
}

/* Gold sweep line on hover */
.wcu-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.42s ease;
}

.wcu-card:hover::before {
    width: 100%;
}

.wcu-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* ----- ICON ----- */
.wcu-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.35s ease;
}

.wcu-card:hover .wcu-icon {
    background: linear-gradient(135deg, #d4af37, #b8860b);
}

.wcu-icon i {
    font-size: 22px;
    color: #d4af37;
    transition: color 0.3s ease;
}

.wcu-card:hover .wcu-icon i {
    color: #fff;
}

/* ----- CARD TEXT ----- */
.wcu-card h3 {
    font-family: "Cinzel", serif;
    font-size: clamp(0.92rem, 1.4vw, 1.08rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.35;
}

.wcu-card>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ----- HIGHLIGHT CARD (dark) ----- */
.wcu-card--highlight {
    background: linear-gradient(150deg, #1c1505, #2c2005);
    border-color: rgba(212, 175, 55, 0.3);
}

.wcu-card--highlight::before {
    background: linear-gradient(90deg, #d4af37, #f5c842);
}

.wcu-card--highlight:hover {
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.18);
}

.wcu-card--highlight .wcu-icon {
    background: rgba(212, 175, 55, 0.15);
}

.wcu-card--highlight:hover .wcu-icon {
    background: linear-gradient(135deg, #d4af37, #b8860b);
}

.wcu-card--highlight h3 {
    color: #fff;
}

.wcu-card--highlight>p {
    color: #b8a070;
}

.wcu-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* ----- BOTTOM CTA ----- */
.wcu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 36px);
    flex-wrap: wrap;
    padding-top: 8px;
}

.wcu-cta>p {
    font-family: "Cinzel", serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #2b2b2b;
    margin: 0;
}

.wcu-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(0.88rem, 1.3vw, 0.98rem);
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.5);
}

/* ---------- EVENTS SECTION ----------- */
#events {
    width: 100%;
    padding: clamp(60px, 9vw, 100px) clamp(5%, 8vw, 100px);
    background: linear-gradient(160deg, #0e0e0e 0%, #1a1508 55%, #0e0e0e 100%);
    position: relative;
    overflow: hidden;
}

/* Top gold separator */
#events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Bottom right gold blob */
#events::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- HEADER ----- */
.events-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 60px);
}

.events-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.events-header h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
}

.events-header h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.events-header>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: #9a8a72;
    line-height: 1.75;
    margin: 0;
}

/* ----- SHOWREEL ----- */
.events-showreel {
    margin-bottom: clamp(44px, 6vw, 64px);
}

.showreel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.showreel-label i {
    font-size: 16px;
}

.showreel-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    background: #111;
}

.showreel-wrapper iframe,
.showreel-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.showreel-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-family: "Nunito", sans-serif;
    font-size: 0.82rem;
    color: #5a4a30;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.showreel-caption i {
    color: #d4af37;
    font-size: 13px;
}

/* ----- PREVIEW LABEL ----- */
.events-preview-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(22px, 3.5vw, 32px);
}

.events-preview-label span {
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.events-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), transparent);
}

/* ----- EVENTS GRID ----- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 22px);
    margin-bottom: clamp(36px, 5vw, 50px);
}

/* ----- EVENT CARD ----- */
.event-card {
    text-decoration: none;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: transform 0.35s ease, border-color 0.35s ease,
        box-shadow 0.35s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Thumbnail area */
.event-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.event-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.event-card:hover .event-card-thumb img {
    transform: scale(1.07);
    filter: brightness(0.5);
}

/* Hover overlay */
.event-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.event-card:hover .event-card-overlay {
    opacity: 1;
}

/* Play button */
.event-play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

.event-card:hover .event-play-btn {
    transform: scale(1);
}

.event-play-btn i {
    font-size: 18px;
    color: #fff;
    margin-left: 3px;
}

/* Event type badge */
.event-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: "Nunito", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Card info */
.event-card-info {
    padding: clamp(12px, 2vw, 18px) clamp(14px, 2.2vw, 20px);
}

.event-card-info h4 {
    font-family: "Cinzel", serif;
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.35;
}

.event-card-info p {
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    color: #6a5a40;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-card-info p i {
    color: #d4af37;
    font-size: 11px;
}

/* ----- VIEW ALL CARD ----- */
.event-card--viewall {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    aspect-ratio: unset;
}

.event-card--viewall:hover {
    background: rgba(212, 175, 55, 0.1);
    border-style: solid;
}

.viewall-inner {
    text-align: center;
    padding: clamp(20px, 3vw, 32px);
}

.viewall-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: background 0.35s ease;
}

.event-card--viewall:hover .viewall-icon {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-color: transparent;
}

.viewall-icon i {
    font-size: 22px;
    color: #d4af37;
    transition: color 0.3s ease;
}

.event-card--viewall:hover .viewall-icon i {
    color: #fff;
}

.viewall-inner h4 {
    font-family: "Cinzel", serif;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.viewall-inner>p {
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    color: #6a5a40;
    line-height: 1.5;
    margin: 0 0 16px;
}

.viewall-arrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Nunito", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #d4af37;
    transition: gap 0.3s ease;
}

.event-card--viewall:hover .viewall-arrow {
    gap: 12px;
}

/* ----- BOTTOM CTA ----- */
.events-cta {
    text-align: center;
}

.events-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    border-radius: 50px;
    transition: background 0.35s ease, border-color 0.35s ease,
        color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    letter-spacing: 0.3px;
}

.events-gallery-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.events-gallery-btn i {
    font-size: 16px;
}

/* ---------- TESTIMONIALS SECTION ----------- */
#testimonials {
    width: 100%;
    padding: clamp(60px, 9vw, 100px) clamp(5%, 8vw, 100px);
    background: #fdfaf4;
    position: relative;
    overflow: hidden;
}

/* Giant decorative background quote mark */
.testi-bg-quote {
    position: absolute;
    top: -30px;
    left: 3%;
    font-family: "Cinzel", serif;
    font-size: clamp(200px, 25vw, 340px);
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Top separator line */
#testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

#testimonials::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Background quote mark - subtle on light */
.testi-bg-quote {
    position: absolute;
    top: -30px;
    left: 3%;
    font-family: "Cinzel", serif;
    font-size: clamp(200px, 25vw, 340px);
    color: rgba(212, 175, 55, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ----- HEADER ----- */
.testi-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(40px, 6vw, 60px);
}

.testi-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.testi-header h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    /* was #fff */
    line-height: 1.25;
    margin: 0 0 16px;
}

.testi-header h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testi-header>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: #666;
    /* was #9a8a72 */
    line-height: 1.75;
    margin: 0;
}

/* ----- SWIPER ----- */
.mySwiperTesti {
    width: 100%;
    padding: 20px 10px 55px !important;
}

/* ----- CARD ----- */
.testi-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    padding: clamp(22px, 3vw, 34px);
    height: 100%;
    position: relative;
    transition: border-color 0.35s ease, background 0.35s ease,
        transform 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Gold top line on active/hover */
.testi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 20px 20px 0 0;
    transition: width 0.42s ease;
}

/* Active slide gets highlighted card */
.mySwiperTesti .swiper-slide-active .testi-card {
    background: #fff;
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.mySwiperTesti .swiper-slide-active .testi-card::before {
    width: 100%;
}

/* ----- CARD TOP ----- */
.testi-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, 0.5);
    overflow: hidden;
    background: #2a2010;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-meta h4 {
    font-family: "Cinzel", serif;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px;
}

.testi-event-type {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 0.4px;
    margin-bottom: 7px;
    display: block;
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    font-size: 11px;
    color: #d4af37;
}

/* ----- QUOTE ICON ----- */
.testi-quote-icon {
    margin-bottom: 12px;
}

.testi-quote-icon i {
    font-size: 22px;
    color: rgba(212, 175, 55, 0.4);
}

/* ----- REVIEW TEXT ----- */
.testi-text {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.86rem, 1.25vw, 0.95rem);
    color: #555;
    line-height: 1.8;
    margin: 0 0 18px;
}

/* ----- DIVIDER ----- */
.testi-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-bottom: 14px;
    border-radius: 2px;
}

/* ----- LOCATION ----- */
.testi-location {
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.testi-location i {
    color: #d4af37;
    font-size: 11px;
}

/* ----- NAVIGATION ARROWS ----- */
.mySwiperTesti .swiper-button-next,
.mySwiperTesti .swiper-button-prev {
    color: #b8860b;
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    top: 44%;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.mySwiperTesti .swiper-button-next:hover,
.mySwiperTesti .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.mySwiperTesti .swiper-button-next::after,
.mySwiperTesti .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* ----- PAGINATION ----- */
.mySwiperTesti .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.mySwiperTesti .swiper-pagination-bullet-active {
    background: #d4af37;
    width: 26px;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ----- VIEW MORE BUTTON ----- */
.testi-cta {
    text-align: center;
    margin-top: clamp(30px, 5vw, 44px);
}

.testi-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    color: #b8860b;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(0.88rem, 1.3vw, 0.98rem);
    border-radius: 50px;
    letter-spacing: 0.4px;
    transition: background 0.35s ease, border-color 0.35s ease,
        color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
}

.testi-view-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.4);
}

.testi-view-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.testi-view-btn:hover i {
    transform: translateX(4px);
}

/* ---------- CONTACT US SECTION ----------- */
#contact {
    width: 100%;
    padding: clamp(60px, 9vw, 100px) clamp(5%, 8vw, 100px);
    background: #fdfaf4;
    position: relative;
    overflow: hidden;
}

/* Top gold separator */
#contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Soft gold blob — top right */
#contact::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- HEADER ----- */
.contact-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 64px);
}

.contact-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-header h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 16px;
}

.contact-header h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-header>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ----- BODY LAYOUT ----- */
.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

/* ----- CTA CARD (LEFT) ----- */
.contact-cta-card {
    background: linear-gradient(150deg, #141414 0%, #1e1a10 60%, #141414 100%);
    border-radius: 24px;
    padding: clamp(32px, 4.5vw, 52px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

/* Decorative rings inside cta card */
.cta-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

.cta-ring-1 {
    width: 280px;
    height: 280px;
    bottom: -100px;
    right: -80px;
}

.cta-ring-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: -30px;
    border-color: rgba(212, 175, 55, 0.15);
}

.cta-card-inner {
    position: relative;
    z-index: 2;
}

.cta-card-label {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-cta-card h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 16px;
}

.contact-cta-card h2 span {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-cta-card>.cta-card-inner>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.88rem, 1.3vw, 0.97rem);
    color: #9a8a72;
    line-height: 1.75;
    margin-bottom: 30px;
}

.cta-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 18px;
}

.cta-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.5);
}

.cta-book-btn i {
    transition: transform 0.3s ease;
}

.cta-book-btn:hover i {
    transform: translateX(5px);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    color: #5a4a30;
}

.cta-note i {
    color: #d4af37;
    font-size: 12px;
}

/* ----- INFO COLUMN (RIGHT) ----- */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vw, 18px);
}

/* ----- INFO CARDS ----- */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.5vw, 26px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: border-color 0.35s ease, transform 0.35s ease,
        box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Sweep line on hover */
.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.4s ease;
}

.contact-info-card:hover::before {
    width: 100%;
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15),
            rgba(184, 134, 11, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, #d4af37, #b8860b);
}

.contact-info-icon i {
    font-size: 18px;
    color: #d4af37;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-icon i {
    color: #fff;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-text span {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-info-text a {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.88rem, 1.25vw, 0.97rem);
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #b8860b;
}

.contact-info-text address {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.93rem);
    color: #4a4a4a;
    font-style: normal;
    line-height: 1.65;
}

.contact-info-text p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.93rem);
    color: #4a4a4a;
    margin: 0;
    line-height: 1.5;
}

/* ---------- BLOG SECTION ----------- */
#blog {
    width: 100%;
    padding: clamp(60px, 9vw, 100px) clamp(5%, 8vw, 100px);
    background: linear-gradient(160deg, #111111 0%, #1c1508 55%, #111111 100%);
    position: relative;
    overflow: hidden;
}

/* Top separator */
#blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Bottom-left blob */
#blog::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- HEADER ----- */
.blog-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 60px);
}

.blog-tag {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-header h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
}

.blog-header h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-header>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: #9a8a72;
    line-height: 1.75;
    margin: 0;
}

/* ----- MAIN BLOG GRID ----- */
.blog-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(18px, 2.5vw, 28px);
    margin-bottom: clamp(18px, 2.5vw, 28px);
}

/* ----- BLOG CARD BASE ----- */
.blog-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease,
        border-color 0.35s ease;
    position: relative;
    opacity: 0;
    transform: translateY(28px);
}

/* Gold sweep line */
.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.42s ease;
    z-index: 3;
}

.blog-card:hover::before {
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(212, 175, 55, 0.4);
}

/* ----- THUMBNAIL ----- */
.blog-card-thumb-link {
    display: block;
    overflow: hidden;
}

.blog-card-thumb {
    position: relative;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.blog-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

/* Category badge */
.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: "Nunito", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* ----- CARD BODY ----- */
.blog-card-body {
    padding: clamp(18px, 2.5vw, 26px);
}

/* Meta row */
.blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    color: #6a5a40;
    font-weight: 600;
}

.blog-meta i {
    color: #d4af37;
    font-size: 11px;
}

/* ----- FEATURED CARD ----- */
.blog-card--featured {
    display: flex;
    flex-direction: column;
}

.blog-card--featured .blog-card-thumb {
    aspect-ratio: 16 / 10;
    height: auto;
}

.blog-card--featured h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin: 0 0 12px;
}

.blog-card--featured h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-card--featured h2 a:hover {
    color: #d4af37;
}

.blog-card--featured .blog-card-body>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.86rem, 1.2vw, 0.94rem);
    color: #9a8a72;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Featured read button */
.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.blog-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.45);
}

.blog-read-btn i {
    transition: transform 0.3s ease;
}

.blog-read-btn:hover i {
    transform: translateX(4px);
}

/* ----- SIDE GRID ----- */
.blog-side-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(50px, 2vw, 20px);
}

/* ----- SMALL CARD ----- */
.blog-card--small {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.blog-card--small .blog-card-thumb-link {
    flex-shrink: 0;
    width: 130px;
}

.blog-card--small .blog-card-thumb {
    width: 130px;
    height: 100%;
    min-height: 110px;
}

.blog-card--small .blog-card-thumb img {
    height: 100%;
}

.blog-card--small .blog-card-body {
    padding: clamp(12px, 1.8vw, 18px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card--small h3 {
    font-family: "Cinzel", serif;
    font-size: clamp(0.8rem, 1.15vw, 0.9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin: 0 0 10px;
}

.blog-card--small h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-card--small h3 a:hover {
    color: #d4af37;
}

/* Inline read more link */
.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-read-link:hover {
    gap: 9px;
    color: #f0cc55;
}

/* ----- BOTTOM ROW (Horizontal Cards) ----- */
.blog-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2.5vw, 28px);
    margin-bottom: clamp(36px, 5vw, 50px);
}

/* ----- HORIZONTAL CARD ----- */
.blog-card--horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.blog-card--horizontal .blog-card-thumb-link {
    flex-shrink: 0;
    width: 180px;
}

.blog-card--horizontal .blog-card-thumb {
    width: 180px;
    height: 100%;
    min-height: 160px;
}

.blog-card--horizontal .blog-card-thumb img {
    height: 100%;
}

.blog-card--horizontal .blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.blog-card--horizontal h3 {
    font-family: "Cinzel", serif;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin: 0;
}

.blog-card--horizontal h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-card--horizontal h3 a:hover {
    color: #d4af37;
}

.blog-card--horizontal .blog-card-body>p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.82rem, 1.15vw, 0.88rem);
    color: #7a6a55;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

/* ----- VIEW ALL CTA ----- */
.blog-cta {
    text-align: center;
}

.blog-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    border-radius: 50px;
    transition: background 0.35s ease, border-color 0.35s ease,
        color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    letter-spacing: 0.3px;
}

.blog-view-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.blog-view-btn i {
    font-size: 15px;
}

/* ----- SCROLL REVEAL ----- */
.blog-card {
    opacity: 0;
    transform: translateY(28px);
}

.blog-card.blog-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease,
        box-shadow 0.35s ease, border-color 0.35s ease;
}

/* ---------- FOOTER SECTION ----------- */
#footer {
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-section {
    width: 100%;
    background-color: rgb(32, 30, 30);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.footer-item {
    margin: 1rem;
}

.footer-item h2 {
    margin-bottom: 2rem;
    position: relative;
}

.footer-item h2::after {
    content: '';
    width: 4rem;
    height: 0.2rem;
    background: gold;
    position: absolute;
    top: 2.5rem;
    left: 0;
}

.footer-item p {
    transition: all 0.2s linear;
    margin-bottom: 0.6rem;
}

.footer-item p:hover {
    transform: translateX(10px);
}

.footer-item a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.footer-item a:hover {
    color: gold;
}

.footer-item ul {
    display: flex;
    justify-content: space-around;
}

.footer-item ul li {
    list-style: none;
}

.Social ul li {
    font-size: 1.5rem;
    transition: all .2s linear;
}

.Social ul li:hover {
    transform: scale(1.3);
    transition: all .2s linear;
}

.footer-bottom {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    background: #000;
    color: whitesmoke;
    padding: 10px;
}

.footer-bottom p span {
    color: gold;
    font-weight: 500;
}