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

html {
    scroll-behavior: smooth;
}

:root {
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.95);
    --text-body: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-subtle: rgba(255, 255, 255, 0.6);
    --accent-gold: #c9a962;
    --accent-gold-dark: #a88b4a;
    --border-light: rgba(255, 255, 255, 0.15);
    --border-medium: rgba(255, 255, 255, 0.25);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 20%, #1a1a2e 40%, #16213e 60%, #1a1a2e 80%, #0a0a0f 100%);
    background-size: 100% 200%;
    animation: gradientShift 20s ease infinite;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #c9a962, #f0d890);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0f3460, #16213e);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #c9a962, #d4af37);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

nav {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(201, 169, 98, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 60px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: #c9a962;
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.5);
    position: relative;
}

.logo::after {
    content: '®';
    font-size: 0.5rem;
    position: absolute;
    top: 0;
    right: -15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    transition: all 0.4s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #c9a962, #f0d890);
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #c9a962;
    text-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: #c9a962;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bj/01.jpeg') center/cover no-repeat;
    opacity: 0.95;
    /* filter: blur(4px);
    transform: scale(1.05); */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(10, 10, 15, 0.6) 30%, rgba(15, 52, 96, 0.5) 70%, rgba(10, 10, 15, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px 20px;
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1200px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.3;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-body);
    margin-bottom: 50px;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    background: linear-gradient(135deg, #00d26a 0%, #00a859 100%);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 106, 0.5);
}

.btn-whatsapp-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-outline-white {
    display: inline-block;
    padding: 18px 18px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #c9a962 0%, #d4af37 50%, #f0d890 100%);
    color: #0a0a0f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 5px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(201, 169, 98, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: none;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.scroll-indicator span {
    display: block;
    width: 35px;
    height: 60px;
    border: 2px solid rgba(201, 169, 98, 0.6);
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #c9a962;
    border-radius: 50%;
    animation: scroll 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(201, 169, 98, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 35px;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a962;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    text-transform: capitalize;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 5px;
}

.section-subtitle {
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 300;
}

.quality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 100px;
    padding: 0 20px;
}

.quality-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    padding: 20px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 5px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a962, #f0d890, #c9a962);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.quality-card:hover::after {
    transform: scale(1);
}

.quality-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.quality-card .icon {
    font-size: 3.5rem;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.5));
}

.quality-card:nth-child(1) .icon { animation: float 4s ease-in-out infinite; }
.quality-card:nth-child(2) .icon { animation: float 4s ease-in-out infinite 0.5s; }
.quality-card:nth-child(3) .icon { animation: float 4s ease-in-out infinite 1s; }

.quality-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #c9a962;
    font-weight: 500;
    letter-spacing: 2px;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c9a962, #f0d890);
    margin: 20px auto;
    border-radius: 5px;
}

.brands-scroll-container {
    overflow: hidden;
    width: 100%;
    margin: 30px 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brands-scroll-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
}

.brands-scroll-track-1 {
    animation: scrollLeft 30s linear infinite;
}

.brands-scroll-track-2 {
    animation: scrollRight 30s linear infinite;
}

.brands-scroll-track:hover {
    animation-play-state: paused;
}

.brand-btn {
    flex-shrink: 0;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-right: none;
}

.brand-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.brand-btn:last-child {
    border-radius: 0 5px 5px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-btn:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: rgba(201, 169, 98, 0.4);
    color: #c9a962;
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.series-list {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.series-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 98, 0.3);
    gap: 8px;
}

.series-item:hover {
    background: rgba(201, 169, 98, 0.12);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
}

.series-item.active {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
    border-color: rgba(201, 169, 98, 0.6);
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.2);
}

.series-item.active .series-name {
    color: #c9a962;
}

.series-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.series-arrow {
    font-size: 1rem;
    color: rgba(201, 169, 98, 0.7);
    transition: all 0.4s ease;
}

.series-item:hover .series-arrow {
    color: #c9a962;
    transform: translateX(3px);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 0px;
}

.product-cards {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeInUp 0.5s ease;
}

.product-cards.active {
    display: grid;
}

.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-img {
    /* height: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #c9a962, #f0d890);
    color: #0a0a0f;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    text-transform: uppercase;
}

.product-info {
    padding: 18px;
}

.product-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-info p {
    color: var(--text-body);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.product-price {
    font-size: 1.4rem;
    color: #c9a962;
    font-weight: 600;
    letter-spacing: 1px;
}

.no-found-section {
    text-align: center;
    padding: 50px 20px;
}

.no-found-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #c9a962;
    margin-bottom: 15px;
    font-weight: 500;
}

.no-found-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid rgba(201, 169, 98, 0.5);
    color: #c9a962;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.4s ease;
    border-radius: 5px;
}

.btn-outline:hover {
    background: #c9a962;
    color: #0a0a0f;
    border-color: #c9a962;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.services-section {
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, rgba(15, 52, 96, 0.1) 50%, rgba(201, 169, 98, 0.05) 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 5px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
    transition: all 0.6s ease;
}

.service-card:hover::before {
    top: -50%;
    left: -50%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.4));
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

.service-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
}

.combined-section {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(15, 52, 96, 0.15) 50%, #0a0a0f 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.combined-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/a_01.png') center/cover;
    opacity: 0.03;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
}

.combined-section .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.combined-section .no-found-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 5px;
    margin-bottom: 40px;
    color: #c9a962;
    font-size: 0.95rem;
}

.combined-section .no-found-hint .hint-icon {
    font-size: 1.2rem;
}

.combined-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.combined-section .cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 300;
}

.combined-section .cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 2;
}

.combined-section .contact-info {
    margin-top: 40px;
}

.combined-section .contact-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.testimonials-section .feedback-carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
    position: relative;
}

.testimonials-section .feedback-track {
    display: flex;
    gap: 30px;
    animation: scrollFeedback 30s linear infinite;
}

.testimonials-section .feedback-track:hover {
    animation-play-state: paused;
}

@keyframes scrollFeedback {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.feedback-item {
    flex-shrink: 0;
    width: 350px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feedback-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feedback-img {
    width: 100%;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.feedback-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
}

.feedback-comment {
    padding: 20px 25px 10px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.feedback-author {
    padding: 0 25px 25px;
    color: #c9a962;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.feedback-img {
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: #c9a962;
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #c9a962;
    background: rgba(201, 169, 98, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: #c9a962;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-body);
    font-weight: 400;
}

.testimonials-section {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(15, 52, 96, 0.2) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 50px;
    padding: 0 10px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    padding: 55px 45px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 6px solid #c9a962;
    transition: all 0.5s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 6rem;
    color: rgb(201, 168, 98);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateX(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-left-color: #f0d890;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 2;
}

.testimonial-card .author {
    color: #c9a962;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.stars {
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 5px;
}

.cta-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 30%, #0f3460 60%, #16213e 100%);
    text-align: center;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 300;
}

.cta-section p {
    color: var(--text-body);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    line-height: 2;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #00d26a 0%, #00a859 100%);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 106, 0.5);
}

.contact-info {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-body);
    font-size: 1rem;
}

footer {
    background: rgba(5, 5, 10, 0.95);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: #c9a962;
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    list-style: none;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #c9a962;
    text-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50%;
    color: #c9a962;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #c9a962, #f0d890);
    color: #0a0a0f;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 1px;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: breathing 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.float-btn-whatsapp {
    background: linear-gradient(135deg, #00d26a, #00a859);
    border-color: rgba(0, 210, 106, 0.5);
}

.float-btn-whatsapp::before {
    background: radial-gradient(circle, rgba(0, 210, 106, 0.6) 0%, transparent 70%);
}

.float-btn-top {
    background: linear-gradient(135deg, #a88b4a, #8b7035);
    border-color: rgba(201, 169, 98, 0.5);
}

.float-btn-top::before {
    background: radial-gradient(circle, rgba(168, 139, 74, 0.6) 0%, transparent 70%);
}

.btn-icon {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.btn-icon-img {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

@keyframes breathing {
    0%, 100% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
    50% {
        width: 140%;
        height: 140%;
        opacity: 0.2;
    }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 3rem;
    }

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

@media (max-width: 992px) {
    .nav-container {
        padding: 10px 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .quality-cards,
    .collections-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 35px;
    }

    .stat-number {
        font-size: 4rem;
    }

    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 12px;
    }

    .quality-cards,
    .collections-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .product-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-img {
        height: 150px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h4 {
        font-size: 0.95rem;
    }

    .product-info p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .product-tag {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stats-grid,
    .combined-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-links {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn,
    .btn-gold {
        padding: 16px 40px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}