

/* ======================================================
   INDEX HERO BANNER START
====================================================== */

p a{
    text-decoration: none;
    color: #ff3b93;
}

.index-hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("../imagess/e.webp")
        center / cover no-repeat;
    overflow: hidden;
}

.index-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.index-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

/* TAGLINE */
.index-hero-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff3d6b;
    margin-bottom: 12px;
}

/* TITLE */
.index-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.index-hero-title span {
    color: #ff3d6b;
}

/* TEXT */
.index-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTONS */
.index-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.index-btn-primary {
    background: linear-gradient(135deg, #ff3d6b, #ff004c);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 107, 0.4);
}

.index-btn-outline {
    border: 1px solid #ff3d6b;
    color: #ff3d6b;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-outline:hover {
    background: #ff3d6b;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-hero-title {
        font-size: 38px;
    }

    .index-hero-text {
        font-size: 15px;
    }
}

/* ======================================================
   INDEX HERO BANNER END
====================================================== */


/* ======================================================
   GALLERY INTRO CONTENT START
====================================================== */
.gallery-intro-section{
    padding:70px 15px 40px;
    background:#0b0f1a;
}

.gallery-intro-title{
    color:#ffd166;
    font-size:32px;
    font-weight:700;
    text-align:center;
    margin-bottom:25px;
}

.gallery-intro-text{
    color:#d0d0d0;
    font-size:16px;
    line-height:1.8;
    max-width:900px;
    margin:0 auto 18px;
    text-align:center;
}
/* ======================================================
   GALLERY INTRO CONTENT END
====================================================== */




/* ================= GALLERY SECTION START ================= */
.gallery-section{
    padding:0px 15px;
}
.gallery-section h2{
    padding:70px 15px;
    color: #ffd166;
}

/* CARD */
.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,0.5);
}

.gallery-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:0.5s ease;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#0c0d0f;
    padding:15px;
}

/* NAME & AGE */
.gallery-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}

.gallery-name{
    font-size:18px;
    font-weight:700;
    color:#fff;
}

.gallery-age{
    font-size:14px;
    color:#f39c12;
}

/* BUTTONS */
.gallery-action{
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.gallery-btn{
    flex:1;
    text-align:center;
    padding:8px 0;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    border-radius:4px; /* RECTANGLE */
}

.call-btn{
    background:#de2b10;
}

.whatsapp-btn{
    background:#1ebe59;
}

.gallery-btn:hover{
    opacity:0.85;
}


/* RESPONSIVE */
@media(max-width:768px){
    .gallery-card img{
        height:380px;
    }
}
/* ================= GALLERY SECTION END ================= */




/* ======================================================
   GALLERY TRUST CONTENT START
====================================================== */
.gallery-trust-section{
    padding:60px 15px;
    background:#11152a;
}

.gallery-trust-box{
    background:#ffffff;
    border-radius:16px;
    padding:35px 25px;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    height:100%;
}

.gallery-trust-box h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    color:#ff3d6b;
}

.gallery-trust-box p{
    font-size:15px;
    line-height:1.6;
    color:#444;
}
/* ======================================================
   GALLERY TRUST CONTENT END
====================================================== */



/* ================= GALLERY FLIP SECTION START ================= */
.gallery-flip-section{
    padding:80px 15px;
    background-color: #a02d61;
}

.gallery-flip-card{
    perspective:1200px;
}

.gallery-flip-inner{
    position:relative;
    width:100%;
    height:460px;
    transition:0.8s;
    transform-style:preserve-3d;
}

.gallery-flip-card:hover .gallery-flip-inner{
    transform:rotateY(180deg);
}

.gallery-flip-front,
.gallery-flip-back{
    position:absolute;
    width:100%;
    height:90%;
    backface-visibility:hidden;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.6);
}

.gallery-flip-front{
    background:#a02d61;
    text-align:center;
    padding:15px;
}

.gallery-name{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.gallery-flip-front img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
}

.gallery-meta{
    display:flex;
    justify-content:space-between;
    margin-top:12px;
    font-size:14px;
}

.gallery-category{
    color:#f39c12;
}

.gallery-price{
    color:#1ebe59;
    font-weight:600;
}

.gallery-flip-back{
    background:linear-gradient(135deg,#ff3d6b,#ff004c);
    color:#fff;
    padding:30px;
    transform:rotateY(180deg);
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
}

.gallery-flip-back h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.gallery-flip-back p{
    font-size:15px;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
    .gallery-flip-inner{
        height:520px;
    }

    .gallery-flip-front img{
        height:340px;
    }
}
/* ================= GALLERY FLIP SECTION END ================= */



/* ======================================================
   GALLERY CTA SECTION START
====================================================== */
.gallery-cta-section{
    padding:80px 15px;
    background:linear-gradient(135deg,#ff3d6b,#ff004c);
    color:#fff;
}

.gallery-cta-title{
    font-size:34px;
    font-weight:800;
    margin-bottom:15px;
}

.gallery-cta-text{
    font-size:16px;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.7;
}

.gallery-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.gallery-cta-btn{
    padding:14px 36px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
    color:#fff;
}

.gallery-cta-btn.call{
    background:#000;
}

.gallery-cta-btn.whatsapp{
    background:#1ebe59;
}
/* ======================================================
   GALLERY CTA SECTION END
====================================================== */



/* ======================================================
   GALLERY SEO CONTENT START
====================================================== */
.gallery-seo-section{
    padding:70px 15px;
    background:#0b0f1a;
}

.gallery-seo-title{
    color:#ffd166;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.gallery-seo-text{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.8;
    margin-bottom:15px;
}
/* ======================================================
   GALLERY SEO CONTENT END
====================================================== */





