/* --- General --- */
:root {
    --dark-bg: #121212;
    --primary-text: #f0f0f0; /* Brighter text for better contrast */
    --vibrant-pink: #ff00ff; /* Adjusted for better contrast */
    --vibrant-cyan: #00ffff; /* Adjusted for better contrast */
    --vibrant-green: #2bf605; /* Adjusted for better contrast */
    --card-bg: #1e1e1e;
    --border-color: var(--vibrant-cyan);
}

body {
    background-color: var(--dark-bg);
    color: var(--primary-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

a {
    color: var(--vibrant-cyan);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Header --- */
header {
    background: var(--card-bg);
    border-bottom: 2px solid var(--vibrant-pink);
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

header nav a {
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

/* --- Video Section --- */
.video-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
    opacity: 0.5;
}

/* --- Main Content --- */
.main-title-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.main-title {
    text-align: center;
    color: var(--vibrant-green);
    text-shadow: 0 0 10px var(--vibrant-green);
    margin-bottom: 40px;
}

/* --- City Grid --- */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.city-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.city-card h2 {
    color: var(--vibrant-pink);
    margin-top: 0;
}

.city-card .keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.keyword-btn {
    background: transparent;
    border: 1px solid var(--vibrant-green);
    color: var(--vibrant-green);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: background-color 0.3s, color 0.3s;
}

.keyword-btn:hover {
    background-color: var(--vibrant-green);
    color: var(--dark-bg);
    text-decoration: none;
}

/* --- Profile Section --- */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 50px 10px;
}

.profile-section h2 {
    color: var(--vibrant-pink);
    margin-bottom: 10px;
}

/* --- Profile Grid (for city.php) --- */

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden; /* Ensures child elements conform to border radius */
    display: flex; /* Use flexbox for better structure */
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.profile-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.profile-card h3 {
    color: var(--vibrant-pink);
    margin: 10px 0 5px;
}

/* --- New Styles for Profile Details --- */
.profile-details {
    padding: 15px;
    text-align: left;
    flex-grow: 1; /* Allows this section to grow */
    display: flex;
    flex-direction: column;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 0.9em;
}

.profile-stats span {
    color: var(--vibrant-cyan);
}

.profile-description {
    font-size: 0.95em;
    margin-bottom: 15px;
    flex-grow: 1; /* Pushes services to the bottom */
}

.profile-services h4 {
    color: var(--vibrant-green);
    margin-bottom: 5px;
    font-size: 1em;
}

.profile-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-services li {
    background-color: var(--dark-bg);
    border: 1px solid var(--vibrant-pink);
    color: var(--primary-text);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
}

/* --- Footer --- */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--vibrant-pink);
}

/* --- Profile Page --- */
.profile-page h1 {
    color: var(--vibrant-pink);
    text-align: center;
    margin-bottom: 20px;
}

.profile-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.profile-image-container {
    flex: 1;
    margin: 10px;
}

.profile-page-image {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--vibrant-cyan);
}

.profile-details-container {
    margin: 10px;
    flex: 2;
}

.view-profile-btn {
    display: inline-block;
    background-color: var(--vibrant-cyan);
    color: var(--dark-bg);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    margin-top: auto; /* Pushes button to the bottom */
    transition: background-color 0.3s, color 0.3s;
}

.view-profile-btn:hover {
    background-color: var(--vibrant-pink); 
    color: var(--dark-bg);
    text-decoration: none;
}

/* --- Contact Page --- */
.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 10px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.contact-btn {
    display: inline-block;
    background-color: var(--vibrant-green);
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
    background-color: var(--vibrant-pink);
    text-decoration: none;
}

/* --- Sticky Buttons --- */
.sticky-buttons {
    width: 100%;
    position: sticky;
    bottom: 10px;
    justify-content: center;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.sticky-btn {
    width: 30%;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid ;
}

.sticky-btn:hover {
    transform: scale(0.98);
    text-decoration: none;
}

.call-btn {
    background-color: #0051a8;
    color: white;
    border-color: #1f7ce0;
}

.call-btn:hover {
    background-color: whitesmoke;
    color: #0051a8;
    box-shadow: 0 6px 12px #0051a8;
}

.whatsapp-btn {
    background-color: #0e5328;
    color: white;
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: whitesmoke;
    color: #0e5328;
    box-shadow: 0 6px 12px #0e5328;
}

.whatsapp-booking-btn {
    display: inline-block;
    background-color: #0f8239;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.whatsapp-booking-btn:hover {
    background-color: #128C7E;
    text-decoration: none;
}

.booking-appeal {
    margin-top: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--primary-text);
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    padding: 50px 10px;
    text-align: center;
}

.why-choose-us h2 {
    color: var(--vibrant-pink);
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
    color: var(--vibrant-green);
}

.feature-item h3 {
    color: var(--vibrant-cyan);
    margin-bottom: 10px;
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 50px 10px;
    text-align: center;
}

.how-it-works h2 {
    color: var(--vibrant-green);
    margin-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--vibrant-pink);
    margin-bottom: 15px;
}

.step-item h3 {
    color: var(--vibrant-cyan);
    margin-bottom: 10px;
}

/* --- Prime Locations Section --- */
.prime-locations {
    padding: 50px 10px;
    text-align: center;
}

.prime-locations h2 {
    color: var(--vibrant-green);
    margin-bottom: 10px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.location-item {
    background: var(--card-bg);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    font-weight: normal;
    color: var(--primary-text);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color:#1e1e1e;
    padding: 50px 10px;
    text-align: center;
}

.testimonials-section h2 {
    color: var(--vibrant-pink);
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--vibrant-cyan);
}

.testimonial-item h3 {
    color: var(--vibrant-green);
    margin-bottom: 5px;
}

.testimonial-item .stars {
    color: gold;
    margin-bottom: 10px;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 50px 10px;
    text-align: center;
}

.faq-section h2 {
    color: var(--vibrant-green);
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.faq-item h3 {
    color: var(--vibrant-cyan);
    margin-bottom: 10px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }
}

/* --- Related Profiles --- */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.related-profiles {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--vibrant-pink);
}

.related-profiles h2 {
    color: var(--vibrant-green);
    text-align: center;
    margin-bottom: 20px;
}

.profile-thumbnail {
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.profile-thumbnail img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.profile-thumbnail span {
    display: block;
    padding: 10px;
    color: var(--primary-text);
    font-weight: bold;
}

/* --- Keywords Section --- */
.keywords-section {
    padding: 50px 10px;
    text-align: center;
}

.keywords-section h2 {
    color: var(--vibrant-pink);
    margin-bottom: 40px;
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* --- About Us Section --- */
.about-us-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.about-us-section h2 {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.about-us-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Contact Form Section --- */
.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.contact-form-section h2 {
    color: var(--vibrant-green);
    margin-bottom: 20px;
}

.contact-form-section p {
    margin-bottom: 15px;
}

.contact-form-section select,
.contact-form-section button {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid var(--vibrant-cyan);
    background-color: var(--dark-bg);
    color: var(--primary-text);
    font-size: 1em;
    cursor: pointer;
    margin: 5px;
}

.contact-form-section button {
    background-color: var(--vibrant-pink);
    border-color: var(--vibrant-pink);
    color: var(--dark-bg);
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form-section button:hover {
    background-color: var(--vibrant-cyan);
    color: var(--dark-bg);
}
