:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #5eead4;
    --accent: #f43f5e;
    --accent-dark: #be123c;
    --bg: #ffffff;
    --bg-light: #fdfdfd;
    --bg-gray: #f9fafb;
    --border: #e5e7eb;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --link: #0d9488;
    --link-hover: #0f766e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo h4 {
    font-size: clamp(1.6rem, 5vw, 1.9rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.8px;
}

.logo h4:hover {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav_links ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav_links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav_links a:hover {
    color: var(--primary);
}

.banner {
    height: 80vh;
    min-height: 480px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/bnr1.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    width: 100%;
}

.banner-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.banner h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.banner p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 1.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    margin: 0 8px 12px;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.btn.call {
    background: var(--primary);
    color: white;
}

.btn.whatsapp {
    background: #25D366;
    color: white;
}

.btn:hover {
    background: var(--primary-dark);
}

section {
    padding: 50px 0;
}

h1, h2, h3 {
    color: var(--primary);
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin: 1.6rem 0 0.8rem;
}

.about {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.about p {
    margin-bottom: 1rem;
}

.escort-profiles {
    background: var(--bg-gray);
    padding: 50px 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.profile-item {
    text-align: center;
}

.profile-img-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 0.8rem;
    border-radius: 2px;
    overflow: hidden;
    border: 3px solid var(--accent);
    position: relative;
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-position {
    position: absolute;
    top: -8px;
    right: -14px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-name-box h3 {
    font-size: 1.25rem;
    margin: 0.3rem 0;
    color: var(--text-primary);
}

.category-text {
    color: var(--primary);
    font-size: 0.9rem;
}

.profile-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 0.3rem;
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.95rem;
}

th, td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.faq-container {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.faq-item {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 0;
    background: none;
    border: none;
    font-size: 1.15rem;
    color: var(--primary);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-answer {
    display: none;
    padding-bottom: 1.2rem;
    color: var(--text-light);
}

footer {
    background: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.nowcalling {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 90vw;
}

.nowcalling a {
    padding: 10px 20px;
    border-radius: 2px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nowcalling .lcol {
    background: #ef4444;
}

.nowcalling .rcol {
    background: #25D366;
}

/* Responsive Media Queries (Mobile-first) */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .banner h2 {
        font-size: clamp(2.8rem, 7vw, 3.5rem);
    }
    .profiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.2rem;
    }
    .profile-img-wrap {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 0;
        flex-wrap: wrap;
    }
    .nav_links ul {
        display: none; /* Hide desktop menu - add hamburger if needed */
    }
    .banner {
        min-height: 400px;
    }
    .banner h2 {
        font-size: 2.8rem;
    }
    .banner p {
        font-size: 1.1rem;
    }
    .btn {
        padding: 8px 20px;
        margin: 6px;
        font-size: 0.9rem;
    }
    section {
        padding: 40px 0;
    }
    h2 {
        font-size: 2rem;
    }
    .profile-name-box h3 {
        font-size: 1.15rem;
    }
    table {
        font-size: 0.85rem;
    }
    th, td {
        padding: 8px;
    }
    .nowcalling {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .banner h2 {
        font-size: 2.2rem;
    }
    .banner p {
        font-size: 1rem;
    }
    .btn {
        padding: 8px 16px;
        margin: 4px;
        width: 100%;
        text-align: center;
    }
    .profiles-grid {
        gap: 1rem;
    }
    .profile-img-wrap {
        width: 120px;
        height: 120px;
    }
    .profile-name-box h3 {
        font-size: 1rem;
    }
    .category-text, .profile-number {
        font-size: 0.85rem;
    }
    .faq-question {
        font-size: 1.05rem;
    }
}

/* Prevent horizontal overflow on small screens */
html, body {
    overflow-x: hidden;
    width: 100%;
}