/* --- Global Setup --- */
:root {
    --neon-blue: #00f2ff;
    --neon-purple: #bc00ff;
    --bg-dark: #02060c;
    --card-bg: #0b121d;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body#home-page {
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 10px; }

/* --- Header & Nav --- */
#home-page header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(2, 6, 12, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

#home-page .logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

#home-page .logo i { margin-right: 12px; font-size: 1.8rem; }

#home-page nav ul { display: flex; list-style: none; align-items: center; }
#home-page nav ul li { margin-left: 25px; }
#home-page nav ul li a { color: #fff; text-decoration: none; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
#home-page nav ul li a:hover { color: var(--neon-blue); }

.earn-btn-style {
    color: var(--neon-purple) !important;
    font-weight: bold;
    border: 1px solid var(--neon-purple);
    padding: 5px 12px;
    border-radius: 5px;
    text-shadow: 0 0 5px var(--neon-purple);
}

/* --- Hero Section --- */
#home-page .hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('image/Sony.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

#home-page .hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

#home-page .hero-content p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 35px;
    max-width: 700px;
    margin-inline: auto;
}

#home-page .btn {
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin: 10px;
    transition: 0.4s;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
}

#home-page .btn-blue { background: var(--neon-blue); color: #000; box-shadow: 0 0 15px var(--neon-blue); }
#home-page .btn-purple { background: var(--neon-purple); color: #fff; box-shadow: 0 0 15px var(--neon-purple); }
#home-page .btn:hover { transform: scale(1.05); filter: brightness(1.2); }

/* --- Services --- */
#home-page .section-container { padding: 100px 8%; text-align: center; }
#home-page h2 { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; margin-bottom: 50px; position: relative; }
#home-page h2::after { content: ''; width: 60px; height: 3px; background: var(--neon-blue); position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }

#home-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#home-page .service-card {
    background: var(--card-bg);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* --- Team Style --- */
#home-page .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
#home-page .team-member { position: relative; overflow: hidden; border-radius: 20px; height: 350px; background: #000; }
#home-page .team-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; opacity: 0.8; }
#home-page .team-info { position: absolute; bottom: -100%; left: 0; width: 100%; background: linear-gradient(transparent, var(--neon-blue)); padding: 30px 20px; text-align: center; transition: 0.5s; }
#home-page .team-member:hover .team-info { bottom: 0; }
#home-page .team-member:hover .team-img { transform: scale(1.1); opacity: 1; }

/* --- SMART RESPONSIVE FIXES --- */

/* Tablet (iPad) Fixes */
@media (max-width: 1024px) {
    #home-page header { padding: 15px 5%; }
    #home-page nav ul li { margin-left: 15px; }
    #home-page nav ul li a { font-size: 0.8rem; }
    #home-page .section-container { padding: 60px 5%; }
}

/* Mobile Fixes (No Overlap) */
@media (max-width: 768px) {
    #home-page header { 
        flex-direction: column; 
        padding: 15px 0;
        height: auto;
    }
    #home-page .logo { margin-bottom: 15px; font-size: 1.2rem; }
    #home-page nav ul { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }
    #home-page nav ul li { margin: 0 5px; }
    #home-page nav ul li a { font-size: 0.75rem; letter-spacing: 0; }
    
    /* Earn With Us Button Fix */
    #home-page nav ul li:nth-child(6) a {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
    }

    #home-page .hero-content h1 { font-size: 2rem; }
    #home-page .hero { padding-top: 140px; } 
    #home-page .btn { width: 85%; margin: 8px auto; display: block; padding: 12px; }
    #home-page h2 { font-size: 1.8rem; }
}

/* Portfolio Fixes */
#home-page .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 40px; }
#home-page .portfolio-item { height: 250px; overflow: hidden; border-radius: 10px; cursor: pointer; }
#home-page .portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

#home-page footer { background: #010307; padding: 60px 8% 30px; border-top: 1px solid rgba(255,255,255,0.05); }
#home-page .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: left; }
/* booking html*/

//* --- Booking Page Specific Styles (#booking-page) --- */

:root {
    --neon-blue: #00f2ff;
    --neon-purple: #bc00ff;
    --bg-dark: #02060c;
    --card-bg: #0b121d;
}

body#booking-page * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

body#booking-page { 
    background-color: var(--bg-dark); 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

#booking-main-container { 
    width: 100%; 
    max-width: 500px; 
}

#form-container, #success-msg { 
    background: var(--card-bg); 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid var(--neon-purple); 
    text-align: center; 
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1); 
}

#booking-page h2 { 
    font-family: 'Orbitron'; 
    color: var(--neon-blue); 
    margin-bottom: 25px; 
    text-shadow: 0 0 10px var(--neon-blue);
    font-size: clamp(1.5rem, 5vw, 2rem);
}

#booking-page input, 
#booking-page select, 
#booking-page textarea { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 15px; 
    background: #050a12; 
    border: 1px solid #1a2a44; 
    color: white; 
    border-radius: 8px; 
    outline: none; 
    transition: 0.3s; 
    font-size: 1rem;
}

/* --- Master Date Picker Fix using Unique IDs --- */

/* Wrapper ko ID se target kiya hai */
#date-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

/* Input field ki ID */
#date {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #050a12;
    color: white;
    position: relative;
}

/* 1. Laptop par browser ka default text chhupane ke liye */
#date::-webkit-datetime-edit {
    opacity: 0; 
    transition: 0.2s;
}

/* 2. Jab user date select kare, tab asli text dikhao */
#date:focus::-webkit-datetime-edit,
#date:valid::-webkit-datetime-edit {
    opacity: 1 !important;
}

/* 3. Custom Placeholder Style (dd/mm/yyyy) */
#date::before {
    content: attr(data-placeholder);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4); /* Thoda halka color taaki achha dikhe */
    pointer-events: none;
    display: block;
}

/* 4. Focus hone par ya Date select hone par placeholder hide karein */
#date:focus::before,
#date:valid::before {
    display: none !important;
    content: "";
}

/* 5. Calendar Icon ki ID/Type styling */
#date::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Icon white dikhega */
    cursor: pointer;
    position: absolute;
    right: 10px;
    z-index: 2;
    opacity: 0.6;
}

#booking-page .submit-btn { 
    width: 100%; 
    background: var(--neon-blue); 
    color: #000; 
    padding: 15px; 
    border: none; 
    border-radius: 8px; 
    font-family: 'Orbitron'; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.3s; 
    margin-top: 10px;
}

#booking-page .submit-btn:hover { 
    box-shadow: 0 0 15px var(--neon-blue); 
    transform: scale(1.02); 
}

#planCategory, #exactPrice, #success-msg { 
    display: none; 
}

.check-icon { 
    font-size: 60px; 
    color: var(--neon-blue); 
    margin-bottom: 20px; 
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    #form-container { padding: 20px; }
}

/*****************************************************************/
/* --- Admin Page Specific Styles Using IDs --- */

#admin-body { 
    background-color: #02060c; 
    color: white; 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    overflow-x: hidden; 
}

/* --- LOGIN SCREEN --- */
#login-overlay {
    position: fixed; inset: 0; background: #02060c; z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
#login-container {
    background: #0b121d; padding: 50px 40px; border-radius: 30px;
    border: 2px solid #00f2ff; text-align: center; width: 100%; max-width: 500px;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}
#login-title { font-family: 'Orbitron'; color: #00f2ff; font-size: 2rem; letter-spacing: 2px; margin-bottom: 35px; text-transform: uppercase; }
#admin-password-input {
    width: 100%; padding: 15px 20px; margin-bottom: 30px; background: #050a12;
    border: 1px solid #1a2a44; color: white; border-radius: 12px; outline: none; font-size: 1rem;
}
#unlock-button {
    background: #00f2ff; color: #000; width: 100%; padding: 15px;
    border: none; border-radius: 12px; font-weight: bold; font-family: 'Orbitron';
    cursor: pointer; font-size: 1.1rem; text-transform: uppercase;
}

/* --- DASHBOARD HEADER --- */
#dashboard-wrapper { display: none; padding-top: 50px; }
#navigation-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; }
.tab-btn {
    background: none; border: 1px solid #00f2ff; color: white; padding: 10px 35px;
    border-radius: 8px; cursor: pointer; font-family: 'Orbitron'; font-size: 0.9rem;
}
.tab-btn.active { background: #00f2ff; color: #000; box-shadow: 0 0 20px #00f2ff; }
.section-header { text-align: center; font-family: 'Orbitron'; color: #00f2ff; font-size: 2.5rem; letter-spacing: 4px; margin-bottom: 40px; }

/* --- BOOKING CARD --- */
.booking-card {
    background: #0b0e13; border-left: 4px solid #00f2ff;
    margin-bottom: 30px; padding: 30px; border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.card-name { color: #00f2ff; font-family: 'Orbitron'; font-size: 1.5rem; display: block; margin-bottom: 20px; }
.details-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-bottom: 20px; }
.box b { display: block; color: white; font-size: 0.85rem; margin-bottom: 8px; text-transform: uppercase; }
.box span { color: #ccc; font-size: 0.95rem; }
.price-text { color: #bc00ff; font-family: 'Orbitron'; font-weight: bold; font-size: 1.1rem; }

/* Buttons */
.btn-wa { background: #25d366; color: white; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.btn-del { background: #ff4d4d; color: white; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; }

#bookings-panel, #partners-panel { display: none; }
#bookings-panel.show, #partners-panel.show { display: block; }

/**************************************/
/* --- Affiliate Page Specific Styles Using IDs --- */

#affiliate-body { 
    background-color: #02060c; 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    padding: 20px; 
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

#affiliate-main-container { width: 100%; max-width: 500px; text-align: center; }

#registration-box, #referral-result-box { 
    background: #0b121d; 
    padding: 40px 30px; 
    border-radius: 20px; 
    border: 1px solid #bc00ff; 
    box-shadow: 0 0 20px rgba(188, 0, 255, 0.1); 
}

#affiliate-title { font-family: 'Orbitron'; color: #00f2ff; margin-bottom: 10px; text-shadow: 0 0 10px #00f2ff; }
#affiliate-desc { color: #aaa; font-size: 0.9rem; margin-bottom: 30px; }

#partner-name-input, #partner-phone-input, #partner-upi-input { 
    width: 100%; padding: 12px; margin-bottom: 15px; background: #050a12; 
    border: 1px solid #1a2a44; color: white; border-radius: 8px; outline: none; transition: 0.3s; 
}

.btn-action { 
    width: 100%; background: #00f2ff; color: #000; padding: 15px; 
    border: none; border-radius: 8px; font-family: 'Orbitron'; font-weight: bold; 
    cursor: pointer; transition: 0.3s; 
}
.btn-action:hover { box-shadow: 0 0 15px #00f2ff; transform: scale(1.02); }

/* Result Area */
#referral-result-box { display: none; }
#generated-code-display { font-family: 'Orbitron'; font-size: 1.5rem; color: #bc00ff; margin: 10px 0; display: block; }
.share-info-text { font-size: 0.8rem; color: #777; line-height: 1.5; }

#home-back-link { display: block; margin-top: 20px; color: #555; text-decoration: none; font-size: 0.8rem; }


/*****************************************************/
/* --- Payment Page Specific Styles Using IDs --- */

#payment-body { 
    background-color: #02060c; 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    padding: 20px; 
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

#payment-wrapper { 
    background: #0b121d; 
    padding: 40px 30px; 
    border-radius: 25px; 
    border: 1px solid #00f2ff; 
    text-align: center; 
    width: 100%; 
    max-width: 400px; 
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15); 
}

#payment-title { 
    font-family: 'Orbitron'; 
    color: #00f2ff; 
    font-size: 1.4rem; 
    margin-bottom: 10px; 
    text-shadow: 0 0 10px #00f2ff; 
}

#amount-display-box { 
    background: rgba(255, 255, 255, 0.05); 
    padding: 20px; 
    border-radius: 15px; 
    margin: 20px 0; 
    border: 1px dashed #bc00ff; 
}

#advAmt-value { 
    font-family: 'Orbitron'; 
    font-size: 2.2rem; 
    color: white; 
    display: block; 
}

#advAmt-value span { font-size: 1.2rem; color: #bc00ff; margin-right: 5px; }

#qr-code-area { 
    background: white; 
    width: 200px; 
    height: 200px; 
    margin: 0 auto 25px; 
    padding: 10px; 
    border-radius: 15px; 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); 
}
#qr-code-area img { width: 100%; height: 100%; object-fit: contain; }

#upi-pay-button { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    width: 100%; 
    background: #00f2ff; 
    color: #000; 
    padding: 16px; 
    border-radius: 12px; 
    font-family: 'Orbitron'; 
    font-weight: bold; 
    text-decoration: none; 
    transition: 0.3s ease; 
}

#upi-pay-button:hover { 
    box-shadow: 0 0 20px #00f2ff; 
    transform: translateY(-3px); 
}

#payment-instruction-text { color: #888; font-size: 0.8rem; margin-top: 20px; line-height: 1.5; }

#session-expiry-timer { font-size: 0.7rem; color: #bc00ff; margin-top: 10px; font-weight: bold; }


/************************************************/
/* --- Review Page Specific Styles Using IDs --- */

#review-body { 
    background-color: #02060c; 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    padding: 20px; 
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

#review-form-wrapper { 
    background: #0b121d; 
    padding: 40px 30px; 
    border-radius: 25px; 
    border: 1px solid #bc00ff; 
    text-align: center; 
    width: 100%; 
    max-width: 500px; 
    box-shadow: 0 0 20px rgba(188, 0, 255, 0.1); 
}

#review-title { 
    font-family: 'Orbitron'; 
    color: #00f2ff; 
    margin-bottom: 25px; 
    text-shadow: 0 0 10px #00f2ff; 
    text-transform: uppercase; 
}

#rating-stars-container { 
    margin-bottom: 20px; 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-direction: row-reverse; 
}

#rating-stars-container input { display: none; }

#rating-stars-container label { 
    font-size: 35px; 
    color: #333; 
    cursor: pointer; 
    transition: 0.3s; 
}

#rating-stars-container label:hover, 
#rating-stars-container label:hover ~ label, 
#rating-stars-container input:checked ~ label { 
    color: #ffcc00; 
    text-shadow: 0 0 10px #ffcc00; 
}

#review-input-name, #review-shoot-select, #review-message-area, #review-file-input { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px; 
    background: #050a12; 
    border: 1px solid #1a2a44; 
    color: white; 
    border-radius: 10px; 
    outline: none; 
}

#review-upload-box { margin-bottom: 20px; text-align: left; }

#review-upload-label { color: #00f2ff; font-size: 0.85rem; margin-bottom: 8px; display: block; }

#review-photo-preview { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 10px auto; 
    display: none; 
    border: 2px solid #00f2ff; 
}

#review-submit-button { 
    width: 100%; 
    background: linear-gradient(90deg, #00f2ff, #bc00ff); 
    color: white; 
    padding: 18px; 
    border: none; 
    border-radius: 12px; 
    font-family: 'Orbitron'; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.4s; 
}

/*********************************************/
/* --- All Reviews Page Specific Styles Using IDs --- */

:root { 
    --neon-blue: #00f2ff; 
    --neon-purple: #bc00ff; 
    --bg-dark: #02060c; 
    --card-bg: #0b121d; 
}

#reviews-body * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

#reviews-body { 
    background-color: var(--bg-dark); 
    color: white; 
    min-height: 100vh; 
    padding: 40px 20px; 
}

#reviews-main-container { 
    max-width: 700px; 
    margin: 0 auto; 
    text-align: center; 
}

#reviews-main-container h2 { 
    font-family: 'Orbitron'; 
    color: var(--neon-blue); 
    margin-bottom: 30px; 
    text-shadow: 0 0 10px var(--neon-blue); 
    text-transform: uppercase; 
}

#reviews-main-container .btn-add { 
    display: inline-block; 
    margin-bottom: 30px; 
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)); 
    color: white; 
    padding: 12px 25px; 
    border-radius: 10px; 
    text-decoration: none; 
    font-family: 'Orbitron'; 
    font-weight: bold; 
    transition: 0.3s; 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); 
}

#reviews-main-container .btn-add:hover { 
    transform: scale(1.05); 
    box-shadow: 0 0 20px var(--neon-blue); 
}

#reviews-main-container .review-card { 
    background: var(--card-bg); 
    border: 1px solid var(--neon-purple); 
    padding: 25px; 
    border-radius: 20px; 
    text-align: left; 
    margin-bottom: 25px; 
    box-shadow: 0 0 15px rgba(188, 0, 255, 0.1); 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
    transition: 0.3s; 
}

#reviews-main-container .review-card:hover { 
    border-color: var(--neon-blue); 
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1); 
}

/* Profile Photo Style */
#reviews-main-container .client-photo { 
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    border: 2px solid var(--neon-blue); 
    object-fit: cover; 
    flex-shrink: 0; 
    box-shadow: 0 0 10px var(--neon-blue); 
    background: #1a2a44; 
}

#reviews-main-container .review-content { flex-grow: 1; }
#reviews-main-container .client-name { font-family: 'Orbitron'; color: var(--neon-blue); font-size: 1.1rem; }
#reviews-main-container .stars-display { color: #ffcc00; margin: 5px 0; font-size: 1.2rem; }
#reviews-main-container .shoot-tag { 
    font-size: 0.75rem; 
    background: rgba(188, 0, 255, 0.1); 
    color: var(--neon-purple); 
    padding: 3px 10px; 
    border-radius: 6px; 
    margin-bottom: 10px; 
    display: inline-block; 
    font-weight: 600; 
}
#reviews-main-container .client-msg { color: #ddd; font-size: 0.95rem; font-style: italic; line-height: 1.6; }

@media (max-width: 480px) {
    #reviews-main-container .review-card { flex-direction: column; align-items: center; text-align: center; }
    #reviews-main-container .client-photo { width: 80px; height: 80px; }
}

/************************************************************/
/* --- Portfolio Page Strict ID Styles --- */

:root {
    --neon-blue: #00f2ff;
    --neon-purple: #bc00ff;
    --bg-dark: #02060c;
}

#portfolio-body { 
    background-color: var(--bg-dark); 
    color: white; 
    margin: 0; 
    padding: 0; 
    font-family: 'Poppins', sans-serif; 
}

/* Header & Logo */
#portfolio-header {
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    background: #02060c;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}
#p-logo { font-family: 'Orbitron'; color: var(--neon-blue); text-decoration: none; font-weight: bold; font-size: 1.3rem; letter-spacing: 1px; }

/* Hero Text Match */
#p-hero { text-align: center; padding: 50px 20px 30px; }
#p-hero h1 { 
    font-family: 'Orbitron'; 
    color: var(--neon-blue); 
    font-size: 3rem; 
    text-shadow: 0 0 25px var(--neon-blue); 
    margin-bottom: 10px;
}
#p-hero p { color: #ccc; font-size: 1.1rem; }

/* Filter Buttons - Exact Purple Glow Match */
#p-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; }
.filter-btn {
    background: transparent; border: 1px solid var(--neon-purple); color: white;
    padding: 8px 25px; border-radius: 20px; cursor: pointer; font-family: 'Orbitron'; font-size: 0.8rem;
}
.filter-btn.active { 
    background: var(--neon-purple); 
    box-shadow: 0 0 25px var(--neon-purple); /* ALL button glow match */
}

/* Grid Layout - Exact 3 Columns */
#p-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    padding: 0 5% 80px;
}
.portfolio-card {
    position: relative; border-radius: 25px; overflow: hidden; /* Round corners match */
    height: 300px; cursor: pointer; 
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox Styling */
#p-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    display: none; justify-content: center; align-items: center; z-index: 2000;
}
#p-lb-img { max-width: 90%; max-height: 85vh; border: 2px solid var(--neon-blue); border-radius: 15px; box-shadow: 0 0 40px var(--neon-blue); }

/* Responsive */
@media (max-width: 1024px) { #p-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #p-grid { grid-template-columns: 1fr; } }

/******************************************************\
/* --- ULTIMATE UNIVERSAL RESPONSIVE FIX --- */

/* 1. Global Reset taaki horizontal scroll na aaye */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Screen se bahar jaane wale content ko chhupane ke liye */
    -webkit-text-size-adjust: 100%;
}

* {
    box-sizing: border-box !important; /* Padding se box bada nahi hoga */
}

/* 2. Portfolio Grid Fix (Mobile par 1 column, Tablet par 2, Desktop par 3) */
#p-grid, #portfolioGrid, .portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; /* Auto adjust logic */
    gap: 15px !important;
    padding: 10px 5% !important;
    width: 100% !important;
}

/* 3. Filter Buttons Mobile Fix */
#p-filters, .filter-container {
    display: flex !important;
    flex-wrap: wrap !important; /* Mobile par buttons niche line mein aa jayenge */
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 10px !important;
}

/* 4. Hero Section & Header Adjustment */
#p-hero, .portfolio-header {
    padding: 40px 15px !important;
}

#p-hero h1, .portfolio-header h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem) !important; /* Screen ke hisaab se font size badlega */
}

/* 5. Mobile Specific Fixes (Phones ke liye) */
@media (max-width: 600px) {
    .portfolio-card {
        height: auto !important; /* Image ki height auto */
        min-height: 200px !important;
    }
    
    #portfolio-header, header {
        padding: 15px 5% !important;
        flex-direction: column !important; /* Logo aur Menu upar-niche */
        text-align: center !important;
    }

    /* Container Box Fix (Booking/Admin boxes ke liye) */
    .container, .booking-box, .affiliate-box, .payment-box, #review-form-wrapper {
        width: 95% !important;
        padding: 15px !important;
    }
}

