/* ==================== BASIC RESET ==================== */

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    background: linear-gradient(to bottom, #0a0000 0%, #1a0005 100%) !important;
    color: #f0f0f0;
    position: relative;
    line-height: 1.6;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*,
:after,
:before {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus {
    outline: 0;
}

.brand-sec span {
    display: block;
    text-align: center;
    font-family: "Open Sans";
    color: #fff;
    position: absolute;
    font-weight: bold;
}

.brnd-tag {
    font-size: 25px;
    top: 10%;
    display: inline-flex;
    left: 0;
    right: 0;
    justify-content: center;
    text-shadow: 2px 2px 2px #000;
}

.brnd-name {
    font-size: 60px;
    top: 25%;
    color: #ff7801 !important;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    display: inline-flex;
    left: 0;
    right: 0;
    justify-content: center;
    font-family: "Open Sans";
    font-weight: bold;
    text-shadow: 2px 2px 2px #000;
}

.slog {
    font-size: 30px;
    letter-spacing: 1px;
    top: 44%;
    text-align: center;
    position: absolute;
    left: 0;
    display: inline-flex;
    right: 0;
    justify-content: center;
    text-shadow: 2px 2px 2px #000;
}

.call {
    font-size: 50px;
    top: 65%;
    text-align: center;
    position: absolute;
    left: 0;
    display: inline-flex;
    right: 0;
    justify-content: center;
    text-shadow: 2px 2px 2px #000;
}

.call a {
    color: #ff7801;
    text-shadow: 2px 2px 2px #000;
}

.call a:hover {
    color: #fff;
}

.brand-sec {
    position: relative;
    text-align: center;
    height: 395px;
}

/* ==================== CONTAINER & GRID ==================== */

.container {
    width: 1170px;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}

.col-md-12 {
    width: 100%;
}

.col-md-8 {
    width: 66.66666667%;
}

.col-md-4 {
    width: 33.33333333%;
}

.spacer-single {
    clear: both;
    height: 20px;
    width: 100%;
}

/* ==================== HEADER (Modified) ==================== */

.main-header {
    background: rgba(26, 0, 0, 0.97);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

/* Call Button */

.call-btn {
    color: #ff3366;
    font-size: 1.45rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    color: #ff6699;
}

/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-line {
    width: 30px;
    height: 3.5px;
    background: #ff3366;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Navigation */

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: #fff;
    font-size: 1.06rem;
    padding: 8px 14px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #ff3366;
}

/* ==================== MOBILE MENU ==================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #1a0000;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    #nav-toggle:checked~.main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
    }
    .nav-list li a {
        padding: 16px 0;
        font-size: 1.15rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 90%;
        text-align: center;
    }
}

/* ==================== GIRLS PROFILE GRID (Circular + Modern) ==================== */

.girls-profile-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin: 30px 0;
}

.girls-list {
    width: 23.5%;
    background: #1a0000;
    border: 3px solid #400000;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.25);
    transition: all 0.4s ease;
    overflow: hidden;
}

.girls-list:hover {
    border-color: #ff3366;
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 20px 35px rgba(255, 51, 102, 0.4);
}

.girl-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ff3366;
    display: block;
}

.info {
    padding: 15px 8px 10px;
    text-align: center;
    background: #0f0000;
    border-radius: 0 0 50% 50%;
}

.info span {
    display: block;
    font-size: 14.8px;
    margin-bottom: 7px;
    color: #ddd;
}

.info .city-name {
    color: #ffcc66;
    font-weight: 700;
    font-size: 15.5px;
}

/* ==================== OTHER ESCORTS GALLERY (Circular) ==================== */

.other-escorts-cont {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 0;
}

.other-escorts-cont-img {
    width: 19%;
    padding: 6px;
}

.other-escorts-img {
    border: 4px solid #ff3366;
    border-radius: 50%;
    overflow: hidden;
}

.other-escorts-img img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.other-escorts-title {
    background: #ff3366;
    color: #000 !important;
    font-weight: bold;
    text-align: center;
    padding: 6px 0;
    font-size: 15px;
    margin-top: 8px;
    border-radius: 6px;
}

/* ==================== WELCOME / CONTENT SECTION ==================== */

.welcome {
    background: linear-gradient(135deg, #2b0000 0%, #0a0000 100%);
    padding: 45px 30px;
    margin-bottom: 40px;
    border-radius: 12px;
}

.text-area h2,
.text-area h3 {
    color: #ff3366 !important;
    text-transform: uppercase;
    font-weight: 800;
}

.text-area p {
    color: #e8e8e8;
    font-size: 15.2px;
    line-height: 24px;
    font-weight: 500;
}

.text-area a {
    color: #ff3366;
    font-weight: 700;
}

.text-area a:hover {
    color: #ff99aa;
}

/* ==================== FOOTER (Modified - Premium) ==================== */

footer {
    background: linear-gradient(to bottom, #1a0000 0%, #2b0000 60%, #400000 100%);
    border-top: 6px solid #ff3366;
    padding: 60px 0 35px 0;
}

.menu-footer-navigation {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.menu-footer-navigation li a {
    color: #ffccaa;
    font-size: 0.92rem;
    padding: 8px 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.menu-footer-navigation li a:hover {
    color: #ff3366;
    transform: translateY(-3px);
}

.right {
    text-align: center;
    color: #aaa;
    font-size: 13.8px;
    margin-top: 15px;
}

.right a {
    color: #ff3366;
}

.right a:hover {
    color: #ff99aa;
}

/* ==================== FAQ ACCORDION ==================== */

.accordion {
    background: #1a0000;
    border: 2px solid #ff3366;
    color: #fff;
    padding: 18px 22px;
    width: 100%;
    border-radius: 8px;
    font-size: 15.5px;
    cursor: pointer;
    transition: 0.3s;
}

.accordion:after {
    content: '\002B';
    float: right;
    font-weight: bold;
}

.panel {
    padding: 0 22px;
    background: #0f0000;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    margin-bottom: 12px;
    border: 2px solid #ff3366;
    border-radius: 8px;
}

/* ==================== RESPONSIVE (Mobile) - Full Coverage ==================== */

@media (max-width: 1199px) {
    .container {
        width: 970px;
    }
}

@media (max-width: 991px) {
    .container {
        width: 750px;
    }
    .girls-list {
        width: 31.5%;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }
    .girls-list {
        width: 48%;
    }
    .girl-img img {
        height: 190px;
    }
    .other-escorts-cont-img {
        width: 45%;
    }
    .menu-footer-navigation {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 499px) {
    .girls-list {
        width: 100%;
        max-width: 290px;
        margin: 0 auto 30px;
    }
    .girl-img img {
        height: 210px;
    }
    .other-escorts-cont-img {
        width: 100%;
        max-width: 260px;
    }
    .text-area h2,
    .text-area h3 {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }
    .welcome {
        padding: 30px 15px;
    }
}

/* ==================== NOW CALLING / FLOATING BAR ==================== */

.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6);
    font-family: "Open Sans", sans-serif;
}

/* Desktop Version */

.lcol,
.rcol {
    float: left;
    width: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.lcol a,
.rcol a {
    display: block;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

/* Left - Call Button */

.lcol {
    background: linear-gradient(to right, #c8102e, #e63939);
}

.lcol:hover {
    background: linear-gradient(to right, #a50d24, #c8102e);
}

/* Right - WhatsApp Button */

.rcol {
    background: linear-gradient(to right, #ff6600, #ff8c00);
}

.rcol:hover {
    background: linear-gradient(to right, #e65c00, #ff6600);
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 768px) {
    .nowcalling {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .lcol,
    .rcol {
        padding: 6px 0;
    }
    .lcol a,
    .rcol a {
        font-size: 1.02rem;
        padding: 4px 0;
    }
}

@media (max-width: 480px) {
    .lcol a,
    .rcol a {
        font-size: 0.98rem;
    }
}