/* ===========================
   Variables & Reset
   =========================== */
   :root {
    --deep-black: #000000;
    --dark-grey: #0a0a0a;
    --card-grey: #141414;
    --champagne-gold: #D4AF37;
    --gold-hover: #F2D06B;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--deep-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

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

/* ===========================
   Utility Classes
   =========================== */
.gold-text {
    color: var(--champagne-gold);
}

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

.section-tag {
    color: var(--champagne-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--champagne-gold);
    color: #000;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--champagne-gold);
    color: var(--champagne-gold);
}

.btn-outline:hover {
    background: var(--champagne-gold);
    color: #000;
}

.btn-block {
    display: block;
    width: 100%;
}

.glow-btn:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--champagne-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--champagne-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--champagne-gold);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Base */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero .subtitle {
    display: block;
    color: var(--champagne-gold);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Features
   =========================== */
.features {
    background-color: var(--dark-grey);
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===========================
   About Section
   =========================== */
.about {
    background-color: var(--deep-black);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition);
}

.image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100px; height: 100px;
    border-top: 2px solid var(--champagne-gold);
    border-left: 2px solid var(--champagne-gold);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px; right: -15px;
    width: 100px; height: 100px;
    border-bottom: 2px solid var(--champagne-gold);
    border-right: 2px solid var(--champagne-gold);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===========================
   Services Menu
   =========================== */
.services {
    background-color: var(--dark-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--card-grey);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.service-info {
    padding: 30px;
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--champagne-gold);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.price-item span:last-child {
    color: var(--champagne-gold);
    font-weight: 600;
}

/* ===========================
   Portfolio Gallery
   =========================== */
.portfolio {
    background-color: var(--deep-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--champagne-gold);
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212,175,55,0.3);
}

.close-lightbox {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 3rem;
    color: var(--champagne-gold);
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    background-color: var(--dark-grey);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-grey);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    border-left: 2px solid var(--champagne-gold);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    position: absolute;
    top: -10px; right: 20px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1);
}

.stars {
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.client-info h4 {
    color: var(--champagne-gold);
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   Contact
   =========================== */
.contact {
    background-color: var(--deep-black);
}

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

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    margin-top: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-form {
    background: var(--card-grey);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--champagne-gold);
    font-size: 1.5rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--champagne-gold);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: #050505;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand h2 span {
    color: var(--champagne-gold);
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 300px;
}

.socials a {
    display: inline-flex;
    width: 40px; height: 40px;
    background: var(--card-grey);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--champagne-gold);
}

.socials a:hover {
    background: var(--champagne-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--champagne-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===========================
   Media Queries
   =========================== */
@media (max-width: 992px) {
    .features-grid, .services-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .contact-grid, .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .features-grid, .services-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-bg {
        background-attachment: scroll; /* Fixes iOS Safari parallax lag */
    }
}

/* Fallback for all touch devices to avoid parallax lag */
@media (hover: none) and (pointer: coarse) {
    .hero-bg {
        background-attachment: scroll;
    }
}
