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

:root {
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --dark: #0f0f0f;
    --charcoal: #1c1c1c;
    --charcoal-light: #2a2a2a;
    --text: #f0f0f0;
    --text-muted: #999;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover { color: var(--gold); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at 50% 30%, #1a1510 0%, #0f0f0f 60%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.3));
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

/* Section styling */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    color: var(--text);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0.6rem auto 0;
}

/* Services */
.services {
    background: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--charcoal-light);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.1);
}

.service-icon-svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
}

/* Gallery */
.gallery {
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* About */
.about {
    background: var(--charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(212, 168, 83, 0.2);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Why Oduscutzz section */
.why-us {
    background: linear-gradient(135deg, var(--dark) 0%, #151210 100%);
    border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 2rem 1rem;
}

.why-card .why-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.why-card h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Location */
.location {
    background: var(--charcoal);
    border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.location-address {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Contact */
.contact {
    background: var(--dark);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-contact:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-contact svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background: #080808;
    border-top: 1px solid rgba(212, 168, 83, 0.08);
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    }
    .about-content { grid-template-columns: 1fr; }
    .about-image img { max-width: 200px; margin: 0 auto; display: block; }
    .hero-logo { width: 160px; height: 160px; }
    .tagline { font-size: 1.4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
}
