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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d0d0d;
    color: #f4f4f4;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Typography */
h1, h2, .logo {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(13, 13, 13, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    color: #a8a8a8;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c9a77c; /* Elegant Gold Hover */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Hero section background */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('images/portfolio_1.jpg.jpg') center/cover;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 15px 40px;
    background-color: #c9a77c; /* Elegant Gold Button */
    color: #000;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 50px;
    text-align: center;
    background-color: #121212;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

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

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

.gallery-item img {
    width: 100%;
    height: 350px; /* Uniform height */
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    transition: bottom 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Smooth zoom effect */
}

.gallery-item:hover .overlay {
    bottom: 0;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 80px 20px 40px;
    text-align: center;
}

footer h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

footer p {
    color: #888;
    margin-bottom: 30px;
}

.copyright {
    font-size: 0.9rem;
    color: #444;
    margin-top: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .portfolio {
        padding: 60px 20px;
    }
    .gallery-item img {
        height: 250px;
    }
}
/* ── Services Section ── */
.services-section {
    padding: 100px 50px;
    background-color: #0d0d0d;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    display: block;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 15px;
    color: #888;
    max-width: 480px;
    margin: 12px auto 0;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}
.service-card {
    background: #111;
    padding: 2rem 1.5rem;
    transition: background 0.2s;
}
.service-card:hover { background: #161616; }
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: #f0ece4;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
.service-card p { font-size: 13px; color: #666; line-height: 1.65; }
.srv-tag {
    display: inline-block;
    font-size: 11px;
    color: #c9a96e;
    border: 1px solid #2a2218;
    background: #1a1508;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 14px;
}

/* ── CTA Strip ── */
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 2.5rem;
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.cta-strip span {
    font-size: 16px;
    font-weight: 500;
    color: #f0ece4;
    display: block;
    margin-bottom: 4px;
}
.cta-strip p { font-size: 14px; color: #888; margin: 0; }
.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: #f0ece4;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.3s, color 0.3s;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}
.btn-outline:hover { border-color: #c9a96e; color: #c9a96e; }

/* ── Process Section ── */
.process-section {
    padding: 100px 50px;
    background-color: #0a0a0a;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}
.process-step {
    background: #111;
    padding: 2.5rem 1.75rem;
}
.step-num {
    font-size: 48px;
    font-weight: 300;
    color: #1e1e1e;
    line-height: 1;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
}
.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #131313;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.step-icon svg { width: 20px; height: 20px; }
.process-step h3 {
    font-size: 15px;
    font-weight: 500;
    color: #f0ece4;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
.process-step p { font-size: 13px; color: #666; line-height: 1.7; }
.step-tag {
    display: inline-block;
    font-size: 11px;
    color: #c9a96e;
    margin-top: 14px;
    opacity: 0.7;
}

/* ── FAQ Section ── */
.faq-section {
    padding: 100px 50px;
    background-color: #0d0d0d;
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item { border-bottom: 1px solid #1e1e1e; }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}
.faq-q span { font-size: 15px; color: #f0ece4; font-family: 'Poppins', sans-serif; line-height: 1.5; }
.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform 0.3s; }
.faq-item.open .faq-icon { border-color: #c9a96e; }
.faq-item.open .faq-icon svg { stroke: #c9a96e; transform: rotate(45deg); }
.faq-a {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.4rem; }
.faq-tag {
    display: inline-block;
    font-size: 11px;
    color: #c9a96e;
    background: #1a1508;
    border: 1px solid #2a2218;
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 10px;
}

/* ── Main CTA Section ── */
.cta-main {
    padding: 100px 50px;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid #1e1e1e;
}
.cta-main h2 {
    font-size: 2.5rem;
    color: #f0ece4;
    margin: 16px auto 16px;
    max-width: 560px;
    line-height: 1.25;
}
.cta-main p { font-size: 15px; color: #666; max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-trust { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-trust span { font-size: 13px; color: #555; }

/* ── Mobile Responsive Updates ── */
@media (max-width: 768px) {
    .services-section, .process-section, .faq-section, .cta-main { padding: 60px 20px; }
    .cta-strip { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
    .cta-trust { gap: 1rem; }
}

/* ── Lightbox ── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#lightbox.active {
    display: flex;
}
#lb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
#lb-caption {
    color: #c9a96e;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-top: 16px;
    letter-spacing: 1px;
}
#lb-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: 1px solid #444;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
#lb-close:hover { border-color: #c9a96e; color: #c9a96e; }
#lb-prev, #lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid #444;
    color: #fff;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-prev:hover, #lb-next:hover { border-color: #c9a96e; color: #c9a96e; }

/* ── Instagram Link ── */
.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c9a96e;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    transition: opacity 0.2s;
}
.insta-link:hover { opacity: 0.7; }
