* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #eee;
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 4px; }
:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --dark-bg: #0a0a0a;
    --card-bg: #111;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}
.preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212,175,55,0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.mobile-menu { display: none; font-size: 1.5rem; cursor: pointer; color: white; }
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}
.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: fadeUp 1s ease 0.2s both;
}
.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s;
    animation: fadeUp 1s ease 0.4s both;
}
.hero-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.section { padding: 6rem 5%; }
.section-dark { background: #0a0a0a; }
.section-light { background: #111; }
.container { max-width: 1400px; margin: 0 auto; }
.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
}
.gold-text { color: var(--gold); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p { line-height: 1.8; margin-bottom: 1.5rem; color: #ccc; }
.signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 1rem;
}
.about-img img { width: 100%; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: #111;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.4s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--gold); background: #161616; }
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; font-weight: 500; }
.service-card p { color: #aaa; line-height: 1.5; }
.portfolio-filters { text-align: center; margin-bottom: 3rem; }
.filter-btn {
    background: transparent;
    border: none;
    color: #ccc;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}
.filter-btn.active, .filter-btn:hover { color: var(--gold); border-bottom: 2px solid var(--gold); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    border-radius: 8px;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.portfolio-overlay p { font-size: 0.8rem; color: var(--gold); }
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid var(--gold);
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}
.testimonial-slider { max-width: 800px; margin: 0 auto; position: relative; text-align: center; }
.testimonial-card {
    background: #111;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 1rem;
}
.testimonial-text { font-style: italic; line-height: 1.7; font-size: 1.1rem; }
.testimonial-author { margin-top: 1rem; font-weight: 600; color: var(--gold); }
.slider-dots { text-align: center; margin-top: 1rem; }
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active { background: var(--gold); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pricing-card {
    background: #111;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all 0.3s;
}
.pricing-card.featured { transform: scale(1.03); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.price { font-size: 2.5rem; color: var(--gold); margin: 1rem 0; }
.pricing-features { list-style: none; margin: 1.5rem 0; }
.pricing-features li { margin: 0.5rem 0; color: #bbb; }
.pricing-btn {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 0.7rem 1.5rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.pricing-btn:hover { background: var(--gold); color: black; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info i { color: var(--gold); margin-right: 1rem; width: 30px; }
.contact-info p { margin: 1rem 0; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); outline: none; }
.submit-btn {
    background: var(--gold);
    color: black;
    padding: 1rem;
    width: 100%;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover { background: #b38f2a; }
.footer {
    background: #050505;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.2);
}
.social-icons a {
    color: white;
    margin: 0 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-icons a:hover { color: var(--gold); }
@media (max-width: 992px) {
    .about-grid, .contact-grid, .pricing-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        gap: 2rem;
    }
    .nav-links.active { right: 0; }
    .mobile-menu { display: block; }
}