/* Reset & Core Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #0f1115;
    --bg-card: #161920;
    --accent-gold: #d4af37;
    --text-light: #ffffff;
    --text-muted: #a0a5b5;
    --border-color: #262933;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Reduced Section Spacing */
.section-padding {
    padding: 50px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= Top Bar ================= */
.top-bar {
    background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
    color: #000;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
}

.top-bar-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 6px;
    color: #000;
}

/* ================= Header Fix (Height Increased & Logo Fit) ================= */
header {
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: relative;
}

.brand-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
    padding: 10px 16px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    min-width: 220px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.8);
    border-top: 2px solid var(--accent-gold);
    border-radius: 0 0 6px 6px;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.88rem;
}

.dropdown-content a:hover {
    background-color: #1e222d;
    color: var(--accent-gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--accent-gold);
    cursor: pointer;
}

/* ================= Banner Video Clear ================= */
.hero-banner {
    position: relative;
    height: 75vh;
    min-height: 450px;
    width: 100%;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= About Us Section ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 12px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons Group - Ek hi row mein lane ke liye */
.about-buttons, .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-gold);
    color: #000;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    margin-left: 0; /* Margin reset taaki flex gap properly kaam kare */
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: #000;
}

.about-img img {
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* ================= Services Section (8 Grid Items) ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.service-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.service-card-body {
    padding: 15px;
}

.service-card-body h3 {
    color: var(--accent-gold);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.service-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================= Why Choose Us ================= */
.why-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
}

.why-icon-box {
    text-align: center;
    color: #000000;
}

.why-icon-box i {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 8px;
}

.why-icon-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* ================= Photo Gallery Fix ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ================= FAQ Section ================= */
.faq-container-full {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.faq-answer {
    padding: 0 18px 14px 18px;
    display: none;
    color: #d0d0d0;
    font-size: 0.88rem;
    border-top: 1px solid #222530;
    margin-top: 5px;
    padding-top: 10px;
}

/* ================= Contact Section ================= */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    background: #222632;
    border: 1px solid #3a3f50;
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 8px;
}

/* ================= Footer ================= */
footer {
    background-color: #090a0d;
    padding: 50px 5% 20px 5%;
    border-top: 2px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.8fr;
    gap: 30px;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #c0c5d0;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: #d0d0d0;
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    background: #1c202b;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid-horizontal { grid-template-columns: repeat(3, 1fr); }
    .faq-container-full { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
}

@media (max-width: 768px) {
    .top-bar { 
        flex-direction: column; 
        text-align: center; 
        gap: 6px; 
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .top-bar-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .top-bar-info span {
        margin-right: 0;
    }

    .top-bar-location {
        margin-top: 2px;
    }
    
    .menu-toggle { 
        display: block; 
        z-index: 1001;
        margin-left: auto; 
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0f1115;
        border-top: 1px solid var(--border-color);
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0px 15px 30px rgba(0,0,0,0.9);
        padding: 15px 20px;
        align-items: flex-start;
    }
    
    .nav-links.active { 
        display: flex !important; 
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        padding: 8px 0;
    }

    .nav-links a {
        font-size: 1.05rem;
        display: block;
        padding: 6px 0;
        text-align: left;
    }

    .dropdown-content {
        display: none;
        position: relative;
        top: 0;
        box-shadow: none;
        border: none;
        background-color: #161920;
        width: 100%;
        margin-top: 8px;
        border-radius: 6px;
        border: 1px solid var(--border-color);
    }

    .dropdown-content a {
        padding: 10px 15px;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .about-grid, .contact-map-grid, .footer-grid, .gallery-grid { 
        grid-template-columns: 1fr; 
    }
    .why-grid-horizontal { 
        grid-template-columns: repeat(2, 1fr); 
    }
	
	
}