:root {
    --primary: #0041c2;
    --secondary: #BFFF00;
    --dark: #050505;
    --dark-alt: #111111;
    --white: #ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:rgba(0,0,0,.8);
    backdrop-filter:blur(10px);

    z-index:1000;
}

.logo img{
    height:57px;
    width: 250px;
}

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

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--secondary);
}

/* BUTTONS */

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:14px 28px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--secondary);
    color:black;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid var(--primary);
    color:white;
}

.btn-secondary:hover{
    background:var(--primary);
}

/* HERO */

.hero{
    height:100vh;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    ),
    url("https://images.unsplash.com/photo-1541773367336-d14a8c4d5b3f?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:900px;
    padding:0 20px;
    z-index:2;
}

.hero h1{
    font-size:clamp(3rem,8vw,7rem);
    font-weight:900;
    line-height:1;
    margin-bottom:20px;
}

.hero p{
    max-width:980px;
    margin:auto;
    line-height:1.8;
    opacity:.9;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* SECTIONS */

.section{
    padding:120px 8%;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:3rem;
    margin-top:10px;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.about-grid p{
    line-height:1.9;
    opacity:.85;
}

/* FEATURES */

.features{
    background:var(--dark-alt);
    padding:120px 8%;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#171717;
    padding:40px;
    border-radius:20px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
}

.card h3{
    margin-bottom:15px;
    color:var(--secondary);
}

/* STATS */

.stats{
    background:var(--primary);
    padding:80px 8%;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stat h2{
    font-size:3rem;
    margin-bottom:10px;
}

.stat span{
    opacity:.85;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-box{
    height:260px;
    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}
/* Gallery images fill the box, cursor shows it's clickable */
.gallery-box {
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-box:hover img {
    transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeIn 0.25s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(198, 241, 53, 0.15);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 2.5rem;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: #C6F135;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: #ffffff;
    cursor: pointer;
    padding: 12px 18px;
    user-select: none;
    transition: color 0.2s ease;
}

.lightbox-arrow:hover {
    color: #C6F135;
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-item {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px 24px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #ffffff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: #C6F135;
    font-size: 1.4rem;
    margin-left: 12px;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 12px;
    color: #b5b5b5;
    line-height: 1.6;
}

/* LOCATION */

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: stretch;
    margin-top: 32px;
}

.map-container {
    flex: 1 1 60%;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0; /* removes tiny gap iframes sometimes leave below them */
}

.address-box {
    flex: 1 1 30%;
    min-width: 260px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-box h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.address-box p {
    color: #b5b5b5;
    line-height: 1.6;
    margin-bottom: 10px;
}

.address-note {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.pricing-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pricing-card .price {
    color: #C6F135;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-note {
    color: #999999;
    font-size: 0.85rem;
}

.pricing-featured {
    border-color: #C6F135;
    box-shadow: 0 0 24px rgba(198, 241, 53, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C6F135;
    color: #0D0D0D;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.timings-box {
    margin-top: 40px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.timings-box h3 {
    color: #ffffff;
    margin-bottom: 16px;
}

.timings-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.timings-day {
    color: #C6F135;
    font-weight: 700;
    margin-bottom: 4px;
}

.timings-hours {
    color: #b5b5b5;
}

.timings-note {
    color: #888888;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .logo img {
        height: 50px;
        width: auto;
        max-width: 160px;
    }
    .btn-primary,
    .btn-secondary{
        padding:14px 20px 14px 20px;
    }
}

/* CTA */

.cta{
    padding:120px 8%;
    text-align:center;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        #001950
    );
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

/* FOOTER */

footer{
    padding:60px 20px;
    text-align:center;
}

footer img{
    height: 57px;
    width: 250px;
    margin-bottom:20px;
}

footer p{
    margin-bottom:10px;
    opacity:.8;
}

.highlight {
    color: #BFFF00;
}

/* RESPONSIVE */

@media(max-width:992px){

    .feature-grid,
    .gallery-grid,
    .stats .container,
    .about-grid{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:3rem;
    }

    .section-heading h2{
        font-size:2.2rem;
    }
}
