/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #a88a22;
    --navy: #07111f;
    --navy-mid: #0d1a2d;
    --navy-light: #12243a;
    --white: #ffffff;
    --text-muted: #b0bec5;
    --border-gold: rgba(212, 175, 55, .2);
    --glass-bg: rgba(13, 26, 45, .75);
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-gold: 0 0 30px rgba(212, 175, 55, .15);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Decorative orbs */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, .07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, .05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   HEADER / NAVBAR
=========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 17, 31, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-gold);
    transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
    background: rgba(7, 17, 31, .98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-mid);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(212, 175, 55, .3);
}

.logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .brand {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo-text .tagline {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, .1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #000 !important;
    font-weight: 600 !important;
    padding: 9px 22px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, .3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .4) !important;
    background: rgba(0, 0, 0, 0) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 31, .97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    opacity: 1;
}

.mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 2px;
}

.mobile-menu a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, .08);
}

.mobile-menu .mobile-cta {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    font-weight: 700;
}

/* ===========================
   HERO
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(7, 17, 31, 1) 40%, rgba(13, 26, 45, .9) 100%),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Animated gold accent line */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

/* Hero Logo Side */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-ring {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, .08), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0%, transparent 40%, var(--gold) 60%, transparent 100%);
    animation: rotate 8s linear infinite;
    opacity: .4;
}

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

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

.hero-logo-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--navy);
}

.hero-logo-inner {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, .3);
    box-shadow: 0 0 60px rgba(212, 175, 55, .2), inset 0 0 40px rgba(7, 17, 31, .5);
}

.hero-logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Text Side */
.hero-text {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, .1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 10px;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 43px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(212, 175, 55, .35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, .5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border: 1.5px solid var(--border-gold);
    color: var(--gold);
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, .08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-gold);
}

.stat-item .stat-num {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-item .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

.scroll-hint i {
    color: var(--gold);
}

@keyframes bounce {

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

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

/* ===========================
   SECTION GENERIC
=========================== */
section {
    padding: 50px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, .1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 4px 16px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 14px;
}

.section-title .gold {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.section-header {
    text-align: center;
}

/* ===========================
   ABOUT SECTION
=========================== */
#about {
    background: var(--navy-mid);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, .5);
    box-shadow: var(--shadow-gold);
    transform: translateX(6px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, .2), rgba(212, 175, 55, .05));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

.feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-text-side .section-header {
    text-align: left;
}

.about-text-side .section-subtitle {
    text-align: left;
    margin: 0 0 30px;
}

.about-text-side p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 14.5px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin: 20px 0;
}

/* ===========================
   PRODUCTS SECTION
=========================== */
#products {
    /* background: var(--navy-mid); */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
    gap: 30px 18px;
    margin-top: 40px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3), var(--shadow-gold);
    transform: translateY(-6px);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: none;
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}

.product-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: none;
}

.product-footer {
    margin-top: auto;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1.5px solid var(--border-gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.product-btn i {
    display: none;
}


/* ===========================
   CONTACT SECTION
=========================== */
#contact {
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    border-radius: 2px 0 0 2px;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, .45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3), var(--shadow-gold);
    transform: translateY(-4px);
}

.contact-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, .18), rgba(212, 175, 55, .04));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
}

.contact-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.contact-info p,
.contact-info a {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    line-height: 1.7;
    transition: color var(--transition);
}

.contact-info a:hover {
    color: var(--gold);
}

/* WhatsApp CTA Banner */
.wa-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, #128c7e, #075e54);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.wa-banner .wa-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.wa-banner .wa-text p {
    font-size: 14px;
    opacity: .85;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
}

.wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
}

/* ===========================
   PRIVACY SECTION
=========================== */
#privacy {
    background: var(--navy-mid);
}

.privacy-container {
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.privacy-container>.section-header {
    padding: 50px 50px 0;
}

.privacy-content {
    padding: 0px 50px 50px;

}

.privacy-intro {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
}

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

.privacy-block {
    padding: 28px;
    background: rgba(7, 17, 31, .5);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.privacy-block:hover {
    border-color: rgba(212, 175, 55, .4);
    background: rgba(7, 17, 31, .7);
}

.privacy-block .p-num {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.privacy-block h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.privacy-block p,
.privacy-block ul {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
}

.privacy-block ul {
    padding-left: 18px;
}

.privacy-block ul li {
    margin-bottom: 4px;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #030b15;
    padding: 50px 0 24px;
    border-top: 1px solid var(--border-gold);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 380px;
}


.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    text-decoration: none;
    font-size: 13.5px;
    color: var(--text-muted);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-col ul a i {
    font-size: 12px;
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom .gold-text {
    color: var(--gold);
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
.float-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, .6);
}

/* Pulse ring */
.float-wa::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===========================
   SCROLL-REVEAL ANIMATION
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {

    .reveal.visible {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-content,
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-ring {
        width: 220px;
        height: 220px;
    }

    .hero-logo-inner {
        width: 200px;
        height: 200px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-text-side .section-header {
        text-align: center;
    }

    .about-text-side .section-subtitle,
    .about-text-side .about-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));


    }
}

@media (max-width:767.98px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));


    }
}

@media (max-width: 640px) {
    footer {
        text-align: center;
    }

    .logo-text {
        text-align: left;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .privacy-content {
        padding: 00px 0px 36px;
    }

    .privacy-container>.section-header {
        padding: 36px 0px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .wa-banner {
        text-align: center;
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-col ul a {
        justify-content: center;
    }

    .footer-brand p {
        max-width: none;
    }
}

/* ===========================
   IMAGE CAROUSEL SECTION
=========================== */
.gallery-section {
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
    background: var(--navy-mid);
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, .06) 0%, transparent 70%);
    pointer-events: none;
}

/* Wrapper that holds track + buttons + dots */
.carousel-wrapper {
    position: relative;
    width: calc(100% - 60px);
    margin: 50px auto 0;
    border-radius: var(--radius-lg);
    overflow: visible;
}

/* Clip window */
.carousel-track-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    height: 280px;
    /* padding: 0 4px; */
    /* border-radius: var(--radius-lg);
    box-shadow: 0 8px 50px rgba(0, 0, 0, .45), 0 0 0 1px var(--border-gold); */
}

/* Sliding strip */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Each slide – 5 visible on desktop */
.carousel-slide {
    flex: 0 0 20%;
    width: 20%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 6px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Responsive: 3 visible on tablet */
@media (max-width: 900px) {
    .carousel-wrapper {
        width: 100%;
    }

    .carousel-track-container {
        height: 240px;
    }

    .carousel-slide {
        flex: 0 0 33.333% !important;
        width: 33.333% !important;
        overflow: hidden;
    }
}

/* Responsive: 2 visible on small tablet */
@media (max-width: 600px) {
    .carousel-track-container {
        height: 200px;
    }

    .carousel-slide {
        flex: 0 0 50% !important;
        width: 50% !important;
    }
}

/* Responsive: 1 visible on mobile */
@media (max-width: 400px) {
    .carousel-track-container {
        height: 220px;
    }

    .carousel-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .4s ease, filter .4s ease, box-shadow .4s ease;
    filter: brightness(.8);

}

.carousel-slide img:hover {
    /* transform: scale(1.04); */
    filter: brightness(1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, .3);
}

.carousel-slide.active img {
    filter: brightness(1);
    box-shadow: 0 0 0 2px var(--gold), 0 8px 32px rgba(212, 175, 55, .25);
}

/* Caption overlay */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 14px 12px;
    background: linear-gradient(to top, rgba(7, 17, 31, .9) 0%, transparent 100%);
    border-radius: 0 0 12px 12px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
    pointer-events: none;
    width: 100%;
    display: none;
}

.carousel-slide:hover .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.carousel-caption h3 {
    font-family: 'Cinzel', serif;
    font-size: .78rem;
    color: var(--white);
    margin: 4px 0 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Prev / Next arrow buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(7, 17, 31, .82);
    border: 1.5px solid var(--border-gold);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 22px rgba(212, 175, 55, .45);
}

.carousel-prev {
    left: -22px;
}

.carousel-next {
    right: -22px;
}

@media (max-width: 900px) {
    .carousel-prev {
        left: 6px;
    }

    .carousel-next {
        right: 6px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 18px 0 8px;
    background: var(--navy-mid);
    display: none;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, .3);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), width var(--transition);
    padding: 0;
    flex-shrink: 0;
}

.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(212, 175, 55, .5);
}

.carousel-dot:hover:not(.active) {
    background: rgba(212, 175, 55, .6);
    transform: scale(1.2);
}