﻿:root {
    --purple: #5B2A8E;
    --purple-dark: #3E1A66;
    --gold: #F5C518;
    --gold-light: #FFD93D;
    --black: #0A0A0A;
    --dark: #141414;
    --darker: #1c1c1c;
    --gray: #2a2a2a;
    --light-gray: #b0b0b0;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* ===== Promo Bar ===== */
.promo-bar {
    background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
    color: var(--black);
    text-align: center;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
}
.promo-bar a { color: var(--black); text-decoration: underline; font-weight: 800; }

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--purple);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(91,42,142,0.4); }
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 60px; width: auto; border-radius: 6px; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-link {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--gold); background: rgba(245,197,24,0.1); }

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    background:
        radial-gradient(circle at 30% 20%, rgba(91,42,142,0.35), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(245,197,24,0.15), transparent 40%),
        linear-gradient(180deg, #0a0a0a, #141414);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.7));
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-logo { width: 320px; height: auto; margin: 0 auto 28px; border-radius: 12px; box-shadow: var(--shadow); }
.hero-title { font-size: clamp(2rem, 5vw, 4rem); color: var(--white); margin-bottom: 18px; text-shadow: 0 4px 20px rgba(0,0,0,0.6); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.3rem); color: var(--light-gray); max-width: 700px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,197,24,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--purple); }
.btn-secondary:hover { background: var(--purple); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gray); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.eyebrow { display: block; color: var(--gold); font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.section-lead { color: var(--light-gray); font-size: 1.1rem; }
/* ===== Services ===== */
.services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
    background: linear-gradient(145deg, var(--darker), #1a1a1a);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: 0 12px 30px rgba(91,42,142,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.service-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--light-gray); font-size: 0.95rem; }

/* ===== Our Work / Gallery ===== */
.our-work { background: var(--black); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: var(--darker);
    position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: "+";
    position: absolute;
    inset: 0;
    background: rgba(91,42,142,0.7);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-actions { text-align: center; margin-top: 36px; }
/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 6px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.6);
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem; }
.lightbox-close:hover { background: var(--purple); }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); padding: 12px 20px; font-family: 'Oswald', sans-serif; font-size: 0.9rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); padding: 12px 20px; font-family: 'Oswald', sans-serif; font-size: 0.9rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--purple); }

/* ===== About ===== */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-img { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; transition: var(--transition); }
.about-img:hover { transform: scale(1.03); }
.about-img-1 { grid-row: span 2; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 18px; }
.about-text p { color: var(--light-gray); margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0 30px; }
.about-list li { color: var(--white); padding: 8px 0; border-bottom: 1px solid var(--gray); font-size: 0.98rem; }

/* ===== Why Us ===== */
.why-us { background: var(--black); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
    background: linear-gradient(145deg, var(--darker), #1a1a1a);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); border-color: var(--purple); box-shadow: 0 10px 25px rgba(91,42,142,0.3); }
.why-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.why-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--light-gray); font-size: 0.95rem; }
.why-card-promo {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-color: var(--gold);
}
.why-card-promo h3 { color: var(--gold); }
/* ===== Reviews ===== */
.reviews { background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.review-card { background: var(--darker); border: 1px solid var(--gray); border-radius: 8px; overflow: hidden; cursor: pointer; transition: var(--transition); }
.review-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.review-card img { width: 100%; height: auto; display: block; }

/* ===== Quote ===== */
.quote { background:
    radial-gradient(circle at 20% 30%, rgba(91,42,142,0.25), transparent 50%),
    linear-gradient(180deg, var(--dark), var(--black)); }
.quote-wrapper { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.quote-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.quote-text p { color: var(--light-gray); margin-bottom: 24px; }
.quote-list { list-style: none; }
.quote-list li { color: var(--white); padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid var(--gray); }
.quote-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 12px; height: 12px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.quote-list a { color: var(--gold); font-weight: 700; }

/* ===== Form ===== */
.quote-form { background: var(--darker); border: 1px solid var(--gray); border-radius: 8px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; background: #1a1a1a; border: 1px solid var(--gray); border-radius: 4px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 1rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.15); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #666; }
.form-success { display: none; color: var(--gold); text-align: center; margin-top: 18px; font-weight: 600; }
.form-success.show { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Contact ===== */
.contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.contact-card { background: linear-gradient(145deg, var(--darker), #1a1a1a); border: 1px solid var(--gray); border-radius: 8px; padding: 30px 24px; text-align: center; transition: var(--transition); }
.contact-card:hover { transform: translateY(-5px); border-color: var(--purple); box-shadow: 0 10px 25px rgba(91,42,142,0.3); }
.contact-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; }
.contact-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p { color: var(--gold); font-size: 0.95rem; }
.contact-direct { color: var(--light-gray); font-size: 1rem; line-height: 1.8; margin-bottom: 30px; }
.contact-direct strong { color: var(--gold); }

/* ===== Footer ===== */
.footer { background: #060606; border-top: 2px solid var(--purple); padding: 50px 0 20px; }
.footer-content { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-logo { width: 140px; height: auto; border-radius: 8px; margin-bottom: 14px; }
.footer-brand p, .footer-col p { color: var(--light-gray); font-size: 0.95rem; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 7px 0; }
.footer-col a { color: var(--light-gray); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--gray); color: #777; font-size: 0.85rem; }

/* ===== Float Call Button ===== */
.float-call {
    position: fixed; bottom: 22px; right: 22px; z-index: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black); width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.75rem;
    box-shadow: var(--shadow); cursor: pointer; text-decoration: none;
    transition: var(--transition);
}
.float-call:hover { transform: scale(1.1) rotate(-10deg); }
/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--dark); flex-direction: column; align-items: center;
        padding: 20px 0; gap: 0; max-height: 0; overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        border-bottom: 1px solid var(--purple);
    }
    .nav-menu.active { max-height: 500px; padding: 10px 0; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 14px; text-align: center; border-bottom: 1px solid var(--gray); }
    .nav-link:last-child { border-bottom: none; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-images { order: -1; }
    .quote-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .hero-logo { width: 220px; }
    .hero-cta .btn { flex: 1 1 auto; }
    .section { padding: 60px 0; }
    .about-img { height: 200px; }
    .float-call { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
