:root {
    --bg-dark: #111111;
    --bg-card: #161616;
    --accent-gold: #e3b866; /* The specific gold from the reference */
    --accent-gold-hover: #cda252;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --border-gold: rgba(227, 184, 102, 0.5);
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    --radius-lg: 30px; /* Large rounded corners like in the image */
    --radius-pill: 100px;
    
    --spacing-section: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500; /* Lighter weight for elegance */
    color: var(--text-white);
    line-height: 1.1;
}

p {
    color: var(--text-grey);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Header */
.header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-title span {
    color: var(--text-white);
}

.logo-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-grey);
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list li a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
    opacity: 0.7;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

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

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: 0.3s;
}

.social-icon:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    transform: translateX(100%);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-list a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Space for header */
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-side {
    padding-right: 40px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 500px;
    border-left: 1px solid var(--accent-gold);
    padding-left: 20px;
}

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

.btn {
    padding: 12px 30px;
    border-radius: var(--radius-pill); /* Pill shape */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--accent-gold);
    transition: 0.3s;
    background: transparent;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

.hero-image-side {
    position: relative;
    height: 600px;
}

.hero-image-side video, 
.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Products/Services Section */
.products-section {
    padding: var(--spacing-section) 0;
}

.section-header {
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

.section-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

/* Catalog Controls */
.catalog-controls {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.search-box {
    position: relative;
}

.custom-input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    color: var(--text-white);
    width: 250px;
}

.custom-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Grid Layout matching reference */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    counter-reset: card-counter;
}

.product-card {
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: 0.3s;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Numbering style (01, 02...) */
.product-card::before {
    content: '(0' counter(card-counter) ')';
    counter-increment: card-counter;
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-white);
    opacity: 0.7;
}

.product-card:hover {
    background: rgba(227, 184, 102, 0.05); /* Subtle gold tint on hover */
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Card Content */
.product-info {
    margin-top: 50px; /* Space for number */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-white);
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    flex-grow: 1;
}

.product-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.request-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.request-btn:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.product-image {
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-overlay {
    display: none;
}

/* Bento Grid specific styles for the About section */
.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto)); /* Reduced min-height */
    gap: 20px; /* Reduced gap */
}

.bento-item {
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 20px; /* Smaller radius */
    padding: 30px; /* Smaller padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
    min-height: 200px;
    position: relative;
}

.bento-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.bento-item.filled {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.bento-item.filled * {
    color: var(--bg-dark);
}

.bento-num {
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 15px;
    display: block;
}

.bento-item h3 {
    font-size: 1.3rem; /* Smaller heading */
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.2;
}

.bento-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Bento Grid Layout Logic */
.bento-item:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.bento-item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.bento-item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.bento-item:nth-child(4) { 
    grid-area: 2 / 1 / 3 / 2;
    padding: 0;
    border: none;
}
.bento-item:nth-child(5) { grid-area: 1 / 3 / 3 / 4; }

/* Modal */
.modal {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    color: var(--text-white);
    padding: 15px 25px;
    width: 100%;
}

.form-group textarea {
    border-radius: 20px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
}

/* Notifications */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-toast {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: 0.4s;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-toast.success { border-left: 4px solid var(--accent-gold); }
.notification-icon { color: var(--accent-gold); }
.notification-close { color: var(--text-grey); background: none; border: none; cursor: pointer; font-size: 1.2rem; }

/* Footer Enhancements */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid rgba(227, 184, 102, 0.2);
    background: var(--bg-card);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-info .logo-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.footer-address {
    color: var(--text-grey);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-phone {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    display: block;
    margin-bottom: 25px;
    transition: 0.3s;
}

.footer-phone:hover {
    color: var(--accent-gold);
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: 0.3s;
}

.footer-social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark);
}

.footer-nav-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-col a {
    color: var(--text-grey);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-nav-col a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-hours-col {
    text-align: right;
}

.footer-hours-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.footer-hours-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hours-list li {
    color: var(--text-grey);
    font-size: 0.95rem;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-hours-list li span {
    color: var(--text-white);
    font-weight: 500;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-grey);
}

/* Contact Section Redesign - Floating Cards */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.contact-info {
    padding: 0;
    background: transparent;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info::before {
    display: none;
}

/* Individual Cards for Contacts */
.contact-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    transition: 0.3s;
    height: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(227, 184, 102, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 184, 102, 0.1);
    border: 1px solid rgba(227, 184, 102, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item:hover .contact-icon {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: none;
}

.contact-details h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-grey);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.contact-details p, .contact-details a {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.contact-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: 0.3s;
    font-size: 0.9rem;
}

.contact-social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* Form Card */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-white);
    font-weight: 500;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.contact-form .form-group:nth-child(3),
.contact-form .form-group:nth-child(4),
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-grey);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--text-white);
    padding: 15px 20px;
    width: 100%;
    font-family: var(--font-body);
    transition: 0.3s;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    background: rgba(255,255,255,0.05);
}

/* Responsive adjustments for the new grid */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr; /* Keep 2 cols on tablet */
    }
}

@media (max-width: 576px) {
    .contact-info {
        grid-template-columns: 1fr; /* 1 col on mobile */
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-group:nth-child(n) {
        grid-column: 1 / -1;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image-side {
        height: 400px;
        order: -1;
    }
    
    .nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .about-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .bento-item:nth-child(n) {
        grid-area: auto;
        min-height: auto;
    }
    
    .bento-item:nth-child(4) {
        height: 250px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-hours-col {
        text-align: center;
    }

    .footer-hours-list li {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}
