/* =============================================
   CELEBRITY VIP ESCORTS - MAIN STYLES
   ============================================= */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LINKS RESET ===== */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: inherit;
}

a:visited {
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    background-color: #000000;
    border-bottom: 1px solid #222;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 1001;
    flex: 1;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo span {
    font-size: 14px;
    font-weight: bold;
    color: #fcfbfa;
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1.2;
}

/* Navigation - Desktop */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #FF0000;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 15px;
    z-index: 1001;
}

.icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.icon-btn:hover {
    color: #FF0000;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    padding: 40px 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF0000;
    color: #ffffff;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 150px;
}

.destination-button:hover {
    background-color: #ffffff;
    color: #FF0000;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* ===== INTRO SECTIONS ===== */
.agency-intro,
.celebrity-agency {
    padding: 80px 0;
}

.agency-intro {
    background-color: #0f0f0f;
}

.celebrity-agency {
    background-color: #0f0f0f;
}

.intro-content,
.celebrity-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.celebrity-content {
    grid-template-columns: 1fr 1.5fr;
}

.intro-image img,
.celebrity-image img {
    width: 100%;
    border-radius: 8px;
}

.intro-text h1,
.celebrity-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
}

.intro-text ul {
    list-style: none;
}

.intro-text li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.intro-text strong,
.celebrity-text strong {
    color: #ffffff;
}

.celebrity-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

/* ===== LUXURY ESCORTS SECTION ===== */
.luxury-escorts {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.luxury-escorts h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
}

.luxury-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.luxury-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.luxury-text h3 {
    font-size: 24px;
    margin: 35px 0 20px 0;
    color: #ffffff;
}

.luxury-image img {
    width: 100%;
    border-radius: 8px;
}

/* ===== ESCORTS GRID (HOMEPAGE) ===== */
.escorts-grid {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #FF0000;
    font-weight: 700;
}

/* Homepage grid - 4 columns on large desktop */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Homepage specific - ensure same behavior as escorts page */
.escorts-grid .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ===== ESCORT CARDS ===== */
.escort-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.escort-card:hover .card-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    letter-spacing: 1px;
}

.badge.premium {
    top: 15px;
    left: 15px;
    background-color: #FF0000;
    color: #ffffff;
}

.badge.new {
    top: 60px;
    left: 15px;
    background-color: #00AA00;
    color: #ffffff;
}

.escort-card h3 {
    padding: 20px 20px 5px 20px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.escort-card p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    color: #999999;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000000;
    padding: 40px 0;
    border-top: 1px solid #222;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0 40px 0;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #888;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #FF0000;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-logo span {
    font-size: 14px;
    font-weight: bold;
    color: #fcfcfb;
    letter-spacing: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

.footer-bottom a {
    color: #666;
}

.footer-bottom a:hover {
    color: #FF0000;
}

/* ===== PAYMENT ICONS WITH IMAGES ===== */
.payment-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
    transition: all 0.3s;
}

.payment-icon img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.3s;
}

.payment-icon:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.payment-icon:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 480px) {
    .payment-icons {
        justify-content: center;
        gap: 15px;
    }

    .payment-icon img {
        height: 25px;
    }

    .payment-icon {
        font-size: 12px;
    }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1200px) {
    .destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {

    .intro-content,
    .luxury-content,
    .celebrity-content {
        grid-template-columns: 1fr;
    }

    /* 3 columns for tablet */
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide desktop nav */
    .nav {
        display: none;
    }

    /* Mobile nav when active */
    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #0a0a0a;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 999;
    }

    .nav.active a {
        padding: 18px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav.active a:last-child {
        border-bottom: none;
    }

    /* Overlay when menu open */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: -1;
    }

    /* Logo adjustments */
    .logo span {
        font-size: 12px;
        max-width: 150px;
        line-height: 1.3;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    /* Grid adjustments */
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 36px;
    }

    .intro-text h1,
    .luxury-escorts h2,
    .celebrity-text h2 {
        font-size: 32px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 10px;
        max-width: 120px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .destination-grid,
    .grid {
        grid-template-columns: 1fr;
    }
}
/* ===== PAGINATION STYLES ===== */
.pagination-container {
    margin: 50px 0;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-btn:hover {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.page-btn.active {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
    font-weight: bold;
}

.page-btn.prev,
.page-btn.next {
    background: #2a2a2a;
    padding: 0 20px;
}

.page-dots {
    color: #666;
    padding: 0 10px;
    font-size: 18px;
    user-select: none;
}

/* Results count */
.results-count {
    text-align: center;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 14px;
}
.seo-content {
    padding: 60px 0;
    background-color: #0f0f0f;
    text-align: center;
}

.seo-content h2 {
    font-size: 36px;
    color: #fdfdfc;
    margin-bottom: 20px;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 20px;
}

.seo-content strong {
    color: #ffffff;
}


/* Contact Form Section */
.contact-form-section h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 15px;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF0000;
    background-color: #222;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Validation States */
.form-group input.error,
.form-group textarea.error {
    border-color: #FF0000;
}

.form-group input.success,
.form-group textarea.success {
    border-color: #00AA00;
}

.form-group .error-message {
    color: #FF0000;
    font-size: 13px;
    margin-top: 5px;
}

/* Success Message */
.success-message {
    background-color: #00AA00;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Dropdown/Select Styling */
.form-group select {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 15px;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: #FF0000;
    background-color: #222;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

/* Model Inquiry Form - Additional Styling */
.model-inquiry-form {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #333;
}

.model-inquiry-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Success Message Animation */
.success-message {
    animation: slideDown 0.3s ease;
    text-align: center;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Select dropdown error/success states */
.form-group select.error {
    border-color: #FF0000;
}

.form-group select.success {
    border-color: #00AA00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .model-inquiry-form {
        padding: 25px 20px;
    }

    .contact-form-section h2 {
        font-size: 24px;
    }

    .submit-btn {
        width: 100%;
        align-self: stretch;
    }
}