* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --bg: #0c0c0c;
    --bg-card: #161616;
    --bg-dark: #0f0f0f;
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --text: #f5f5f5;
    --text-muted: #b0b0b0;
    --border: #2a2a2a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-dark {
    background: var(--bg-dark);
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo span {
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 8px;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========== DROPDOWN ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 240px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    max-height: 400px;
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #4caf50 !important;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.25s;
}

.dropdown-menu li a:hover {
    background: #1a1a1a;
    color: #c9a227 !important;
    padding-left: 24px;
}

.dropdown-menu::-webkit-scrollbar {
    width: 5px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-full {
    width: 100%;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(12,12,12,0.7), rgba(12,12,12,0.9)),
                url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=1600') center/cover no-repeat;
    padding-top: 70px;
}

.hero-content {
    max-width: 700px;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 18px auto 0;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    height: 450px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-content h3 {
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
}

.stat h4 {
    font-size: 1.8rem;
    color: var(--gold);
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 35px 28px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 480px;               /* height control */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* image stretch nahi hogi */
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-bio {
    padding: 15px 12px;
    text-align: center;
}

.gallery-bio h4 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-bio p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 420px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 400px;
    }
}

/* ========== PRICING ========== */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-table th {
    background: #1f1f1f;
    padding: 18px 20px;
    text-align: left;
    font-weight: 500;
    color: var(--gold);
}

.pricing-table td {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.pricing-table tr:hover td {
    background: #1a1a1a;
    color: var(--text);
}

.price {
    color: var(--gold) !important;
    font-weight: 600;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-item .label {
    color: var(--gold);
    font-weight: 500;
    min-width: 80px;
}

.contact-form {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* ========== FOOTER ========== */
footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer .gold {
    color: var(--gold);
}

/* ========== MOBILE ========== */
@media (max-width: 992px) {

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0c0c0c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
    }

    nav.active {
        max-height: 80vh;
        border-bottom: 1px solid var(--border);
        overflow-y: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
        border-bottom: 1px solid #222;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        font-size: 1.05rem;
        color: #fff;
    }

    nav a:hover {
        color: var(--gold);
        background: #161616;
    }

    /* Hamburger to X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        background: #0a0a0a;
        border: none;
        box-shadow: none;
        padding: 0;
        transition: max-height 0.4s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 450px;
        padding: 5px 0;
    }

    .dropdown-menu li a {
        padding-left: 40px !important;
        color: #4caf50 !important;
        font-size: 0.95rem;
    }

    /* Hero Mobile */
    .hero {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .container {
        padding: 0 15px;
    }
}
/* ========== CONTENT SECTION ========== */
.content-section {
    padding: 20px 0;
    background: var(--bg);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-box p {
    margin-bottom: 10px;
}

.content-box p:last-child {
    margin-bottom: 0;
}
/* ========== SIMPLE H3 CONTENT ========== */
.simple-content {
    padding: 20px 0;
    background: var(--bg);
}

.simple-text {
    max-width: 900px;
    margin: 0 auto;
}

.simple-text h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 40px;
    margin-bottom: 15px;
}

.simple-text h3:first-child {
    margin-top: 0;
}

.simple-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}
/* ========== H4 CONTENT SECTION ========== */
.h4-content {
    padding: 20px 0;
    background: var(--bg-dark);
}

.h4-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;          /* ye add kiya */
}

.h4-text h4 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 35px;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;          /* ye bhi add kiya */
}

.h4-text h4:first-child {
    margin-top: 0;
}

.h4-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 8px;
    text-align: center;          /* paragraph bhi center */
}
/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 20px 0;
    background: var(--bg);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ========== CLIENT REVIEWS ========== */
.reviews-section {
    padding: 20px 0;
    background: var(--bg-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.client-name {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== FOOTER ========== */
footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom .gold {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}
/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-btn {
    background: #c9a227;   /* Gold */
}

.whatsapp-btn {
    background: #25D366;   /* WhatsApp Green */
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

/* Mobile pe thoda chhota */
@media (max-width: 600px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
/* Content links ka color */
.simple-text a,
.h4-text a,
.content-box a,
p a {
    color: #c9a227;          /* Gold color */
    text-decoration: underline;
    transition: color 0.3s;
}

.simple-text a:hover,
.h4-text a:hover,
.content-box a:hover,
p a:hover {
    color: #e8c84a;          /* Light gold on hover */
}