* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a120b;
    color: #f5e6d3;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #e4c580;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* STICKY HEADER */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1a120b;
    border-bottom: 2px solid #b8860b;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h2 {
    font-size: 2rem;
    margin: 0;
    color: #e4c580;
}

.logo span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #c7a15e;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #f0dbc0;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e4c580;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    z-index: 99;
    border: 2px solid #e4c580;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* BUTTONS */
.btn-gold {
    background: transparent;
    border: 2px solid #e4c580;
    color: #e4c580;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #e4c580;
    color: #1a120b;
}

/* HERO SECTION */
.hero {
    background-size: cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url(../image/banner.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

.hero-tagline {
    font-size: 1.5rem;
    color: #f3d9b1;
    margin-bottom: 30px;
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: #2c1c10;
    padding: 30px;
    text-align: center;
    border: 1px solid #b8860b;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #e4c580;
    margin-bottom: 20px;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    background: #2c1c10;
    padding: 30px;
    text-align: center;
    border: 1px solid #b8860b;
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: #e4c580;
}

/* PRODUCT GALLERY */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid #b8860b;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #1a120b);
    color: #e4c580;
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.product-item:hover .product-caption {
    transform: translateY(0);
}

/* WHY CHOOSE US */
.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 25px;
    margin: 40px 0;
}

.why-item {
    background: #2c1c10;
    padding: 25px;
    border-left: 5px solid #b8860b;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
}

.why-item i {
    color: #e4c580;
    font-size: 1.8rem;
}

/* EXPORT SECTION */
.export-section {
    background: #2c1c10;
    padding: 50px 0;
    margin: 50px 0;
    text-align: center;
    border-top: 2px solid #b8860b;
    border-bottom: 2px solid #b8860b;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.export-card {
    background: #1a120b;
    padding: 30px;
    border: 1px solid #b8860b;
}

.export-card i {
    font-size: 3rem;
    color: #e4c580;
    margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials {
    background: #2c1c10;
    padding: 50px 0;
    margin: 50px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #1a120b;
    padding: 30px;
    border: 1px solid #b8860b;
    font-style: italic;
}

.testimonial-card strong {
    color: #e4c580;
    display: block;
    margin-top: 20px;
    font-style: normal;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #2c1c10;
    padding: 40px;
    border: 1px solid #b8860b;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info p {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: #e4c580;
    width: 25px;
    font-size: 1.3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #1a120b;
    border: 1px solid #b8860b;
    color: #f5e6d3;
    font-family: 'Montserrat', sans-serif;
}

.map-container {
    width: 100%;
    height: 250px;
    margin-top: 20px;
    border: 2px solid #b8860b;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FOOTER */
.luxury-footer {
    background: #0f0905;
    padding: 20px 0 20px;
    margin-top: 50px;
    border-top: 2px solid #b8860b;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    color: #e4c580;
    font-size: 1.8rem;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #b8860b;
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin: 40px 0 30px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* SIMPLE ANIMATIONS */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}