@charset "utf-8";

/* ============================================
   MODERN AESTHETIC STYLES FOR GOA ESCORT WEBSITE
   ============================================ */

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #7E0760;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    text-align: left;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header */
.modern-header {
    background: linear-gradient(135deg, #BF1377 0%, #8d336e 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 150px;
    height: auto;
    margin-right: 15px;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #9DBF13;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #91BF13;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link i {
    margin-right: 8px;
    font-size: 14px;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(to right, #f42c81 0%, #fdad15 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-contact {
    display: flex;
    align-items: center;
}

.call-btn {
    background: linear-gradient(to right, #9DBF13 0%, #7E0760 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.call-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #7E0760 0%, #9DBF13 100%);
}

/* Mobile Menu Toggle */
.menu-btn {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-icon .navicon {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 2px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    margin-top: 80px;
    height: 55vh;
    max-height: 550px;
    min-height: 550px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
}

.banner-content {
    text-align: center;
    max-width: 700px;
    color: white;
    z-index: 2;
}

.banner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
   
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: #9DBF13;
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align:center;
    font-style: bold;
}

.banner-features {
    display: none;
}

/* .feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.feature-item i {
    color: #9DBF13;
    margin-right: 10px;
    font-size: 18px;
} */

.banner-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.cta-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.cta-btn.primary {
    background: linear-gradient(to right, #f42c81 0%, #fdad15 100%);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.cta-btn.primary:hover {
    background: linear-gradient(to right, #fdad15 0%, #f42c81 100%);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Main Content Sections */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #9DBF13;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #F815C5;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.2rem;
    color: #fab5a7;
    max-width: 700px;
    margin: 0 auto 20px;
    text-align: center;;
}

.section-divider {
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, #f42c81 0%, #fdad15 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-card p {
    padding: 0;
    margin: 0 auto 20px;
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    color: #9DBF13;
    padding-bottom: 15px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: #F815C5;
}

h4 {
    font-size: 1.5rem;
    color: #fab5a7;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(249, 83, 198, 0.2) 0%, rgba(185, 29, 115, 0.2) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid #9DBF13;
}

.highlight-icon {
    background: #9DBF13;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-content h2 {
    text-align: left;
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(126, 7, 96, 0.8) 0%, rgba(191, 19, 119, 0.8) 100%);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px auto;
}

.gallery-container {
    overflow: hidden;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #9DBF13;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Watermark Protection */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) rotate(-45deg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
    font-weight: bold;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    user-select: none;
}

.gallery-desc {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #8d0101 0%, #d5106e 100%);
    color: #7bff98;
    font-weight: 600;
    font-size: 18px;
}

/* Services & Features */
.services-grid, .benefits-section, .feature-block {
    margin: 30px 0;
}

.feature-block {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #F815C5;
}

.contact-block {
    background: linear-gradient(135deg, rgba(157, 191, 19, 0.1) 0%, rgba(126, 7, 96, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.contact-btn.phone-btn {
    background: linear-gradient(to right, #f42c81 0%, #fdad15 100%);
    color: white;
}

.contact-btn.whatsapp-btn {
    background: linear-gradient(to right, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact-btn.email-btn {
    background: linear-gradient(to right, #9DBF13 0%, #7E0760 100%);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Locations Section */
.locations-section {
    background: linear-gradient(135deg, rgba(191, 19, 119, 0.9) 0%, rgba(141, 51, 110, 0.9) 100%);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-category {
    font-family: 'Oswald', sans-serif;
    color: #9DBF13;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F815C5;
    text-align: center;
}

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    margin-bottom: 12px;
}

.location-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.location-list a:hover {
    background: rgba(157, 191, 19, 0.2);
    border-left-color: #9DBF13;
    transform: translateX(5px);
    color: #9DBF13;
}

/* Simple Footer */
.simple-footer {
    background: linear-gradient(135deg, #7E0760 0%, #BF1377 100%);
    padding: 15px 20px;
    text-align: center;
    border-top: 2px solid #9DBF13;
}

.simple-footer p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    text-align: center;
}

.simple-footer a {
    color: #9DBF13;
    text-decoration: none;
    font-weight: 600;
}

.simple-footer a:hover {
    text-decoration: underline;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #7E0760 0%, #BF1377 100%);
    padding: 30px 0 15px;
    border-top: 5px solid #9DBF13;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column {
    padding: 10px;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    color: #fab5a7;
    font-size: 1.5rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #9DBF13;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #F815C5;
}

.disclaimer-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #9DBF13;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 10px;
    color: #9DBF13;
    font-size: 12px;
}

.footer-links a:hover {
    color: #9DBF13;
    transform: translateX(5px);
}

.contact-info {
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.contact-item i {
    color: #9DBF13;
    margin-right: 15px;
    font-size: 20px;
    margin-top: 5px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #fab5a7;
    margin-bottom: 5px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #9DBF13;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #9DBF13;
    color: #7E0760;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.phone:hover {
    background: #f42c81;
}

.social-icon.email:hover {
    background: #fdad15;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 16px;
    color: #fab5a7;
    margin: 0;
}

.copyright a {
    color: #9DBF13;
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
    color: #F815C5;
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.fixed-btn span {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fixed-btn:hover span {
    opacity: 1;
}

.fixed-btn.call-now {
    background: linear-gradient(135deg, #f42c81 0%, #fdad15 100%);
}

.fixed-btn.whatsapp-now {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fixed-btn i {
    font-size: 24px;
}

.fixed-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 2.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #BF1377 0%, #7E0760 100%);
        flex-direction: column;
        justify-content: flex-start;
        transition: left 0.3s ease;
        padding-top: 30px;
        z-index: 999;
    }
    
    .menu-btn:checked ~ .main-nav {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        width: 90%;
        margin: 5px auto;
        justify-content: center;
    }
    
    .header-contact {
        display: none;
    }
    
    /* Hero Banner */
    .hero-banner {
        height: 45vh;
        max-height: 380px;
        margin-top: 70px;
    }
    
    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .banner-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .banner-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 18px;
        font-size: 15px;
    }
    
    /* Content */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
    
    .content-card {
        padding: 20px 25px;
    }
    
    .content-card p {
        padding: 0;
        max-width: 100%;
    }
    
    .highlight-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .highlight-content h2 {
        text-align: center;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr;
        
    }
    
    /* Fixed Buttons */
    .fixed-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .fixed-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 120px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .hero-banner {
        height: 38vh;
        max-height: 280px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .image-wrapper {
        height: 200px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .fixed-btn {
        width: 50px;
        height: 50px;
    }
    
    .fixed-btn i {
        font-size: 20px;
    }
}

/* Animation for page elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-section, .gallery-item, .footer-column {
    animation: fadeIn 0.8s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #7E0760;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f42c81 0%, #fdad15 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #fdad15 0%, #f42c81 100%);
}