/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-black: #050505;
    --secondary-black: #121212;
    --accent-yellow: #FFD700;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --nav-height: 80px; 
    
    /* --- NAVBAR VARIABLES --- */
    --nav-primary: #000000;      
    --nav-accent: #FFD700;       
    --nav-text: #ffffff;         
    --nav-bg-dropdown: #0a0a0a;  
    --nav-border: #222222;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Rajdhani', sans-serif; /* Ensure this font is loaded in head */
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================
   HEADER & LOGO STYLES
   ========================================= */
.top-header {
    background: var(--primary-black);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 15px 0; 
    position: relative;
    z-index: 1002;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.brand-group img { 
    height: 60px; 
    width: auto; 
    object-fit: contain; 
}

.logo-text h2 { 
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: var(--text-white); 
    text-transform: uppercase; 
}

.logo-text span { color: var(--accent-yellow); }

/* =========================================
   NESTED NAVBAR STYLES
   ========================================= */
.navbar {
    background: var(--nav-primary);
    height: var(--nav-height);
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--nav-border);
}

.nav-menu {
    display: flex;
    list-style: none;
    height: 100%;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

.nav-link:hover { color: var(--nav-accent); }

.nav-link i {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-item:hover > .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 80px; 
    left: 0;
    background: var(--nav-bg-dropdown);
    min-width: 260px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--nav-accent);
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
    position: relative; 
}

.dropdown li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
    text-transform: none; 
}

.dropdown li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--nav-accent);
}

/* Submenu */
.submenu { position: relative; }

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--nav-bg-dropdown);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none; 
    border-top: 3px solid var(--nav-accent);
    border-left: 1px solid rgba(255,255,255,0.05);
    z-index: 1002;
}

.submenu:hover .sub-dropdown { display: block; }

.sub-dropdown li a {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: none;
}

.sub-dropdown li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--nav-accent);
    padding-left: 25px; 
}

/* Hamburger */
.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    color: var(--nav-accent);
    z-index: 1005;
}

/* Mobile Responsive Navbar */
@media (max-width: 992px) {
    .hamburger { display: block; }
    .navbar { justify-content: flex-start; padding-left: 20px; }
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%; 
        height: calc(100vh - var(--nav-height));
        background: var(--nav-primary);
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
        transition: 0.4s;
        padding: 20px;
        border-top: 1px solid var(--nav-border);
    }
    .nav-menu.active { left: 0; }
    .nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--nav-border); }
    .nav-link { width: 100%; justify-content: space-between; padding: 15px 0; font-size: 16px; }
    
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; 
        padding: 0;
        border: none;
        background: rgba(255,255,255,0.03);
    }
    .dropdown.active { display: block; }
    
    .sub-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none; 
        background: rgba(255,255,255,0.06); 
        padding-left: 20px; 
        margin-top: 0;
    }
    .sub-dropdown.active { display: block; }
    
    .submenu > a i { transition: transform 0.3s; }
    .submenu.active > a i { transform: rotate(90deg); }
    .dropdown li a { border-bottom: none; padding: 12px 0; color: #ddd; }
    
    /* Header Mobile Fix */
    .header-content { flex-direction: column; gap: 6px; }
    .logo-text h2 { font-size: 1.6rem; }
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer-section { 
    background: #000; 
    padding-top: 60px; 
    border-top: 4px solid var(--accent-yellow); 
    position: relative; 
    z-index: 5; 
}

.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 { 
    color: var(--text-white); 
    font-size: 1.4rem; 
    margin-bottom: 25px; 
    border-bottom: 3px solid var(--accent-yellow); 
    display: inline-block; 
    padding-bottom: 8px; 
    text-transform: uppercase; 
}

/* --- FOOTER GALLERY SLIDER --- */
.footer-gallery-slider {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* Perfect Square */
    border: 1px solid #333;
}

.slider-track { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.slider-item { min-width: 100%; height: 100%; position: relative; }
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    object-position: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7); color: var(--accent-yellow); border: 1px solid var(--accent-yellow);
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    z-index: 20; font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.slider-arrow:hover { background: var(--accent-yellow); color: #000; }
.slider-prev { left: 10px; } .slider-next { right: 10px; }

.contact-info li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; color: var(--text-gray); font-size: 0.95rem; }
.contact-info i { color: var(--accent-yellow); margin-top: 5px; font-size: 1.1rem; }

.map-container iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    border: 1px solid #333;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.social-icons { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
.social-btn {
    width: 45px; height: 45px; border-radius: 50%;
    background: #1a1a1a; border: 1px solid #333;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-yellow); transition: all 0.3s ease; font-size: 1.2rem;
}
.social-btn:hover { background: var(--accent-yellow); color: #000; transform: translateY(-5px); }

.copyright { text-align: center; padding: 25px 0; border-top: 1px solid #222; color: #666; font-size: 0.9rem; background: #000; }

/* Scroll Top */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--accent-yellow);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}
#scrollTopBtn:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

/* TOAST NOTIFICATION */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.toast {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
