@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #D4AF37;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('/users/img/bg.png');
    /* background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=2070&auto=format&fit=crop'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(212, 175, 55, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 750px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #D4AF37;
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 30px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

.features-section {
    padding: 100px 20px;
    background-color: #fbfbfb;
}

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

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #FFF9E6;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon-box i {
    color: #D4AF37;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 100px 20px;
    background-color: white;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-backdrop {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80%;
    height: 80%;
    background-color: #F5F0E1;
    border-radius: 20px;
    z-index: 1;
}

.about-content {
    flex: 1;
}

.badge-gold {
    background-color: #FFF9E6;
    color: #D4AF37;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.check-icon i {
    color: white;
    font-size: 14px;
}

.fit-content {
    display: inline-block !important;
    width: auto !important;
}

.products-section {
    padding: 100px 20px;
    background-color: #fbfbfb;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.products-btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn-gold-block {
    background-color: #D4AF37;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-gold-block:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
}

.projects-section {
    padding: 100px 20px;
    background-color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.project-item {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0) 100%);
    opacity: 0;
    transition: all 0.4s ease-out;
    z-index: 2;
}

.project-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    z-index: 3;
}

.project-badge {
    background-color: #D4AF37;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    width: fit-content;
}

.project-content-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.detail-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-glow {
    height: 60%;
    opacity: 1;
}

.project-item:hover .detail-link {
    opacity: 1;
    transform: translateY(0);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.gallery-section {
    padding: 100px 20px;
    background-color: #fbfbfb;
}

.gallery-main-display {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-main-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 5;
}

.gallery-nav:hover {
    background: #D4AF37;
    color: white;
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}

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

.gallery-thumb.active {
    opacity: 1;
    border-color: #D4AF37;
    transform: scale(1.1);
}

.gallery-thumb:hover {
    opacity: 1;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: white;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-card {
    background-color: #F9F5E3;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 40px;
    color: #D4AF37;
    opacity: 0.3;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    transition: opacity 0.2s;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.client-details h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.client-details span {
    font-size: 0.9rem;
    color: #666;
}

.client-rating {
    color: #D4AF37;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #D4AF37;
    width: 30px;
    border-radius: 10px;
}

.link-gold {
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.link-gold:hover {
    color: #b5952f;
}

.cta-section {
    background-color: #121212;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.glow-left { top: -100px; left: -100px; }
.glow-right { bottom: -100px; right: -100px; }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 280px;
}

.contact-icon i {
    color: #D4AF37;
    font-size: 24px;
}

.contact-info-text {
    text-align: left;
}

.contact-info-text span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.contact-info-text strong {
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

.cta-footer-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    border: 2px solid #D4AF37;
    background-color: transparent;
    color: #D4AF37;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: #D4AF37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-gold-outline i {
    font-size: 1.4rem;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .features-grid,
    .products-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-wrapper {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .features-section,
    .products-section,
    .about-section,
    .projects-section,
    .gallery-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 20px;
    }
    .section-title { font-size: 2rem; }
    .features-grid,
    .products-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .feature-card { padding: 30px; }
    .about-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .about-image,
    .about-content {
        width: 100%;
        order: 1;
    }
    .about-content { order: 2; }
    .btn-gold-block { width: 100% !important; text-align: center; }
    .img-backdrop { bottom: -15px; right: -15px; width: 90%; }
    .gallery-main-display { height: 300px; }
    .testimonial-card { padding: 40px 25px; }
    .testimonial-text { font-size: 1.2rem; }
    .testimonial-footer { flex-direction: column; gap: 20px; align-items: flex-start; }
    .client-rating { align-self: flex-start; }
    .cta-title { font-size: 2rem; }
    .cta-contact-wrapper { flex-direction: column; gap: 20px; }
    .contact-box { width: 100%; justify-content: center; }
}