/* ========================= GLOBAL RESET & THEME ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    background: #0a0a0c;
    color: #f5f5f5;
    overflow-x: hidden;
}

a, button, .product-card, .btn, .feature-card {
    transition: all 0.35s ease;
}

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

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

.section {
    padding: 120px 8vw;
}

.tag, .section-tag {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

/* ========================= NAVBAR ========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 72px;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.brand-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 6px;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-cta {
    padding: 10px 18px;
    border: 1px solid #d4af37;
    border-radius: 6px;
    color: #d4af37 !important;
}

.nav-cta:hover {
    background: #d4af37;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

/* ========================= HERO ========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #d4af37;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.subtext {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn.primary {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d4af37 0%, #aa8429 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.25);
}

/* ========================= INVESTMENT OPPORTUNITY ========================= */
.investment-section {
    background: #0f0f12;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.investment-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.feature-card {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 16px;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    background: rgba(58, 35, 24, 0.3);
    border-color: rgba(212,175,55,0.4);
    border-bottom: 3px solid #d4af37;
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #aaa;
    line-height: 1.6;
}

/* ========================= BRAND STORY ========================= */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    height: 500px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.story-content p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* ========================= PRODUCTS ========================= */
.products-section {
    background: #0a0a0c;
}

.products-section h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

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

.product-card {
    position: relative;
    min-height: 450px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.product-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-content h3 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 12px;
}

.product-content p {
    color: #dfdfdf;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

.product-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 6px;
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: fit-content;
}

.product-btn:hover {
    background: #d4af37;
    color: #000;
}

/* ========================= ZOOM MODAL ========================= */
.zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.zoom-modal.active {
    visibility: visible;
    opacity: 1;
}

.zoom-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(15px);
    cursor: pointer;
}

.zoom-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #050507;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    overflow: hidden;
}

.zoom-modal.active .zoom-modal-content {
    transform: scale(1);
    opacity: 1;
}

#zoomModalBody {
    position: relative;
    padding: 80px 60px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#zoomModalBody h3 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 20px;
}

#zoomModalBody p {
    font-size: 18px;
    color: #dfdfdf;
    line-height: 1.8;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    color: #d4af37;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: #d4af37;
    color: #000;
    transform: rotate(90deg);
}

/* ========================= ANIMATIONS ========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================= IMAGE GALLERY SLIDER ========================= */
.gallery-slider-section {
    background: #0a0a0c;
    border-bottom: 1px solid rgba(212,175,55,0.05);
}

.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.slider-track {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.slide img:hover {
    filter: brightness(1);
}

.slider-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    color: #d4af37;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

/* ========================= FOOTER ========================= */
.footer {
    background: #050507;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 40px 60px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-column > a, 
.footer-column > p {
    display: block;
    margin-bottom: 14px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    line-height: 1.8;
}

.footer-column > a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

/* ========================= CONTACT OFFICE WRAPPERS ========================= */
.contact-info-block {
    margin-bottom: 20px;
}

.contact-info-block p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-block .contact-text-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.contact-info-block .contact-text-item a {
    display: inline !important;
    font-size: 14px !important;
    color: #a0a0a0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.contact-info-block .contact-text-item a:hover {
    transform: none !important;
    color: #d4af37 !important;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #cfcfcf;
    border: 1px solid rgba(212,175,55,0.1);
    margin-bottom: 0;
}

.social-icons a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-4px);
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 13px;
}

/* ========================= UNIFIED MASTER RESPONSIVE GRID ========================= */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-image { height: 400px; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; padding: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    
    .hero h1 { font-size: 42px; }
    
    .slide img { height: 280px; }
    .gallery-container { padding: 0 15px; gap: 10px; }
    .slider-btn { width: 35px; height: 35px; font-size: 14px; }
    
    .zoom-modal-content { 
        padding: 60px 25px 30px; 
        max-height: 85vh; 
        overflow-y: auto; 
        width: 95%; 
    }
    .close-modal {
        top: 15px;
        right: 15px;
        background: rgba(212,175,55,0.15);
    }
    #zoomModalBody h3 { font-size: 28px; }
    #zoomModalBody p { font-size: 15px; }
    
    .footer-wrapper {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 0 24px 40px !important;
    }
    
    .footer-column {
        text-align: left !important;
    }
    
    .social-icons,
    .contact-info-block .contact-text-item {
        justify-content: flex-start !important;
    }
}
