:root {
    --primary-color: #D4AF37; /* Premium Gold */
    --secondary-color: #1a1a2e; /* Dark Blue */
    --accent-color: #FF1493; /* Hot Pink */
    --text-color: #ffffff; /* White text for dark bg */
    --text-muted: #a0a0c0; /* Muted Blue/Grey */
    --bg-color: #16213e; /* Deep Navy */
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
nav {
    background: #000000;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Gold border */
}

nav .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background: transparent;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.city-select-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.city-select-box select {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    color: white;
}

.city-select-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.city-select-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.hero-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-top: 4%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Sectioning */
.section-padding {
    padding: 60px 0;
}

.bg-alt {
    background: transparent;
    border: none;
}

.bg-dark-alt {
    background: transparent;
    border: none;
}

/* Thin Profiles */
.long-profile {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 180px;
}

.long-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.lp-image {
    width: 200px;
    min-width: 200px;
    height: 100%;
}

.lp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-details {
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-between;
    width: 100%;
}

.lp-text {
    flex: 1;
}

.lp-details h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.lp-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
}

.lp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 30px;
}

.btn {
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    min-width: 150px;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.profile-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: #000;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.profile-card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.online-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #25D366;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.card-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    color: white;
    z-index: 5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
}

.profile-card:hover .card-info {
    background: transparent;
}

.card-info h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.card-info span {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 1;
    display: block;
}

/* Attractive Tables */
.tables-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

th {
    background: #f8fbff;
    color: var(--primary-color);
    text-align: left;
    padding: 20px;
    font-size: 0.95rem;
    font-weight: 800;
    border-bottom: 2px solid #eef5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: #e0e0e0;
}

tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
}

tr:last-child td {
    border-bottom: none;
}

.table-btn {
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    display: inline-block;
}

.table-btn-wa {
    background: #25D366;
}

/* Attractive Tags */
.tags-section {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag {
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.3);
}

/* Full Width Feature Section */
.full-width-feature {
    width: 100%;
    background: transparent;
    overflow: hidden;
}

.full-width-feature .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    width: 100%;
}

.full-width-feature .feature-image {
    height: 100%;
    min-height: 500px;
}

.full-width-feature .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.full-width-feature .feature-content {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 40px;
    background: transparent;
}

.full-width-feature .content-wrapper {
    max-width: 95%;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--text-muted);
    display: none;
}

/* Footer */
footer {
    background: #000000;
    padding: 0px 0 40px;
    text-align: center;
    color: #ffffff;
}

.footer-row {
    padding: 25px 0;
    border-top: 1px solid #333333;
}

.footer-row p {
    font-weight: 600;
    color: #888888;
}

/* Popup */
.popup-content {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
    max-width: 550px;
    text-align: center;
}

.popup-content h2 {
    font-size: 3rem;
    font-weight: 900;
}

.btn-yes {
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 15px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .hero-grid, .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image img {
        height: 400px;
    }

    .city-select-box {
        flex-direction: column;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav .container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .full-width-feature .feature-grid {
        grid-template-columns: 1fr;
    }

    .full-width-feature .feature-image {
        min-height: 300px;
    }

    .full-width-feature .feature-content {
        padding: 40px 20px;
    }

    .lp-details {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .lp-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        gap: 10px;
    }

    .lp-actions .btn {
        flex: 1;
        min-width: auto;
        padding: 12px;
    }

    .long-profile {
        height: auto;
        flex-direction: column;
    }

    .lp-image {
        width: 100%;
        height: 250px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .tables-grid table {
        display: block;
        overflow-x: auto;
    }

    .hero-content h1 {
        margin-top: 15%;
        font-size: 2.5rem;
    }
}

/* Popup Styles (Outside Media Queries) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #1a1a2e;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
    max-width: 550px;
    text-align: center;
    color: white;
}

.popup-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popup-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.popup-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yes {
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-no {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Popup Media Queries */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .popup-content h2 {
        font-size: 2rem;
    }
    
    .popup-btns {
        flex-direction: column;
    }
        }