/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8860B;
    --silver: #C0C0C0;
    --dark-silver: #A9A9A9;
    --dark-bg: #0F0F0F;
    --light-bg: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --accent: #E8E8E8;
    --delay: 0.1s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
    overflow-x: hidden;
    animation: fadeInBody 0.8s ease-out;
}

@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-150%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #FFE5B4 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links li {
    animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: both;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    font-size: 15px;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, #D4AF37 0%, #E8E8E8 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(40, 40, 40, 0.85) 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 25s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 30s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-40px) translateX(40px) scale(1.05);
    }
    66% {
        transform: translateY(40px) translateX(-40px) scale(0.95);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    animation: slideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #E8E8E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 26px;
    color: #D4AF37;
    margin-bottom: 18px;
    font-weight: 700;
    animation: slideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 17px;
    color: #DDDDDD;
    margin-bottom: 45px;
    animation: slideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    line-height: 1.8;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #E8D5B7 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
    animation: slideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
}

.hero-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-image {
    position: relative;
    height: 500px;
    animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(192, 192, 192, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: float 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(192, 192, 192, 0.25) 100%);
    box-shadow: 0 35px 80px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 0;
    animation: float 8s ease-in-out infinite reverse;
    animation-delay: 0.3s;
    width: 220px;
    height: 220px;
}

.card-3 {
    bottom: 0;
    left: 80px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 0.6s;
    width: 180px;
    height: 180px;
}

/* ===== Section Titles ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1A1A1A 0%, #D4AF37 50%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleAppear 1s ease-out;
    letter-spacing: 2px;
}

@keyframes titleAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 70px;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 1;
    cursor: pointer;
    animation: fadeInScale 0.8s ease-out;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(3deg);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(192, 192, 192, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== Products Section ===== */
.products {
    padding: 150px 0;
    background: var(--white);
    position: relative;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .products-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .products-container {
        padding: 0 20px;
    }
}

.products::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite;
}

.collection {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    width: 100%;
}

.collection:nth-of-type(2) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-title {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-dark);
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gold-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #E8D5B7 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.silver-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
    animation: productAppear 0.8s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes productAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37 50%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-card:hover::before {
    opacity: 1;
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #E8D5B7 100%);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    animation: badgeBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

@keyframes badgeBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.product-badge.classic {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.3);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #F0F0F0 100%);
    overflow: hidden;
    position: relative;
    animation: imageLoad 0.6s ease-out;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

@keyframes imageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
}

.product-image-placeholder.gold {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5B7 100%);
    color: #B8860B;
}

.product-image-placeholder.silver {
    background: linear-gradient(135deg, #F0F0F0 0%, #E8E8E8 100%);
    color: #A9A9A9;
}

.product-card:hover .product-image-placeholder {
    transform: scale(1.08);
}

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.product-style {
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.price {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #E8E8E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-btn {
    flex: 1;
    padding: 14px 22px;
    background: linear-gradient(135deg, #D4AF37 0%, #E8D5B7 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.add-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    left: -100%;
    transition: left 0.5s ease;
}

.add-btn:hover::before {
    left: 100%;
}

.add-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.add-btn:active {
    transform: scale(0.97);
}

.add-btn svg {
    width: 18px;
    height: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Features Section ===== */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 30s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: featureAppear 0.8s ease-out;
}

.feature:nth-child(1) { animation-delay: 0s; }
.feature:nth-child(2) { animation-delay: 0.15s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.45s; }

@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(192, 192, 192, 0.15) 100%);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
    color: var(--white);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(192, 192, 192, 0.25) 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.feature h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.feature p {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 30s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    justify-items: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    animation: fadeInUp 1s ease-out;
    text-align: center;
    width: 100%;
}

.contact-info h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-dark);
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #E8D5B7 100%);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.social-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    left: -100%;
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* ===== Footer ===== */
.footer {
    padding: 50px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #CCCCCC;
    font-size: 14px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-text {
    animation: fadeIn 0.8s ease-out 0.1s both;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.payment-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.15) rotate(5deg);
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
}

.close:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.15) rotate(90deg);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.form-group {
    margin-bottom: 25px;
    animation: fadeIn 0.6s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.3s; }
.form-group:nth-child(2) { animation-delay: 0.4s; }
.form-group:nth-child(3) { animation-delay: 0.5s; }

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #D4AF37 0%, #E8D5B7 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.submit-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    left: -100%;
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        width: 150px;
        height: 150px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .products,
    .gallery,
    .features,
    .contact {
        padding: 60px 0;
    }

    .nav-links {
        gap: 15px;
    }
}

/* ===== Animations Utiles ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* ===== Smooth Scroll ===== */
.scroll-reveal {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}
