/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #070707;
    --bg-card: #0f0f11;
    --gold: #c5a880;
    --gold-bright: #e5c799;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: rgba(197, 168, 128, 0.25);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- REUSABLE COMPONENTS --- */
.gold-text {
    color: var(--gold);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: #000;
}

.btn-solid {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #000;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

/* Section Title Configs */
.section-tag {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.section-tag::before, .section-tag::after {
    content: " ✦ ";
    margin: 0 5px;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.divider {
    text-align: center;
    color: var(--gold);
    margin: 10px 0 40px;
    font-size: 1.2rem;
}

/* --- HEADER / NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: rgba(7, 7, 7, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.logo small {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 15px;
    letter-spacing: 1px;
    transition: 0.3s;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 40px 8%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('https://img.freepik.com/free-photo/beautiful-indian-bride-with-jewelry_23-2149448161.jpg') no-repeat center center/cover; /* Standard premium background setup */
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content .subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hero-content .line {
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    display: inline-block;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 400px;
    position: relative;
}

.badge {
    background-color: rgba(15, 15, 17, 0.85);
    border: 1px solid var(--gold);
    padding: 20px;
    text-align: center;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.2);
}

.badge .stars { color: var(--gold); font-size: 0.7rem; }
.badge h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold); margin: 2px 0;}
.badge p { font-size: 0.6rem; letter-spacing: 1px; color: var(--text-light); }

/* --- SERVICES SECTION --- */
.services-section {
    padding: 80px 8%;
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 60px 8%;
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #0b0b0d;
}

.about-left, .about-right {
    flex: 1;
}

.about-img-container {
    position: relative;
    max-width: 400px;
}

.about-img-container img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    left: -25px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    padding: 15px;
    text-align: center;
}
.exp-badge h3 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1.8rem; }
.exp-badge p { font-size: 0.65rem; letter-spacing: 1px; }

.section-tag-left {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 5px;
}
.section-tag-left::before { content: "✦ "; }

.about-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    text-transform: capitalize;
}

.about-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.wcu-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.wcu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wcu-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wcu-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.wcu-item h4 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.wcu-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 80px 8%;
    background-color: var(--bg-dark);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-title-left {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.gallery-item:hover img {
    border-color: var(--gold);
}

.before-after {
    position: relative;
}

.ba-label {
    position: absolute;
    bottom: 10px;
    font-size: 0.65rem;
    padding: 3px 8px;
    background-color: rgba(0,0,0,0.8);
    letter-spacing: 1px;
}
.before { left: 10px; border-left: 2px solid #de4e4e; }
.after { right: 10px; border-left: 2px solid #4ede7c; }

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 80px 8%;
    background-color: #0b0b0d;
}

.testimonials-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    flex: 1;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.testimonial-card .review {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--gold);
}

.nav-arrow {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.nav-arrow:hover {
    border-color: var(--gold);
    background-color: var(--gold);
    color: #000;
}

/* --- FOOTER / CONFIG --- */
footer {
    background-color: var(--bg-dark);
    padding: 80px 8% 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--gold);
}

/* Appointment Form Elements */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.appointment-form input, .appointment-form select {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.appointment-form input:focus, .appointment-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-btn {
    width: 100%;
    justify-content: center;
}

/* Contact Elements */
.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Maps Block */
.map-placeholder {
    height: 150px;
    background-color: #121214;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-buttons {
    display: flex;
    gap: 10px;
}
.small-btn { padding: 8px 12px; font-size: 0.75rem; }
.text-dark { color: #000; padding: 8px 12px; font-size: 0.75rem; }

/* Copyright Frame */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--gold);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .navbar { padding: 15px 4%; }
    .nav-links { display: none; } /* Basic responsive fallback */
    .hero { flex-direction: column; text-align: center; padding-top: 80px; }
    .hero-content .subtitle { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .about-section { flex-direction: column; }
}