:root {
    --color-romantic-red: #E50000; /* A deep, passionate red */
    --color-romantic-pink: #FF69B4; /* Hot pink, vibrant and playful */
    --color-romantic-purple: #8A2BE2; /* Amethyst, luxurious and mysterious */
    --color-premium-gold: #FFD700; /* Pure gold, for premium elements */
    --color-text-dark: #333333; /* Dark grey for general text, ensuring readability */
    --color-text-light: #FFFFFF; /* White for text on dark backgrounds */
    --color-header-bg: #36013F; /* Deep, dark purple for header background */
    --color-footer-bg: #220022; /* Even darker purple for footer */
    --color-button-bg: var(--color-romantic-red); /* Default button background */
    --color-button-hover-bg: var(--color-romantic-pink); /* Default button hover background */
    --color-content-box-bg: #4A004A; /* Darker, richer purple for content boxes */
    --color-table-bg: #330033; /* Dark purple for table background */
    --color-table-header-bg: linear-gradient(45deg, var(--color-romantic-red), var(--color-romantic-pink)); /* Romantic gradient for table headers */
    --color-faq-box-bg: rgba(var(--color-romantic-purple), 0.15); /* Subtle romantic purple for FAQ boxes */
    --color-faq-box-border: var(--color-romantic-pink); /* Romantic pink border for FAQ boxes */
    --color-submenu-bg: #2A002A; /* Darker background for submenus */
    --color-card-bg: #330033; /* Dark background for cards */
    --color-card-hover-border: var(--color-romantic-pink); /* Pink border on hover */
}

/* General body and html styling */
html, body {
    background-color: #1a1a1a; /* Dark background for a romantic feel */
    color: var(--color-text-light); /* White text for readability on dark background */
}

/* General text color to prevent white-on-white issues */
body {
    color: var(--color-text-light); /* White text for readability on dark background */
}

/* Header Styling */
.site-header {
    background-color: var(--color-header-bg);
    position: fixed; /* Make header fixed */
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
    /* You can add more styles here like box-shadow for depth */
}

/* Adjust main content to prevent it from being hidden under fixed header */
.main-content {
    /* padding-top: 80px; Adjust based on your header's height */
}

/* Desktop Navigation Links */
nav.desktop-nav ul li a {
    color: var(--color-romantic-pink); /* Romantic pink for links */
    transition: color 0.3s ease;
}

nav.desktop-nav ul li a:hover,
nav.desktop-nav ul li a.active-page {
    color: var(--color-romantic-red); /* Romantic red on hover/active */
}

/* Desktop Submenu Styling */
.desktop-nav .has-submenu {
    position: relative;
}

.desktop-nav .submenu {
    display: none;
    position: absolute;
    background-color: var(--color-submenu-bg);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
}

.desktop-nav .submenu li a {
    color: var(--color-text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.desktop-nav .submenu li a:hover {
    background-color: var(--color-romantic-purple);
    color: var(--color-text-light);
}

.desktop-nav .has-submenu:hover .submenu {
    display: block;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -480px; /* Start off-screen */
    width: 280px;
    height: 100%;
    background-color: var(--color-header-bg);
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 1001; /* Ensure it's on top of the overlay */
}

.mobile-nav.active {
    left: 0; /* Slide in when active */
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1000;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav a {
    color: var(--color-text-light);
}

.mobile-nav .mobile-submenu-trigger {
    color: var(--color-text-light);
    padding: 8px 16px;
    cursor: pointer;
}

.mobile-nav .mobile-submenu {
    background-color: var(--color-submenu-bg);
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-nav .mobile-submenu.active {
    max-height: 500px; /* Adjust as needed to fit content when active */
}

.mobile-nav .mobile-submenu a {
    padding-left: 30px; /* Indent submenu items */
}

/* === Mobile Drawer (right slide) === */
.mobile-nav{
  position: fixed;
  top: 0;
  right: -100%;          /* off-canvas by default */
  height: 100vh;
  width: 80%;
  max-width: 360px;
  background: #2a0035;
  color: #fff;
  z-index: 1001;         /* above overlay */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right .3s ease;
}
.mobile-nav.open{
  right: 0;              /* slide in */
}

/* Close (×) */
.mobile-nav .closebtn{
  display:block; font-size:28px; line-height:1;
  padding:16px 20px; color:#fff; text-decoration:none;
}

/* Drawer links */
.mobile-nav a{
  display:block; padding:14px 20px; color:#fff; text-decoration:none;
}

/* === Overlay === */
.mobile-nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  z-index: 1000;         /* below drawer */
}
.mobile-nav-overlay.show{ display:block; }

/* Optional: lock body scroll when open */
body.mobile-nav-open{ overflow:hidden; }

/* === Location submenu === */
.mobile-submenu-trigger{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px; cursor:pointer; user-select:none;
}
.mobile-submenu-trigger .fa{ transition: transform .3s; }
.mobile-submenu-trigger.open .fa{ transform: rotate(180deg); }

.mobile-submenu{
  display:none; max-height:0; overflow:hidden; transition:max-height .3s ease;
  background: rgba(255,255,255,.04);
}
.mobile-submenu.open{
  display:block !important; max-height:60vh; overflow-y:auto;
}
.mobile-submenu a{
  display:block; padding:10px 20px 10px 32px; color:#fff; text-decoration:none;
  border-top:1px solid rgba(255,255,255,.06);
}


/* Footer Styling */
footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light); /* White text for readability */
}

footer a {
    color: var(--color-romantic-pink); /* Romantic pink for footer links */
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-romantic-red); /* Romantic red on hover */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-romantic-red);
}

/* Buttons */
button, .read-more-btn, .whatsapp-btn {
    background-color: var(--color-button-bg);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .read-more-btn:hover, .whatsapp-btn:hover {
    background-color: var(--color-button-hover-bg);
}

/* SEO Tags and Location Tags */
.seo-tag, .tag {
    background-color: var(--color-romantic-purple); /* Default tag background */
    color: var(--color-text-light);
    padding: 5px 10px;
    border-radius: 3px;
    margin: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.seo-tag:hover, .tag:hover {
    background-color: var(--color-romantic-red);
}

/* Specific tag colors (overriding default for variety) */
.seo-tag.peach, .tag.orange { background: var(--color-romantic-pink); }
.seo-tag.sky, .tag.blue { background: var(--color-romantic-purple); }
.seo-tag.green, .tag.green { background: var(--color-romantic-red); }
.seo-tag.pink { background: var(--color-romantic-pink); }
.seo-tag.lavender, .seo-tag.violet, .tag.pink { background: var(--color-romantic-purple); }

/* Premium elements */
.premium-feature, .premium-tag {
    color: var(--color-premium-gold);
    border: 1px solid var(--color-premium-gold);
}

/* Content Box Styling */
.section-content-box {
    background-color: var(--color-content-box-bg); /* Darker, richer purple */
    color: var(--color-text-light); /* Ensure text is readable */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* More pronounced shadow */
}

/* Image Box Styling */
.section-image-box {
    border-radius: 15px; /* Rounded corners for images */
    overflow: hidden; /* Ensures image corners are also rounded */
    margin: 40px auto; 
    max-width: 1200px; /* Match content box width */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Consistent shadow */
}

.section-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Table Styling */
.responsive-table {
    background-color: var(--color-table-bg); /* Dark purple for table background */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Darker shadow */
}

.responsive-table thead {
    background: var(--color-table-header-bg); /* Romantic gradient for table headers */
    color: var(--color-text-light);
}

.responsive-table table {
    color: var(--color-text-light); /* Ensure table text is readable */
}

.responsive-table tbody td {
    color: var(--color-text-light); /* Ensure table body text is readable */
}

/* FAQ Section Styling */
.faq-box {
  /* Subtle romantic purple for FAQ boxes */
    border: 1px solid var(--color-primary); /* Romantic pink border */
    color: var(--color-text-light); /* Ensure text is readable */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Darker shadow */
}

.faq-box h3 {
    color: var(--color-romantic-pink); /* Romantic red for FAQ headings */
}

.faq-box p {
    color: var(--color-text-light); /* Ensure FAQ paragraph text is readable */
}

/* Responsive Header/Navigation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Hide desktop nav on small screens */
    }

    .mobile-menu-icon {
        display: block; /* Show mobile menu icon */
    }

    .site-header {
        padding: 10px 20px; /* Adjust padding for smaller screens */
    }
}

@media (min-width: 769px) {
    .desktop-nav {
        display: flex; /* Show desktop nav on larger screens */
    }

    .mobile-menu-icon {
        display: none; /* Hide mobile menu icon */
    }
}

/* Model Cards Styling */
.always-blur-card, .card-col {
    background-color: var(--color-card-bg); /* Dark background for cards */
    border: 1px solid transparent; /* Initial transparent border */
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative; /* For positioning video and badge */
}

.always-blur-card:hover, .card-col:hover {
    border-color: var(--color-card-hover-border); /* Pink border on hover */
    box-shadow: 0 0 15px rgba(var(--color-romantic-pink), 0.5); /* Soft pink glow on hover */
}

.img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates a square container for the image/video */
    overflow: hidden;
}

.img-wrap img,
.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%; /* Adjust as needed */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through to elements below */
}

.details-card-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
    color: var(--color-text-light); /* Ensure text is readable on overlay */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.card-action-buttons {
    display: block;
    
    align-items: flex-end;
}
.card-action-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-button {
  width: 40px;
  height: 40px;
  background-color: #25D366; /* Default WhatsApp green, override in .callnow */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.icon-button.callnow {
  background-color: #007bff; /* Blue for call */
}

.icon-button:hover {
  opacity: 0.85;
  text-decoration: none!important;
  color: white;
}

.premium-ribbon {
    background-color: var(--color-premium-gold); /* Gold for premium ribbon */
    color: var(--color-text-dark); /* Dark text on gold */
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    right: 10px; /* Adjusted position */
    transform: rotate(0deg); /* No rotation */
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}



.girl-name {
    color: var(--color-text-light); /* White for girl names on dark overlay */
    margin-bottom: 5px;
}

.girl-city-age {
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.star-rating-inline {
    color: var(--color-premium-gold); /* Gold for stars */
    margin-bottom: 0px;
}

.contact-number-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-number-wrap .callnow, .contact-number-wrap .whatapp {
    background-color: var(--color-button-bg); /* Use general button background */
    color: var(--color-text-light);
    border-radius: 50%; /* Make them circular */
    width: 40px; /* Fixed width for circular buttons */
    height: 40px; /* Fixed height for circular buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em; /* Adjust icon size */
    text-align: center;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.contact-number-wrap .callnow:hover, .contact-number-wrap .whatapp:hover {
    background-color: var(--color-button-hover-bg);
}

/* Hide text in buttons, show only icons */
.contact-number-wrap .callnow span, .contact-number-wrap .whatapp span {
    display: none;
}

.contact-buttons-container {
    text-align: center;
    margin-top: 30px;
}

.call-now-button, .whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.call-now-button {
    background-color: var(--color-romantic-red);
}

.whatsapp-button {
    background-color: #25D366; /* WhatsApp Green */
}

.call-now-button:hover {
    background-color: var(--color-romantic-pink);
}

.whatsapp-button:hover {
    opacity: 0.9;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.location-grid-item {
    background-color: var(--color-romantic-purple);
    color: var(--color-text-light);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.location-grid-item:hover {
   background: linear-gradient(110deg, var(--color-secondary) 0%, var(--color-primary) 100%); 
    text-decoration: none;
    color: white;
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    margin-bottom: 10px;
}

.faq-accordion .accordion-header {
    background-color: var(--color-romantic-purple);
    color: var(--color-text-light);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.faq-accordion .accordion-header:hover, .faq-accordion .accordion-header.active {
   background: linear-gradient(110deg, var(--color-secondary) 0%, var(--color-primary) 100%); 
    text-decoration: none;
    color: white;
}

.faq-accordion .accordion-content {
    padding: 0 18px;
    background-color: var(--color-content-box-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


.contact-number-wrap .callnow::before {
    content: '📞'; /* Call icon */
}

.contact-number-wrap .whatapp::before {
    content: '💬'; /* WhatsApp icon */
}

/* Mobile Navigation Drawer - Responsive Adjustments */
@media (max-width: 480px) {
    .mobile-nav {
        width: 100%; /* Full width on very small screens */
    }
    .grid {
        grid-template-columns: 1fr; /* Single column layout on small screens */
    }
}
