/* ==========================================
   EASY COLOR CUSTOMIZATION
   ========================================== */
:root {
    --primary: #00e5ff;
    --secondary: #ff2bd4;
    --accent: #8b5cf6;
    --bg: #050508;
    --bg2: #0d0d12;
    --card: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text2: #8892a4;
    --glow: rgba(0, 229, 255, 0.15);
}

/* ==========================================
   RESET
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* ==========================================
   AMBIENT BG — inspired by Martin Garrix
   ========================================== */
.ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none
}

.ambient .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    animation: drift 20s ease-in-out infinite
}

.ambient .orb:nth-child(1) {
    width: 800px;
    height: 800px;
    background: var(--primary);
    top: -20%;
    left: -10%;
    animation-delay: 0s
}

.ambient .orb:nth-child(2) {
    width: 650px;
    height: 650px;
    background: var(--secondary);
    bottom: -15%;
    right: -10%;
    animation-delay: -7s
}

.ambient .orb:nth-child(3) {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: 40%;
    left: 50%;
    animation-delay: -14s
}
/* ===== FORCE DARK SELECT OVERRIDE ===== */

.form-group select,
select {
    background-color: rgba(255, 255, 255, .04) !important;
    color: #ffffff !important;
    border: 1px solid var(--border) !important;
}

/* dropdown options */
.form-group select option,
select option {
    background-color: #000000 !important;
    color: #ffffff !important;
}




@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    25% {
        transform: translate(60px, -40px) scale(1.1)
    }

    50% {
        transform: translate(-40px, 50px) scale(.95)
    }

    75% {
        transform: translate(30px, -20px) scale(1.05)
    }
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .5;
}

/* ==========================================
   NAV — Calvin Harris style: minimal, sticky
   ========================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: all .4s
}

nav.scrolled {
    background: rgba(5, 5, 8, .92);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border)
}

.navwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding .4s
}

nav.scrolled .navwrap {
    padding: 12px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 10
}

.brand .logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden
}

.brand .logo::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg);
    border-radius: 11px
}

.brand .name {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: .5px;
    background: linear-gradient(135deg, var(--primary), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.navlinks {
    display: flex;
    gap: 8px
}

.navlinks a {
    font-weight: 600;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 16px;
    color: var(--text2);
    border-radius: 8px;
    position: relative;
    transition: all .3s
}

.navlinks a:hover,
.navlinks a.active {
    color: #fff
}

.navlinks a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all .3s;
    transform: translateX(-50%)
}

.navlinks a:hover::after {
    width: 50%
}

.menuBtn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 10
}

/* CTA in nav */
.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000 !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    letter-spacing: .5px !important;
    box-shadow: 0 0 25px rgba(0, 229, 255, .3)
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 229, 255, .5)
}

/* ==========================================
   HERO — Full-screen, Calvin Harris inspired
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 80px
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px
}

/* Subtle animated line */
.hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 30px;
    border-radius: 2px
}

.hero-label {
    font-family: 'Orbitron', monospace;
    font-size: .8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: .9
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 28px
}

.hero-title .grad {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 60%, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text2);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400
}

.hero-chips {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px
}

.chip {
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(0, 229, 255, .08);
    border: 1px solid rgba(0, 229, 255, .2);
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .5px;
    transition: all .3s;
    cursor: default
}

.chip:hover {
    background: rgba(0, 229, 255, .15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, .15)
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text2);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bob 2s ease-in-out infinite
}

.scroll-hint .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text2);
    border-bottom: 2px solid var(--text2);
    transform: rotate(45deg)
}

@keyframes bob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(10px)
    }
}

/* Floating Dhol decoration */
.hero-dhol {
    position: absolute;
    bottom: 80px;
    right: 5%;
    z-index: 1;
    opacity: .35;
    pointer-events: none;
    animation: dholFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, .2)) drop-shadow(0 0 60px rgba(255, 43, 212, .1));
    transition: opacity .6s
}

.hero-dhol img {
    width: 220px;
    height: auto
}

@keyframes dholFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg)
    }

    50% {
        transform: translateY(-20px) rotate(2deg)
    }
}

/* ==========================================
   BUTTONS — World-class with glow
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    position: relative;
    letter-spacing: .5px
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    box-shadow: 0 8px 30px rgba(0, 229, 255, .3)
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 229, 255, .5)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2)
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow)
}

/* ==========================================
   SECTIONS — Generous spacing like Carl Cox
   ========================================== */
.section {
    padding: 120px 0;
    position: relative
}

.section-dark {
    background: var(--bg2)
}

.section-header {
    text-align: center;
    margin-bottom: 70px
}

.section-label {
    font-family: 'Orbitron', monospace;
    font-size: .75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: block
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px
}

.section-header h2 .grad {
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7
}

/* ==========================================
   GRIDS
   ========================================== */
.grid {
    display: grid;
    gap: 24px
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr)
}

/* ==========================================
   CARDS — Glassmorphism V2
   ========================================== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
}

/* Gradient border on hover */
.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, transparent, rgba(0, 229, 255, .3), transparent);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1
}

.card:hover::before {
    opacity: 1
}

.card:hover {
    transform: translateY(-8px);
    background: var(--card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 40px var(--glow)
}

.card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 700;
    transition: color .3s
}

.card:hover h3 {
    color: var(--primary)
}

.card p,
.card li {
    color: var(--text2);
    line-height: 1.8
}

/* ==========================================
   STATS — Bold counter style
   ========================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px
}

.stat {
    text-align: center;
    padding: 36px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all .3s
}

.stat:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--glow)
}

.stat-num {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px
}

.stat-label {
    color: var(--text2);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.svc-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block
}

.svc-list {
    margin: 20px 0
}

.svc-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text2);
    font-size: .95rem
}

.svc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700
}

.svc-price {
    margin-top: 20px;
    padding: 14px;
    background: rgba(0, 229, 255, .06);
    border: 1px solid rgba(0, 229, 255, .15);
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    font-size: .95rem
}

/* ==========================================
   WHY CHOOSE — Icon feature cards
   ========================================== */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 229, 255, .1), rgba(139, 92, 246, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 229, 255, .15)
}

/* ==========================================
   SERVICE AREAS — Map style
   ========================================== */
.area-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(0, 229, 255, .06);
    border: 1px solid rgba(0, 229, 255, .12);
    font-size: .85rem;
    color: var(--text2);
    margin: 3px;
    font-weight: 500;
    transition: all .3s
}

.area-badge:hover {
    background: rgba(0, 229, 255, .12);
    color: var(--primary)
}

.area-highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: block
}

/* ==========================================
   EQUIPMENT
   ========================================== */
.equip-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(0, 229, 255, .06);
    border: 1px solid rgba(0, 229, 255, .12);
    font-size: .88rem;
    color: var(--text);
    margin: 4px;
    font-weight: 600;
    transition: all .3s
}

.equip-tag:hover {
    background: rgba(0, 229, 255, .12);
    border-color: var(--primary)
}

/* ==========================================
   GALLERY — Masonry-style hover
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    filter: brightness(.85) saturate(1.1)
}

.gallery-grid img:hover {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6)
}

.social-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testi {
    text-align: center;
    padding: 40px 30px
}

.testi .stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 4px
}

.testi blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text2);
    margin-bottom: 24px
}

.testi-author {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.testi-meta {
    color: var(--text2);
    font-size: .85rem;
    margin-top: 4px
}

/* ==========================================
   CONTACT — Split layout
   ========================================== */
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: rgba(0, 229, 255, .03);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    transition: all .3s
}

.contact-item:hover {
    background: rgba(0, 229, 255, .08);
    border-color: rgba(0, 229, 255, .3);
    transform: translateX(8px)
}

.contact-item .icon {
    font-size: 1.8rem;
    flex-shrink: 0
}

.contact-item strong {
    display: block;
    color: #fff;
    font-size: .95rem
}

.contact-item span {
    color: var(--text2);
    font-size: .88rem
}

/* FORMS */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-group {
    margin-bottom: 14px
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 1px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    transition: all .3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow)
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.form-message {
    margin-top: 12px;
    color: var(--primary);
    font-size: .9rem
}

/* ==========================================
   FOOTER — Calvin Harris minimal
   ========================================== */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px
}

.footer-brand p {
    color: var(--text2);
    font-size: .9rem;
    margin-top: 14px;
    line-height: 1.7
}

footer h4 {
    font-family: 'Orbitron', monospace;
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 16px
}

footer a {
    display: block;
    padding: 5px 0;
    color: var(--text2);
    font-size: .9rem;
    transition: all .3s
}

footer a:hover {
    color: var(--primary);
    transform: translateX(4px)
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text2);
    font-size: .85rem
}

/* ==========================================
   SCROLL REVEAL — fade up
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.165, .84, .44, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ==========================================
   GENRE PILLS
   ========================================== */
.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px
}

.genre-pill {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(0, 229, 255, .06);
    border: 1px solid rgba(0, 229, 255, .15);
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s;
    cursor: default
}

.genre-pill:hover {
    background: rgba(0, 229, 255, .15);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--glow)
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media(max-width:1024px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr)
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .navlinks {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 8, .98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        display: none;
        padding: 20px
    }

    .navlinks.open {
        display: flex
    }

    .navlinks a {
        font-size: 1.1rem;
        padding: 16px 24px
    }

    .menuBtn {
        display: block
    }

    .hero-dhol {
        opacity: .2;
        bottom: 60px;
        right: 2%
    }

    .hero-dhol img {
        width: 140px
    }
}

@media(max-width:768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .section {
        padding: 80px 0
    }

    .hero-dhol {
        display: none
    }

    .hero {
        min-height: auto;
        padding: 140px 24px 80px
    }

    .hero-title {
        letter-spacing: -1px
    }
}

@media(max-width:480px) {
    .gallery-grid {
        grid-template-columns: 1fr
    }

    .hero-btns,
    .form-actions,
    .social-bar {
        flex-direction: column
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .container {
        padding: 0 16px
    }
}