/* =========================
   GLOBAL RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

/* =========================
   BODY
========================= */
body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#0a0f1f,#111827);
    color:#e5e7eb;
}

/* =========================
   HEADINGS
========================= */
h1{color:#22c55e;}
h2{color:#fbbf24;}
h3{color:#fbbf24;}

/* =========================
   HEADER
========================= */
header{
    background:linear-gradient(135deg,#0f172a,#1f2937);
    padding:60px 20px;
    text-align:center;
    border-bottom:1px solid #1f2937;
}

header h1{
    font-size:42px;
}

header p{
    margin-top:10px;
    color:#9ca3af;
}

/* =========================
   NAVBAR
========================= */
nav{
    position:sticky;
    top:0;
    background:#020617;
    padding:15px;
    text-align:center;
    z-index:1000;
    border-bottom:1px solid #1f2937;
}

nav a{
    color:#d1d5db;
    margin:0 15px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#fbbf24;
}

/* =========================
   SECTION
========================= */
section{
    padding:70px 20px;
}

/* =========================
   HERO
========================= */
.hero{
    text-align:center;
    padding:80px 20px;
    background:radial-gradient(circle at top,#1e3a8a,#020617);
}

.hero h2{
    font-size:36px;
}

.hero p{
    margin-top:15px;
    color:#c7d2fe;
}

.hero img{
    width:90%;
    max-width:750px;
    border-radius:15px;
    margin-top:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/* =========================
   ABOUT SECTION
========================= */
.about-section{
    max-width:1100px;
    margin:auto;
    background:rgba(17,24,39,0.6);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:50px 30px;
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 10px 40px rgba(0,0,0,0.6);
    position:relative;
}

.about-section::before{
    content:"";
    position:absolute;
    left:0;
    top:20px;
    bottom:20px;
    width:4px;
    background:linear-gradient(to bottom,#22c55e,#fbbf24);
    border-radius:10px;
}

.about-section h2{
    text-align:center;
    margin-bottom:25px;
    font-size:32px;
}

.about-section p{
    color:#cbd5f5;
    line-height:1.8;
    margin-bottom:18px;
    font-size:15px;
}

.about-section p strong{
    display:block;
    font-size:22px;
    color:#22c55e;
    margin-bottom:8px;
    font-weight:700;
}

.about-highlight{
    background:linear-gradient(135deg,rgba(34,197,94,0.1),rgba(251,191,36,0.1));
    border:1px solid rgba(251,191,36,0.2);
    padding:20px;
    border-radius:12px;
    margin-top:25px;
    text-align:center;
}

.about-highlight strong{
    color:#fbbf24;
}

/* =========================
   FEATURES
========================= */
.features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.feature-box{
    flex:1;
    min-width:260px;
    background:#111827;
    padding:25px;
    border-radius:12px;
    text-align:center;
    transition:0.3s;
    border:1px solid #1f2937;
}

.feature-box:hover{
    transform:translateY(-8px);
    border:1px solid #fbbf24;
    box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

/* =========================
   GALLERY
========================= */
.gallery{
    max-width:1200px;
    margin:auto;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.gallery-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s ease;
    background:rgba(17,24,39,0.6);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.05);
}

.gallery-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 20px 50px rgba(0,0,0,0.8);
    border:1px solid rgba(251,191,36,0.4);
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.6s ease;
}

.gallery-card:hover img{
    transform:scale(1.12);
}

.gallery-title-bar{
    position:absolute;
    top:0;
    left:0;
    right:0;
    padding:10px 15px;
    font-size:13px;
    background:linear-gradient(to bottom,rgba(0,0,0,0.8),transparent);
    color:#fbbf24;
    font-weight:600;
}

.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:18px;
    background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
    opacity:0;
    transition:0.4s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h4{
    font-size:16px;
    color:#fbbf24;
    margin-bottom:5px;
}

.gallery-overlay p{
    font-size:13px;
    color:#d1d5db;
}

.gallery-card::after{
    content:"🔍";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0.8);
    font-size:30px;
    opacity:0;
    transition:0.3s;
}

.gallery-card:hover::after{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
}

/* =========================
   LIGHTBOX
========================= */
.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    cursor:zoom-out;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 0 30px rgba(0,0,0,0.8);
}

/* =========================
   VIDEO SECTION
========================= */
.video-section{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:40px;
}

.video-card{
    background:#111827;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #1f2937;
    transition:0.3s;
    position:relative;
}

.video-card:hover{
    transform:translateY(-8px);
    border-color:#fbbf24;
    box-shadow:0 15px 30px rgba(0,0,0,0.6);
}

.video-card video{
    width:100%;
    display:block;
}

.video-info{
    padding:12px;
}

.video-info h4{
    font-size:15px;
    color:#e5e7eb;
    margin-bottom:5px;
}

.video-info p{
    font-size:13px;
    color:#9ca3af;
}

.video-card::before{
    content:"▶";
    position:absolute;
    font-size:40px;
    color:#fff;
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity:0.7;
    pointer-events:none;
    transition:0.3s;
}

.video-card:hover::before{
    opacity:0;
}

/* =========================
   FORM
========================= */
form{
    background:#111827;
    padding:25px;
    border-radius:12px;
    max-width:500px;
    margin:auto;
    border:1px solid #1f2937;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:6px;
    border:1px solid #1f2937;
    background:#020617;
    color:#e5e7eb;
}

button{
    background:#fbbf24;
    color:#020617;
    padding:12px;
    border:none;
    width:100%;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

button:hover{
    background:#f59e0b;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
    text-align:center;
}

.contact-container{
    display:flex;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:300px;
    background:rgba(17,24,39,0.7);
    padding:30px;
    border-radius:16px;
    border:1px solid #1f2937;
    text-align:left;
    backdrop-filter:blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.contact-info h3{
    margin-bottom:15px;
}

.contact-info p{
    margin:10px 0;
    color:#d1d5db;
}

.contact-highlight{
    margin-top:20px;
    padding:15px;
    border-radius:10px;
    background:linear-gradient(135deg,rgba(34,197,94,0.1),rgba(251,191,36,0.1));
    border:1px solid rgba(251,191,36,0.2);
}

.contact-map{
    flex:1;
    min-width:300px;
    height:350px;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #1f2937;
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}

/* =========================
   FOOTER
========================= */
footer{
    background:#020617;
    text-align:center;
    padding:20px;
    color:#6b7280;
    border-top:1px solid #1f2937;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .contact-container{
        flex-direction:column;
    }

    header h1{
        font-size:32px;
    }

    .hero h2{
        font-size:28px;
    }

    nav a{
        display:inline-block;
        margin:8px;
    }
}