@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #f6f5fc;
    --bg-secondary: #ffffff;
    --card-bg: #ffffff;
    
    /* Theme Palette: Purple, Indigo, Violet & White */
    --primary: #7c3aed; /* Violet 600 */
    --primary-hover: #6d28d9; /* Violet 700 */
    --primary-light: #ede9fe; /* Violet 100 */
    --secondary: #4f46e5; /* Indigo 600 */
    --secondary-hover: #4338ca; /* Indigo 700 */
    --secondary-light: #e0e7ff; /* Indigo 100 */
    
    --accent-gradient: linear-gradient(135deg, #7c3aed, #4f46e5);
    --accent-gradient-hover: linear-gradient(135deg, #6d28d9, #4338ca);
    --whatsapp-gradient: linear-gradient(135deg, #10b981, #059669); /* Emerald Green for trust */
    
    /* Text Colors */
    --text-main: #1e1b4b; /* Very dark indigo */
    --text-body: #475569; /* Slate gray */
    --text-muted: #64748b; /* Medium slate gray */
    --text-light: #ffffff;
    
    /* Borders & Shadow */
    --border-color: rgba(124, 58, 237, 0.08);
    --border-color-hover: rgba(124, 58, 237, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(124, 58, 237, 0.3), 0 2px 4px -1px rgba(124, 58, 237, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(124, 58, 237, 0.4), 0 4px 6px -2px rgba(124, 58, 237, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(99, 102, 241, 0.6), 0 10px 10px -5px rgba(99, 102, 241, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-primary);
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

/* Header Section */
header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

header a {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
    display: inline-block;
}

header a:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Main Video Banner */
.video-container {
    width: 100%;
    height: 55vh;
    position: relative;
    overflow: hidden;
    background-color: #1e1b4b;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 27, 75, 0.4), rgba(246, 245, 252, 1));
    pointer-events: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.85rem;
    margin-top: 3.5rem;
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 5px;
    background: var(--accent-gradient);
    border-radius: 4px;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    color: var(--secondary);
}

p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.container a {
    color: var(--primary);
    font-weight: 600; 
    padding-bottom: 1px;
}

.container a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Main Layout Wrapper */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.2rem 0;
}

/* Long Profiles Section */
.profile {
    display: flex;
    flex-direction: row;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1rem;
    gap: 2.5rem;
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    align-items: center;
}

.profile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color-hover);
}

.profile .profile-img {
    width: 240px;
    height: 240px;
    min-width: 240px;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--bg-primary);
    border: 3px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.profile:hover .profile-img {
    border-color: var(--secondary-light);
}

.profile .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile:hover .profile-img img {
    transform: scale(1.06);
}

.profile .profile-det {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile .profile-det h3 {
    text-align: left;
    margin-top: 0;
    font-size: 1.6rem;
    color: var(--text-main);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.profile .profile-det p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* Quick contact inside long profiles */
.profile-actions {
    display: flex;
    gap: 1rem;
}

.profile-actions a {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.profile-actions .profile-call {
    background: var(--accent-gradient);
}
.profile-actions .profile-call:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
}

.profile-actions .profile-whatsapp {
    background: var(--whatsapp-gradient);
}
.profile-actions .profile-whatsapp:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

/* Profile Card Grid (profile-flex) */
.profile-flex {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.profile-flex .profile-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.profile-flex .profile-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color-hover);
}

.profile-flex .profile-box .pro-img {
    width: 100%;
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--bg-primary);
    margin-bottom: 0.75rem;
    position: relative;
}

.profile-flex .profile-box .pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-flex .profile-box:hover .pro-img img {
    transform: scale(1.08);
}

.profile-flex .profile-box p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0.5rem 0 0.25rem 0;
    text-align: center;
}

/* Online Pulse indicator badge on cards */
.profile-flex .profile-box::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 8px #10b981;
    z-index: 5;
}

/* Table Design */
.escort-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.escort-table th,
.escort-table td {
    padding: 1.25rem;
    text-align: left;
}

.escort-table th {
    background: var(--accent-gradient);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: none;
}

.escort-table td {
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
    font-size: 1rem;
}

.escort-table tr:last-child td {
    border-bottom: none;
}

.escort-table tr {
    transition: var(--transition);
}

.escort-table tr:hover {
    background-color: var(--primary-light);
}

.escort-table tr:hover td {
    color: var(--text-main);
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 1000px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    background-color: var(--card-bg);
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-light);
}

.faq-item.active .faq-question {
    background-color: var(--primary-light);
    color: var(--primary);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: var(--transition);
    background-color: var(--card-bg);
}

.faq-answer p {
    margin: 0;
    padding: 1.25rem 0;
    font-size: 1rem;
    color: var(--text-body);
    text-align: justify;
}

.faq-answer ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0 1.25rem 0;
}

.faq-answer ul li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer ul li::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.8rem;
}

.faq-item.active .faq-answer {
    max-height: 800px; /* High enough to fit long text */
}

/* Tags Section styling */
.tags {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tags span {
    border-radius: 9999px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.tags span:nth-child(even) {
    background-color: var(--primary-light);
}

.tags span:nth-child(even) a {
    color: var(--primary);
}

.tags span:nth-child(odd) {
    background-color: var(--secondary-light);
}

.tags span:nth-child(odd) a {
    color: var(--secondary);
}

.tags span:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary);
    border-color: var(--primary);
}

.tags span:hover a {
    color: white;
}

.tags a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding: 0.5rem 1.1rem;
}

/* Con Section (Email Administration bar) */
.con {
    margin: 4rem auto 2rem auto;
    background: var(--accent-gradient);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
}

.con p {
    color: white;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.con strong {
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 4px;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 3rem 1.5rem 7rem 1.5rem; /* Additional bottom padding to clear the floating bottom bar */
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 0;
}

/* Floating Bottom Sticky Action Buttons */
.contact-btn {
    width: 90%;
    max-width: 500px;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn .btn {
    flex: 1;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-btn .whatsapp {
    background: var(--whatsapp-gradient);
}

.contact-btn .whatsapp:hover {
    filter: brightness(1.05);
}

.contact-btn .call {
    background: var(--accent-gradient);
}

.contact-btn .call:hover {
    background: var(--accent-gradient-hover);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .profile {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .profile .profile-img {
        width: 180px;
        height: 180px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    .video-container {
        height: 40vh;
    }

    .profile {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .profile .profile-img {
        width: 100%;
        height: 250px;
        min-width: 100%;
    }

    .profile .profile-det {
        width: 100%;
    }

    .profile .profile-det h3 {
        font-size: 1.35rem;
    }

    .profile-flex {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .profile-flex .profile-box .pro-img {
        height: 200px;
    }
    
    .con p {
        font-size: 1.1rem;
    }
    
    .con strong {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 90%;
        padding: 1.5rem 0;
    }

    .profile-flex {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .profile-flex .profile-box {
        padding: 0.5rem;
        border-radius: 14px;
    }

    .profile-flex .profile-box .pro-img {
        height: 150px;
        border-radius: 10px;
    }

    .profile-flex .profile-box p {
        font-size: 0.95rem;
    }

    .contact-btn {
        width: 92%;
        height: 55px;
        bottom: 1rem;
    }

    .contact-btn .btn {
        font-size: 1rem;
    }
    
    .escort-table th,
    .escort-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Services Grid Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-gradient);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
    text-align: center;
    line-height: 1.55;
}

/* Testimonials Grid Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.testimonial-stars {
    color: #f59e0b; /* Golden yellow for stars */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.15rem;
    text-align: left;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-align: left;
}