/* BASIC RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #2d1b1b);
    color: #f5f5f5;
}

/* nav .nav-bar */

.nav-bar{
    width: 100%;
    height: 66px;
        background: rgba(128, 0, 32, 0.7);
        display: flex;
        align-items: center;
        justify-content: space-between;
}
h3{
    color: #fff;
    margin: 40px;
    font-size: 28px;
    border: 1px solid #fff;
    padding: 5px 8px;
    border-radius: 7px;
}
ul li{
list-style: none;
display: inline-block;
margin: 0% 20px;
cursor: pointer;
}

ul li :hover{
    text-decoration: underline;
    text-underline-offset: 4px;
}

.main-menu{
    margin-right: 30px;
}

.closebtn, .menubtn{
    font-size: 28px ;
    margin: 0px 20px;
    display: none;
    
}

/* ............CSS Media Queries.......... */
@media only screen and (max-width: 700px) {
    ul{
        display: none;
    }
ul li{
    display: block;
    margin: 20px;
}

    .menubtn{display: block;
    }

    h3{
        font-size: 24px;
    }
    #menu{ 
        width: 100%;
        background:rgba(128, 0, 32, 0.9);
        position: absolute;
        top: 66px;
        right: 0px;
        text-align: center;
    }
}

/* HERO */
.hero {
    height: 90vh;
    background: url('/img/banner.chandigarh\ escort.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 32, 0.7);
    pointer-events: none;
    /* So overlay doesn't block clicks */
}

.hero-content {
    position: relative;
    text-align: center;
    color: #ffd700;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #dc143c, #ff1493);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* SECTIONS */
.section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #1a1a1a, #3d1a1a);
    margin-bottom: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffd700;
}

.section h1 {
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ABOUT SECTION SPECIFIC */
#about h2,
#about h3 {
    background: linear-gradient(45deg, #dc143c, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Left Content */
.content {
    flex: 1;
    color: white;
}

.content h3 {
    color: #a8ff78;
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

/* Button */

/* Image Box */
.image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-box img {
    width: 300px;
    height: 450px;
    object-fit: cover;
    border: 5px solid #ff4fd8;
    border-radius: 10px;
}

/* LEFT IMAGE */
.escort-image img {
    width: 320px;
    border: 5px solid #ff4dd2;
    border-radius: 10px;
}

/* RIGHT TEXT */
.escort-content {
    max-width: 600px;
    color: #fff;
}

.escort-content h2 {
    color: #aaff88;
    margin-bottom: 15px;
}

.escort-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .escort-section {
        flex-direction: column;
        text-align: center;
    }

    .escort-image img {
        width: 90%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .image-box img {
        width: 80%;
        height: auto;
    }
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.5);
}

.gallery-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-card h3 {
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 1.2rem;
}

.gallery-card p {
    color: #f5f5f5;
    line-height: 1.6;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

th,
td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

th {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    font-weight: 600;
}

.btn-small {
    padding: 10px 20px;
    background: linear-gradient(45deg, #dc143c, #ff1493);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-block;
}

.btn-small:hover {
    background: linear-gradient(45deg, #b22222, #c71585);
}

/* PROFILE GRID */

.profile {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.profile:hover {
    transform: translateY(-5px);
}

.profile img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.profile h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ffd700;
}

/* TEAM SECTION SPECIFIC */
#profiles {
    background: linear-gradient(135deg, #2d1b1b, #4a1a1a);
    position: relative;
    overflow: hidden;
}

#profiles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.team-profiles {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
}

.team-profiles .profile {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s;
}

.team-profiles .profile:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.5);
    border-color: #ffd700;
}

.team-profiles .profile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.profile-text {
    flex: 1;
}

.profile-text h3 {
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 1.5rem;
}

.profile-text p {
    margin: 5px 0;
    color: #f5f5f5;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 20px;
    }

    .profile-card img {
        height: 150px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 36px;
    }

    .gallery-card img {
        height: 300px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .btn-small {
        width: min(100%, 320px);
        text-align: center;
    }
}

/* CONTACT */
.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #4a148c, #7b1fa2);
    color: #e1bee7;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== FORCE FAQ CSS (FINAL FIX) ===== */

.section.faq-section {
    background: #111 !important;
    padding: 60px 20px !important;
}

.section.faq-section h2 {
    color: #00ffcc !important;
    text-align: center;
}

.section.faq-section .faq-item {
    background: #222 !important;
    border: 2px solid red !important;
    /* test border */
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.section.faq-section .faq-item h3 {
    color: yellow !important;
}

.section.faq-section .faq-item p {
    color: white !important;
}

.location-section {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.location-section h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.location-links a {
    text-decoration: none;
    background: #ff4d4d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.location-links a:hover {
    background: #ff1a1a;
    transform: scale(1.05);
}

/* ===== FIXED ESCORT SECTION (OVERRIDE OLD CSS) ===== */

.escort-section {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    background: linear-gradient(135deg, #1a1a1a, #3d1a1a) !important;
    padding: 40px !important;
    flex-wrap: wrap !important;
    border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
    border-radius: 10px !important;
}

/* IMAGE */
.escort-image img {
    width: 300px;
    height: 450px;
    object-fit: cover;
    border: 5px solid #ff4fd8;
    border-radius: 10px;
}
/* TEXT */
.escort-content {
    max-width: 600px;
    color: #f5f5f5;
}

.escort-content h2 {
    color: #f11818 !important;
    margin-bottom: 15px;
}

.escort-content p {
    color: #e0e0e0 !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .escort-section {
        flex-direction: column !important;
        text-align: center;
    }

    .escort-image img {
        width: 300px!important;
    }
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tags a {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.tags a:hover {
    background: #ff4d6d;
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
