*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}
body{
    background:#fafafa;
    color:#111;
    overflow-x:hidden;
}

/* ================= TOP LEFT LOGO ================= */
.top-logo{
    position:fixed;
    left:30px;
    top:30px;
    font-size:24px;
    font-weight:800;
    z-index:1000;
}

/* ================= LEFT MENU ================= */
.sidebar{
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:220px;
    height:auto;
    padding:30px 20px;
    z-index:100;
}

.menu{
    list-style:none;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap: 20px;
}

.menu li{
    margin-bottom:15px;
    position:relative;
}
.menu li a{
    text-decoration:none;
    color:#111;
    font-size:15px;
}
.menu li:hover > .submenu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}
.submenu{
    list-style:none;
    position:absolute;
    left:55px;
    top:0;
    background:#fff;
    padding:10px 15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    border-radius:6px;
    opacity:0;
    visibility:hidden;
    transform:translateX(10px);
    transition:0.3s;
}
.submenu li{
    margin:8px 0;
}
.submenu a{
    font-size:14px;
    white-space:nowrap;
}

/* ================= RIGHT ICON BAR ================= */
.social-bar{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:100;
}

/* DEFAULT COLOR (LIGHT BG) */
.social-bar a i{
    font-size:18px;
    color:#111;
    transition:0.3s;
}

/* HOVER */
.social-bar a:hover i{
    color:#001f55;
    transform:scale(1.2);
}

/* DARK MODE - When social bar has icons-white class */
.social-bar.icons-white a i{
    color:#fff !important;
}

/* Hover should still work in dark mode */
.social-bar.icons-white a:hover i{
    color:#e9e9e9 !important;
}

/* ================= HERO ================= */
.hero{
    min-height:100vh;
    padding-left:240px;
    padding-right:80px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    position:relative;
    overflow:hidden;

    /* BACKGROUND FROM HTML */
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

/* OVERLAY */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45); /* dark overlay */
    z-index:0;
}

/* TEXT */
.hero-text{
    max-width:450px;
    position:relative;
    z-index:2;
}

.hero-text h1{
    color:#fafafa;
    font-size:60px;
    font-weight:800;
    line-height:1.1;
}

.hero-text p{
    margin:20px 0;
    color:#f4f4f4;
    font-size:16px;
}

/* BUTTON */
.btn{
    color:#f0f0f0;
    padding:12px 30px;
    border:1px solid #f0f0f0;
    background:transparent;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#fff;
    color:#000;
}

/* Floating Icons */
.float-icon{
    position:absolute;
    font-size:40px;
    color:rgba(255,111,145,0.15);
    animation:float 6s ease-in-out infinite;
    z-index:1;
}

/* FLOAT ANIMATION */
@keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-20px); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .hero{
        padding-left:80px;
        padding-right:40px;
    }

    .hero-text h1{
        font-size:48px;
    }
}

@media(max-width:768px){
    .hero{
        padding:100px 30px;
        justify-content:center;
        text-align:center;
    }

    .hero-text{
        max-width:100%;
    }

    .hero-text h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero-text p{
        font-size:15px;
    }

    /* Hide floating icons on mobile for clean look */
    .float-icon{
        display:none;
    }
}

@media(max-width:480px){
    .hero-text h1{
        font-size:30px;
    }

    .btn{
        padding:10px 24px;
        font-size:14px;
    }
}


/* ================= PARALLAX ================= */
.parallax{
    height:500px;
    background:url('media/para.JPG') center/cover fixed;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
    padding: 0 40px;
}
.parallax h2{
    font-size:50px;
    margin-bottom: 30px;
}
.parallax-content {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* ================= ALBUM SECTION (3rd IMAGE STYLE) ================= */
.album-section{
    padding:100px 80px 100px 240px;
    display:flex;
    align-items:center;
    gap:80px;
}
.album-left h2{
    font-size:50px;
    font-weight:800;
}
.album-right img{
    width:350px;
    border-radius:10px;
}

/* ================= ARTIST PROFILE (6th IMAGE STYLE) ================= */
.profile{
    padding:100px 80px 100px 240px;
    text-align:center;
}
.profile img{
    width:300px;
    border-radius:50%;
}
.profile h2{
    margin-top:40px;
    font-size:40px;
}
.profile p{
    max-width:700px;
    margin:20px auto;
    color:#555;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .sidebar{display:none;}
    .hero, .album-section, .concert, .profile{
        padding-left:40px; 
        padding-right:40px;
    }
    .hero{flex-direction:column; text-align:center;}
    .social-bar{right:10px;}
    .top-logo{left:20px; top:20px; font-size:20px;}
    .parallax{
        height:auto;
        min-height: 500px;
        padding: 80px 30px;
    }
    .parallax h2{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .parallax-content{
        font-size: 18px;
    }
}

/* ===== MENU COLOR STATES ===== */
.sidebar{
    transition: color 0.3s ease;
}

/* Default (light background) */
.menu li a,
.top-logo{
    color:#111;
}

/* Dark background mode */
.sidebar.menu-white .menu li a,
.top-logo.white-text{
    color:#fff;
}

/* Submenu on dark */
.sidebar.menu-white .submenu{
    background:#f3f3f31a;
}
.sidebar.menu-white .submenu a{
    color:#fff;
}

/* Hover still works */
.menu li a:hover{
    color:#6f6f6f;
}

/* Top logo hover */
.top-logo:hover{
    color:#ffffff;
    cursor:default;
}


    /* ===== ARTIST PROFILE SECTION ===== */
.artist-profile{
    background:#f7f7f7;
    padding:120px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    position:relative;
}

/* IMAGE */
.profile-image{
    width:100%;
    max-width:900px;
}
.profile-image img{
    width:100%;
    display:block;
}

/* CONTENT CARD */
.profile-card{
    background:#fff;
    max-width:700px;
    width:90%;
    margin-top:-120px;
    padding:60px 50px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

/* NAME */
.profile-card h2{
    font-size:42px;
    margin-bottom:25px;
    font-weight:600;
}

/* TEXT */
.profile-card p{
    font-size:15px;
    line-height:1.9;
    color:#444;
}

/* RESPONSIVE */
@media(max-width:768px){
    .profile-card{
        padding:40px 25px;
        margin-top:-80px;
    }
    .profile-card h2{
        font-size:32px;
    }
}


.concert{
    padding:120px 80px;
    background:#fff6e5;
    color:#000000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT CONTENT */
.concert-content{
    max-width:700px;
    margin-left: 20px;
}

.concert h2{
    font-size:60px;
    margin-bottom:40px;
    color:#000000;
}

/* CARD WRAPPER */
.concert-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

/* SINGLE CARD */
.concert-card{
    background:#ffffff;
    padding:22px 24px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.concert-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.concert-card h3{
    font-size:18px;
    margin-bottom:10px;
    color:#000;
    font-weight:600;
}

.concert-card p{
    font-size:15px;
    line-height:1.7;
    color:#333;
}

/* BUTTON (UNCHANGED) */
.concert button{
    margin-top:30px;
    background:#00000000;
    color:#000;
    border:none;
    padding:14px 32px;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}
.concert button:hover{
    background:#111;
    color:#363636;
}

/* RIGHT IMAGE CONTAINER */
.concert-image{
    background:#ffffff;
    padding:12px;
    border-radius:6px;
}
.concert-image img{
    width:500px;
    display:block;
    border-radius:4px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .concert{
        flex-direction:column;
        text-align:center;
        padding:90px 40px;
    }

    .concert-cards{
        grid-template-columns:1fr;
    }

    .concert-image img{
        width:100%;
        max-width:360px;
    }
}




/* MAIN SECTION */
.essence-section{
    min-height:100vh;
    padding:0 80px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:120px;
    background:#fff;
    position:relative;
}

/* LEFT TEXT */
.essence-left{
    max-width:300px;
}
.artist-name{
    font-size:14px;
    letter-spacing:1px;
    color:#333;
}
.essence-left h1{
    font-size:72px;
    font-weight:800;
    line-height:1.05;
    margin:10px 0 30px;
}
.listen-btn{
    padding:12px 35px;
    background:transparent;
    border:1px solid #111;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}
.listen-btn:hover{
    background:#111;
    color:#fff;
}

/* CENTER IMAGE */
.essence-center img{
    width:420px;
    max-width:100%;
    border-radius:4px;
}

/* ================= RIGHT ALBUM PLAYER ================= */
.essence-right{
    width:260px;
    text-align:left;
    font-size:13px;
}

/* TOP BUTTONS */
.player-actions{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}
.player-actions button{
    background:transparent;
    border:1px solid #bbb;
    padding:6px 10px;
    font-size:12px;
    cursor:pointer;
    transition:0.3s;
}
.player-actions button:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}

/* ALBUM ART */
.album-art{
    position:relative;
    margin-bottom:10px;
}
.album-art img{
    width:100%;
    display:block;
}
.vinyl-dot{
    width:14px;
    height:14px;
    background:#ff3b3b;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* TRACK INFO */
.track-info{
    margin:10px 0;
}
.track-info h4{
    font-size:14px;
    margin-bottom:2px;
}
.track-info p{
    font-size:12px;
    color:#555;
}

/* PLAYER CONTROLS */
.player-controls{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    margin-bottom:10px;
}
.player-controls button{
    background:none;
    border:none;
    cursor:pointer;
    font-size:14px;
}
.player-controls i{
    color:#111;
}
#progressBar{
    flex:1;
    height:4px;
    cursor:pointer;
}

/* TRACKLIST */
.tracklist{
    margin-top:10px;
}
.track{
    display:flex;
    justify-content:space-between;
    padding:6px 0;
    border-top:1px solid #ddd;
    font-size:12px;
    cursor:pointer;
}
.track.active{
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
    .essence-section{
        padding:80px 40px;
        flex-direction:column;
        text-align:center;
        gap:50px;
    }

    .essence-left{
        max-width:100%;
    }

    .essence-right{
        width:100%;
        max-width:320px;
        margin:0 auto;
    }
}



/* ================= PARALLAX HIGHLIGHTS SECTION ================= */
.mr-parallax-section{
    position:relative;
    height:480px;
    background:url('media/music\ book.avif') center/cover no-repeat fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

/* OVERLAY */
.mr-parallax-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:1;
}

/* CONTENT WRAPPER */
.mr-parallax-content{
    position:relative;
    z-index:2;
    color:#ffffff;
    max-width:900px;
    padding:0 20px;
}

/* HEADING */
.mr-parallax-content h2{
    font-size:56px;
    margin-bottom:30px;
    font-weight:700;
    letter-spacing:1px;
}

/* ================= HIGHLIGHT CARDS ================= */
.mr-highlights-cards{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
    margin:30px 0 40px;
}

.mr-highlight-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:16px;
    padding:24px 22px;
    display:flex;
    align-items:flex-start;
    gap:14px;
    text-align:left;
    transition:0.3s ease;
}

.mr-highlight-card:hover{
    background:rgba(255,255,255,0.18);
    transform:translateY(-4px);
}

/* ICON */
.mr-highlight-card .icon{
    color:#ff3b3b;
    font-size:22px;
    line-height:1;
    margin-top:4px;
}

/* TEXT */
.mr-highlight-card p{
    margin:0;
    font-size:22px;
    line-height:1.7;
    color:#ffffff;
}

/* BUTTON */
.mr-parallax-content button{
    background:#ffffff;
    color:#000;
    border:none;
    padding:14px 36px;
    cursor:pointer;
    font-size:14px;
    letter-spacing:1px;
    transition:0.3s;
}
.mr-parallax-content button:hover{
    background:#111;
    color:#fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .mr-parallax-section{
        height:auto;
        padding:100px 0;
        background-attachment:scroll;
    }

    .mr-parallax-content h2{
        font-size:36px;
    }

    .mr-highlights-cards{
        grid-template-columns:1fr;
        gap:18px;
    }

    .mr-highlight-card p{
        font-size:18px;
    }
}



.mrz-video-showcase{
    background:#ffffff;
    padding:120px 0 100px;
    text-align:center;
}

/* MAIN VIDEO */
.mrz-video-main{
    position:relative;
    width:80%;
    max-width:1000px;
    margin:0 auto 50px;
    aspect-ratio:16/9;
    overflow:hidden;
    background:#000;
}

/* IFRAME */
.mrz-video-main iframe{
    width:100%;
    height:100%;
    display:block;
}

/* OVERLAY */
.mrz-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#fff;
    z-index:2;
}

/* TITLE */
.mrz-video-overlay h2{
    font-size:42px;
    margin-bottom:20px;
    font-weight:600;
}

/* PLAY BUTTON */
.mrz-play-btn{
    padding:12px 30px;
    border:2px solid #fff;
    background:transparent;
    color:#fff;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}
.mrz-play-btn:hover{
    background:#fff;
    color:#000;
}

/* THUMBS */
.mrz-video-thumbs{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:20px;
}

.mrz-thumb{
    width:200px;
    cursor:pointer;
    overflow:hidden;
}

.mrz-thumb img{
    width:100%;
    display:block;
    transition:0.3s;
}

.mrz-thumb:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
    .mrz-video-main{
        width:95%;
    }

    .mrz-video-thumbs{
        flex-direction:column;
        align-items:center;
    }

    .mrz-thumb{
        width:90%;
    }

    .mrz-video-overlay h2{
        font-size:30px;
    }
}




/* ================= REELS SECTION ================= */
.reels-section {
  background: #e5fff3;
  padding: 100px 0;
  overflow: hidden;
}

.reels-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  text-align: center;
}

/* ================= CAROUSEL ================= */
.reels-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Each Slide */
.reel-slide {
  opacity: 0.4;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.reel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* ================= IPHONE FRAME ================= */
.iphone-frame {
  width: 260px;
  height: 520px;
  border: 10px solid #111;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.iphone-frame.small {
  width: 200px;
  height: 400px;
  opacity: 0.9;
}

/* Speaker notch */
.iphone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 20px;
  z-index: 2;
}

/* Video inside frame */
.iphone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= ARROWS BELOW ================= */
.reel-arrows {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.reel-arrow {
  position: relative;
  background: transparent;
  border: none;
  font-size: 42px;
  color: #000;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.reel-arrow:hover {
  transform: scale(1.2);
  color: #001f55;
}

/* Remove old absolute positioning */
.reel-arrow.left { left: auto; }
.reel-arrow.right { right: auto; }

/* ================== MOBILE RESPONSIVE ================== */
@media (max-width: 768px) {

  .reels-section {
    padding: 60px 0;
  }

  .reels-carousel {
    gap: 0;
  }

  /* Hide side reels */
  .reel-slide {
    display: none;
  }

  /* Show only active reel */
  .reel-slide.active {
    display: block;
    transform: scale(1);
    opacity: 1;
  }

  .iphone-frame {
    width: 200px;
    height: 400px;
    border-width: 8px;
    border-radius: 32px;
  }

  .reel-arrows {
    margin-top: 25px;
    gap: 30px;
  }

  .reel-arrow {
    font-size: 32px;
  }
}



/* ================= CONTACT SECTION ================= */
.mr-contact-parallax{
    display:flex;
    width:100%;
    min-height:100vh;
    background:#ffffff;
}

/* ================= LEFT STATIC IMAGE ================= */
.mr-contact-image{
    width:50%;   /* EXACT HALF */
    background-image:url('media/contact.png');
    background-size:cover;
    background-repeat:no-repeat;
    background-position:left center;  
    background-attachment:scroll;      
}

/* ================= RIGHT FORM WRAPPER ================= */
.mr-contact-form-wrap{
    width:50%;   /* EXACT HALF */
    padding:120px 80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#ffffff;
}

/* ================= HEADING ================= */
.mr-contact-form-wrap h2{
    font-size:58px;
    margin-bottom:50px;
    color:#1c2d70;
    font-weight:600;
}

/* ================= FORM ================= */
.mr-contact-form{
    max-width:520px;
}

/* FORM ROWS */
.mr-form-row{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

/* FORM GROUP */
.mr-form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.mr-form-group.full{
    width:100%;
    margin-bottom:45px;
}

/* LABEL */
.mr-form-group label{
    font-size:14px;
    color:#1c2d70;
    margin-bottom:8px;
    letter-spacing:0.5px;
}

/* INPUTS & TEXTAREA */
.mr-form-group input,
.mr-form-group textarea{
    border:none;
    border-bottom:1px solid #1c2d70;
    padding:8px 4px;
    font-size:14px;
    outline:none;
    background:transparent;
    color:#1c2d70;
}

/* INPUT FOCUS */
.mr-form-group input:focus,
.mr-form-group textarea:focus{
    border-bottom:1px solid #000;
}

/* ================= BUTTON ================= */
.mr-contact-form button{
    border:1px solid #1c2d70;
    background:transparent;
    padding:14px 50px;
    border-radius:30px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
    color:#1c2d70;
}

.mr-contact-form button:hover{
    background:#1c2d70;
    color:#fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .mr-contact-parallax{
        flex-direction:column;
    }

    .mr-contact-image{
        width:100%;
        height:320px;
        background-position:center center;
        background-attachment:scroll; /* Mobile safe */
    }

    .mr-contact-form-wrap{
        width:100%;
        padding:80px 40px;
        align-items:center;
    }

    .mr-contact-form-wrap h2{
        font-size:42px;
        text-align:center;
    }

    .mr-form-row{
        flex-direction:column;
        gap:25px;
    }

    .mr-contact-form{
        width:100%;
    }
}



   /* ================= BLOG SECTION ================= */
.mrz-blog-section{
    padding:120px 80px;
    background:#fffdee;
    text-align:center;
}

/* TITLE */
.mrz-blog-title{
    font-size:52px;
    margin-bottom:60px;
    font-weight:700;
    color:#111;
}

/* GRID */
.mrz-blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
    max-width:1200px;
    margin:0 auto;
}

/* CARD */
.mrz-blog-card{
    background:#fafafa;
    border-radius:6px;
    overflow:hidden;
    text-align:left;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.mrz-blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.mrz-blog-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* CONTENT */
.mrz-blog-content{
    padding:25px 25px 30px;
}

.mrz-blog-content h3{
    font-size:22px;
    margin-bottom:12px;
    color:#111;
}

.mrz-blog-content p{
    font-size:15px;
    line-height:1.6;
    color:#555;
    margin-bottom:18px;
}

/* READ MORE */
.mrz-blog-content a{
    text-decoration:none;
    font-size:14px;
    color:#000;
    font-weight:600;
    transition:0.3s;
}

.mrz-blog-content a:hover{
    letter-spacing:0.5px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
    .mrz-blog-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:700px){
    .mrz-blog-section{
        padding:80px 30px;
    }

    .mrz-blog-title{
        font-size:38px;
    }

    .mrz-blog-grid{
        grid-template-columns:1fr;
    }
}


   /* ================= CTA SECTION ================= */
.mrz-cta-wrap{
    background:#ebebeb;
    padding:120px 0 140px;
    position:relative;
    text-align:center;
}

/* TITLE */
.mrz-cta-title{
    color:#242424;
    font-size:64px;
    letter-spacing:2px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

/* PEACH BOX */
.mrz-cta-box{
    background:#001f55;
    color: #fff;
    max-width:1200px;
    margin:0 auto;
    padding:70px 80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
}

/* LEFT TEXT */
.mrz-cta-text{
    max-width:420px;
    text-align:left;
    font-size:16px;
    line-height:1.6;
    color:#ffffff;
}

/* FORM */
.mrz-cta-form{
    width:100%;
    max-width:500px;
    text-align:left;
}

/* LABEL */
.mrz-cta-form label{
    font-size:14px;
    display:block;
    margin-bottom:8px;
}

/* INPUT */
.mrz-cta-form input[type="email"]{
    width:100%;
    padding:14px;
    border:2px solid #ffffff;
    outline:none;
    font-size:14px;
    margin-bottom:15px;
}

/* BOTTOM ROW */
.mrz-cta-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* CHECKBOX */
.mrz-checkbox{
    display:flex;
    align-items:center;
    font-size:13px;
    cursor:pointer;
}

.mrz-checkbox input{
    display:none;
}

.mrz-checkbox span{
    width:18px;
    height:18px;
    border:2px solid #ffffff;
    margin-right:10px;
    display:inline-block;
    position:relative;
}

.mrz-checkbox input:checked + span::after{
    content:"";
    width:10px;
    height:10px;
    background:#ffffff;
    position:absolute;
    top:2px;
    left:2px;
}

/* BUTTON */
.mrz-cta-form button{
    padding:12px 35px;
    border:2px solid #000;
    background:#fff;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}

.mrz-cta-form button:hover{
    background:#000;
    color:#fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .mrz-cta-box{
        flex-direction:column;
        text-align:center;
        padding:60px 40px;
    }

    .mrz-cta-text{
        text-align:center;
    }

    .mrz-cta-title{
        font-size:44px;
        margin-bottom:15px;
    }

    .mrz-cta-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}


    .singer-footer {
  background: linear-gradient(135deg, #ffffff, #f6f6f6);
  color: #000000;
  padding: 80px 0 0;
  font-family: 'Poppins', sans-serif;
}

/* MAIN LAYOUT */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* BRAND */
.footer-logo {
  width: 160px;
  margin-bottom: 0px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #a9a9a9;
  border-color: #001f55;
}


/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-tour h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000000;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #001f55;
}

/* TOUR */
.footer-tour p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000000;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000000;
}

/* NEWSLETTER */
.newsletter-title {
  margin-top: 25px;
}

.footer-newsletter {
  display: flex;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #ebebeb;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
  background: #001f55;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #0f316c;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    border-radius: 4px;
    margin-bottom: 8px;
  }
}




  /* ================= PHOTO GALLERY ================= */
.mrz-gallery-section{
  padding:120px 0;
  background:#ffffff;
  text-align:center;
}

.mrz-gallery-header h2{
  font-size:52px;
  font-weight:600;
  margin-bottom:10px;
  color:#111;
}

.mrz-gallery-header p{
  color:#666;
  margin-bottom:50px;
}

/* FILTERS */
.mrz-gallery-filters{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.mrz-filter-btn{
  padding:10px 28px;
  border:1px solid #111;
  background:transparent;
  cursor:pointer;
  font-size:14px;
  transition:0.3s;
  border-radius:30px;
}

.mrz-filter-btn.active,
.mrz-filter-btn:hover{
  background:#111;
  color:#fff;
}

/* GRID */
.mrz-gallery-grid{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

/* ITEM */
.mrz-gallery-item{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:0.4s;
}

.mrz-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.4s;
}

/* HOVER */
.mrz-gallery-item:hover img{
  transform:scale(1.08);
}

/* HIDE */
.mrz-gallery-item.hide{
  display:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .mrz-gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .mrz-gallery-header h2{
    font-size:38px;
  }
}

@media(max-width:600px){
  .mrz-gallery-grid{
    grid-template-columns:1fr;
  }
}


/* ==============================
   MRZ PREMIUM SERVICES (LIGHT)
================================ */

.mrz-services-section {
    padding: 90px 8%;
    background: #f7f8fc;
    color: #111;
    font-family: 'Poppins', sans-serif;
}

.mrz-services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.mrz-services-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #111;
}

.mrz-services-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

/* Grid → 2 cards per row */
.mrz-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.mrz-service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    padding: 36px 32px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mrz-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(106,92,255,0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mrz-service-card:hover::before {
    opacity: 1;
}

.mrz-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: rgba(106,92,255,0.35);
}

/* Icon */
.mrz-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a5cff, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(106,92,255,0.35);
}

/* Headings */
.mrz-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.mrz-card-tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

/* List */
.mrz-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mrz-service-card ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.mrz-service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6a5cff;
    font-size: 18px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .mrz-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mrz-services-title {
        font-size: 32px;
    }

    .mrz-services-section {
        padding: 70px 6%;
    }
}



html {
    scroll-behavior: smooth;
}

.btn {
    text-decoration: none;
}










/* ================= MOBILE HEADER ================= */
.mrz-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    background: rgb(0 0 0 / 0%);
    backdrop-filter: blur(50px);
}

/* LOGO */
.mrz-logo{
    color:#fff;
    font-size:16px;
    font-weight:600;
    max-width:70%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* HAMBURGER */
.mrz-hamburger{
    width:28px;
    height:20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index:10001;
}

.mrz-hamburger span{
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:0.3s;
}

/* ================= MOBILE MENU ================= */
.mrz-mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:0.4s ease;
    z-index:9999;
}

/* ACTIVE STATE */
.mrz-mobile-menu.active{
    right:0;
}

/* MENU LIST */
.mrz-mobile-menu ul{
    list-style:none;
    padding:0;
    margin:0;
    text-align:center;
}

.mrz-mobile-menu li{
    margin:20px 0;
}

.mrz-mobile-menu a{
    color:#fff;
    font-size:22px;
    text-decoration:none;
}

/* HAMBURGER ANIMATION */
.mrz-hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px, 5px);
}
.mrz-hamburger.active span:nth-child(2){
    opacity:0;
}
.mrz-hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px, -6px);
}

/* SHOW ONLY ON MOBILE */
@media(max-width:768px){
    .mrz-header{
        display:flex;
    }
}

/* EXTRA SMALL PHONES */
@media(max-width:480px){
    .mrz-logo{
        font-size:14px;
        max-width:65%;
    }
}


    /* ================= FAQ SECTION ================= */
.mrz-faq-section{
    padding:120px 80px;
    background:#f8f8f8;
    text-align:center;
}

/* TITLE */
.mrz-faq-title{
    font-size:52px;
    margin-bottom:60px;
    font-weight:700;
    color:#111;
}

/* CONTAINER */
.mrz-faq-container{
    max-width:900px;
    margin:0 auto;
    text-align:left;
}

/* ITEM */
.mrz-faq-item{
    border-bottom:1px solid #ddd;
    padding:25px 0;
}

/* QUESTION */
.mrz-faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#111;
    transition:0.3s;
}

.mrz-faq-question:hover{
    color:#000;
}

/* ICON */
.mrz-faq-icon{
    font-size:26px;
    font-weight:300;
    transition:0.3s;
}

/* ANSWER */
.mrz-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

.mrz-faq-answer p{
    margin-top:15px;
    font-size:16px;
    line-height:1.7;
    color:#555;
}

/* ACTIVE */
.mrz-faq-item.active .mrz-faq-answer{
    max-height:200px;
}

.mrz-faq-item.active .mrz-faq-icon{
    transform:rotate(45deg);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .mrz-faq-section{
        padding:80px 30px;
    }

    .mrz-faq-title{
        font-size:38px;
    }

    .mrz-faq-question{
        font-size:18px;
    }
}




/* HEADER LOGO (MOBILE) */
.mrz-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* DESKTOP TOP LOGO */
.top-logo {
    position: absolute;     /* place freely */
    top: 20px;              /* distance from top */
    /* right: 300px;  */
    left: 1300px;           /* distance from right */
    z-index: 9999;
}

.top-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* SIDEBAR LOGO */
.sidebar-logo {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-logo img {
    height: 70px;
    width: auto;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .top-logo {
        display: none; /* Hide desktop logo on mobile */
    }

    .mrz-logo img {
        height: 35px;
    }
}








/* SECTION WRAPPER (PARALLAX BG ADDED) */
.service-section{
    position:relative;
    padding:80px 60px 80px 110px; /* LEFT SPACE for fixed menu */
    background:url("media/hero.JPG") center/cover no-repeat fixed;
    overflow:hidden;
}

/* DARK OVERLAY FOR READABILITY */
.service-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:0;
}

/* KEEP ALL CONTENT ABOVE OVERLAY */
.service-section *{
    position:relative;
    z-index:1;
}

/* HEADER */
.service-header{
    text-align:center;
    margin-bottom:50px;
}

/* MAIN HEADING */
.service-heading{
    font-size:42px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:10px;
}

/* SUB HEADING */
.service-subheading{
    font-size:16px;
    color:#dddddd;
    max-width:520px;
    margin:0 auto;
    line-height:1.6;
}

/* GRID */
.service-cards{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

/* CARD */
.service-card{
    position:relative;
    height:220px;
    perspective:1000px;
}

/* INNER SIDES */
.service-card > div{
    position:absolute;
    width:100%;
    height:100%;
    backface-visibility:hidden;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:0.6s;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* FRONT */
.card-front{
    background:rgba(255,255,255,0.95);
    text-align:center;
}

.card-front i{
    font-size:70px;   /* BIG ICON */
    color:#001f55;
    margin-bottom:16px;
    line-height:1;
}

.card-front h3{
    font-size:18px;
    color:#111;
    font-weight:600;
}

/* BACK */
.card-back{
    background:linear-gradient(135deg, rgba(75,0,163,0.95), rgba(122,0,204,0.95));
    color:#ffffff;
    transform:rotateY(180deg);
    text-align:center;
    font-size:13px;
    line-height:1.6;
}

/* HOVER EFFECT */
.service-card:hover .card-front{
    transform:rotateY(180deg);
}

.service-card:hover .card-back{
    transform:rotateY(360deg);
}

/* RESPONSIVE */
@media(max-width:1200px){
    .service-cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:900px){
    .service-section{
        padding:70px 40px;
        background-attachment:scroll; /* Disable parallax on mobile */
    }

    .service-heading{
        font-size: 30px;
    }
}

@media(max-width:600px){
    .service-cards{
        grid-template-columns:1fr;
    }
}




/* ================================
   SINGER BOOKING CTA SECTION
================================ */
.cs-dual-cta {
  position: relative;
  width: 100%;
  background: #e5dfe1;
  padding: 50px 40px;
  font-family: "Poppins", sans-serif;
}

/* Container */
.cs-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Box */
.cs-cta-box {
  width: 100%;
}

/* Horizontal layout */
.cs-cta-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* Image */
.cs-cta-image {
  width: 220px;
  max-width: 100%;
}

/* Text */
.cs-cta-text {
  max-width: 560px;
}

.cs-cta-text h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000;
}

.cs-cta-text h4 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #000;
}

.cs-cta-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}

/* Main Button */
.cs-cta-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 7px;
  border: 2px solid #000;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-cta-btn:hover {
  background: #000;
  color: #fff;
}

/* ================================
   RIGHT SIDE CTA
================================ */
.cs-right-cta {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.cs-right-cta-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 7px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-right-cta-btn:hover {
  background: #000;
  color: #fff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .cs-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .cs-right-cta {
    display: none;
  }

  .cs-cta-text h2 {
    font-size: 34px;
  }
}



.mrt-testimonial-section {
    padding: 80px 20px;
    background: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mrt-service-header {
    text-align: center;
    margin-bottom: 60px;
}

.mrt-service-heading {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.mrt-service-subheading {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.mrt-testimonial-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.mrt-slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.mrt-slider-track {
    display: flex;
    transition: transform 0.6s ease;
    padding: 10px 5px;
}

.mrt-testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    margin: 0 10px;
    box-sizing: border-box;
}

.mrt-card-content {
    background: #eef3fb;
    padding: 35px 30px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-left: 4px solid #78c2a4;
}

.mrt-card-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mrt-testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 0;
    flex-grow: 1;
    min-height: 120px; /* Fixed minimum height for text area */
    position: relative;
    padding-left: 15px;
}

.mrt-testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #78c2a4;
    opacity: 0.3;
    position: absolute;
    left: -5px;
    top: -15px;
    font-family: Georgia, serif;
}

.mrt-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(120, 194, 164, 0.3);
    position: relative; /* Ensures consistent positioning */
}

.mrt-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mrt-user-info {
    display: flex;
    flex-direction: column;
}

.mrt-user-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.mrt-user-info span {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Navigation */
.mrt-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.mrt-slider-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.mrt-slider-nav button:hover {
    background: #78c2a4;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .mrt-testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .mrt-testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .mrt-service-heading {
        font-size: 2.2rem;
    }
    
    .mrt-testimonial-text {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .mrt-testimonial-section {
        padding: 60px 15px;
    }
    
    .mrt-card-content {
        padding: 25px 20px;
    }
    
    .mrt-testimonial-text {
        font-size: 16px;
        min-height: 90px;
    }
}







/* ===============================
   FLOATING WHATSAPP BUTTON
================================ */

.wa-float-btn {
  position: fixed;
  right: 22px;
  bottom: 80px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float-btn i {
  color: #ffffff;
  font-size: 30px;
}

.wa-float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .wa-float-btn {
    width: 52px;
    height: 52px;
    right: 9px;
    bottom: 75px;
  }

  .wa-float-btn i {
    font-size: 26px;
  }
}




/* ========================= */
/* Bottom Bar */
/* ========================= */

.bottom-bar{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#eeeeee;
  padding:16px 40px;
  z-index:9999;
  box-shadow:0 -4px 20px rgba(0,0,0,0.2);
  font-family:Arial;
}

/* Close Button */
.bottom-bar-close{
  position:absolute;
  top:10px;
  right:15px;
  border:none;
  background:none;
  font-size:22px;
  cursor:pointer;
  z-index:10;
}

/* Layout */
.bottom-bar-content{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
}

/* Text */
.bottom-bar-text{
  font-size:18px;
  font-weight:600;
  color:#333;
}

/* Button */
.bottom-bar-btn{
  background:#f4c430;
  color:#000;
  text-decoration:none;
  padding:14px 30px;
  border-radius:6px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:16px;
  transition:0.3s;
}

.bottom-bar-btn:hover{
  background:#e6b800;
}

/* ========================= */
/* Mobile Responsive */
/* ========================= */

@media (max-width:768px){

  .bottom-bar{
    padding:14px 16px;
  }

  .bottom-bar-content{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .bottom-bar-text{
    font-size:15px;
    line-height:1.4;
  }

  .bottom-bar-btn{
    width:100%;
    justify-content:center;
    font-size:14px;
  }

}












/* ===== Overlay ===== */
.singerX-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* ===== Split Layout ===== */
.singerX-popup-split {
  display: flex;
  width: 95%;
  max-width: 900px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg,#ffffff,#f3f3f3);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: relative;
}

/* ===== LEFT IMAGE ===== */
.singerX-left {
  width: 45%;
}

.singerX-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RIGHT FORM ===== */
.singerX-right {
  width: 55%;
  padding: 35px 30px;
}

/* ===== Close Button ===== */
.singerX-close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 26px;
  color: #000;
  cursor: pointer;
  z-index: 2;
}

/* ===== Title ===== */
.singerX-title {
  color: #000;
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 700;
}

/* ===== Inputs ===== */
.singerX-popup-box input,
.singerX-popup-box textarea,
.singerX-popup-box select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #000;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

/* ===== Focus ===== */
.singerX-popup-box input:focus,
.singerX-popup-box textarea:focus,
.singerX-popup-box select:focus {
  border-color: #f4c430;
  box-shadow: 0 0 0 3px rgba(244,196,48,0.15);
}

/* ===== Submit Button ===== */
.singerX-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg,#f4c430,#ffd95a);
  font-weight: 700;
  cursor: pointer;
  font-size: 17px;
  color: #000;
  transition: 0.3s;
}

.singerX-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244,196,48,0.35);
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  /* Make popup full width */
  .singerX-popup-split {
    flex-direction: column;
    width: 95%;
  }

  /* ❌ HIDE IMAGE COMPLETELY */
  .singerX-left {
    display: none;
  }

  /* ✅ FULL WIDTH FORM */
  .singerX-right {
    width: 100%;
    padding: 25px 20px;
  }

  .singerX-title {
    font-size: 22px;
  }

}
