    :root {
        --neon-indigo: #b300ff;
        --neon-pink: #ff00aa;
        --dark-bg: #000000;
        --card-bg: rgba(30, 25, 40, 0.95);
        --text-color: #ffffff;
        --filter-bg: rgba(13, 7, 24, 0.98);
        --accent-glow: rgba(179, 0, 255, 0.6);
        --accent-secondary: rgba(255, 0, 170, 0.8);
        --text-secondary: #d0b0ff;
        --text-muted: #a0a0c0;
        --border-glow: rgba(179, 0, 255, 0.4);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: linear-gradient(135deg, #0d0718 0%, #1a0f2d 50%, #0d0718 100%);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-color);
        margin: 0;
        padding: 0;
        min-height: 100vh;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* ===============================
       NAVIGATION - ENHANCED
    ================================*/
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 5%;
        background: rgba(13, 7, 24, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 1px solid var(--border-glow);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 80px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-indigo), transparent);
        opacity: 0.6;
    }

    .navbar.scrolled {
        background: rgba(13, 7, 24, 0.99);
        backdrop-filter: blur(25px) saturate(200%);
        height: 70px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    }

    .logo img {
        height: 45px;
        width: auto;
        display: block;
        filter: drop-shadow(0 0 15px var(--accent-glow));
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo img:hover {
        transform: scale(1.08);
        filter: drop-shadow(0 0 25px var(--accent-secondary));
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
    }

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        color: #e2d9f3;
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links a:hover {
        color: var(--neon-pink);
        text-shadow: 0 0 15px var(--accent-secondary);
        transform: translateY(-1px);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 50%;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-links a:hover::after {
        width: 100%;
        box-shadow: 0 0 10px var(--accent-glow);
    }

    /* ===============================
       BURGER MENU - ENHANCED
    ================================*/
    .burger {
        display: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 26px;
        background: none;
        border: none;
        padding: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1001;
    }

    .burger span {
        height: 3px;
        width: 100%;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        border-radius: 10px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 10px var(--accent-glow);
        display: block;
        transform-origin: center;
        position: relative;
    }

    .burger:hover span {
        background: linear-gradient(90deg, var(--neon-pink), var(--neon-indigo));
        box-shadow: 0 0 15px var(--accent-secondary);
    }

    .burger:hover {
        transform: scale(1.15);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--neon-pink);
        box-shadow: 0 0 15px var(--accent-secondary);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-15px);
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--neon-indigo);
        box-shadow: 0 0 15px var(--accent-glow);
    }

    .burger.active:hover {
        transform: scale(1.15) rotate(90deg);
    }

    /* ===============================
       SIDEBAR - ENHANCED
    ================================*/
    .sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 380px;
        max-width: 90%;
        height: 100vh;
        background: linear-gradient(180deg, #0d0718 0%, #1a0f2d 100%);
        z-index: 1001;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 90px 2rem 2rem;
        border-left: 1px solid var(--border-glow);
        box-shadow: -10px 0 50px rgba(179, 0, 255, 0.3);
        backdrop-filter: blur(20px) saturate(180%);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .sidebar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-indigo), transparent);
    }

    .sidebar.active {
        right: 0;
    }

    .sidebar-close {
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(255, 0, 170, 0.1);
        border: 1px solid var(--border-glow);
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 1002;
        backdrop-filter: blur(10px);
    }

    .sidebar-close:hover {
        color: var(--neon-pink);
        background: rgba(255, 0, 170, 0.2);
        border-color: var(--neon-pink);
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 0 20px var(--accent-secondary);
    }

    .sidebar-links {
        list-style: none;
        width: 100%;
        margin-bottom: 3rem;
    }

    .sidebar-links li {
        margin-bottom: 1.8rem;
        border-bottom: 1px solid rgba(179, 0, 255, 0.15);
        padding-bottom: 1.5rem;
        opacity: 0;
        transform: translateX(60px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar.active .sidebar-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .sidebar.active .sidebar-links li:nth-child(1) { transition-delay: 0.1s; }
    .sidebar.active .sidebar-links li:nth-child(2) { transition-delay: 0.2s; }
    .sidebar.active .sidebar-links li:nth-child(3) { transition-delay: 0.3s; }
    .sidebar.active .sidebar-links li:nth-child(4) { transition-delay: 0.4s; }
    .sidebar.active .sidebar-links li:nth-child(5) { transition-delay: 0.5s; }
    .sidebar.active .sidebar-links li:nth-child(6) { transition-delay: 0.6s; }

    .sidebar-links a {
        text-decoration: none;
        color: #e2d9f3;
        font-size: 1.4rem;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        padding: 0.8rem 0;
        position: relative;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .sidebar-links a:hover {
        color: var(--neon-pink);
        text-shadow: 0 0 20px var(--accent-secondary);
        transform: translateX(15px);
    }

    .sidebar-links a::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        transition: width 0.4s ease;
        border-radius: 2px;
    }

    .sidebar-links a:hover::before {
        width: 12px;
    }

    .sidebar-content {
        margin-top: auto;
        padding-top: 3rem;
        border-top: 1px solid rgba(179, 0, 255, 0.2);
    }

    .sidebar-description {
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }

    .sidebar.active .sidebar-description {
        opacity: 1;
        transform: translateY(0);
    }

    .sidebar-description p {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        margin: 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .sidebar-contact {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    }

    .sidebar.active .sidebar-contact {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-method {
        display: flex;
        align-items: center;
        margin-bottom: 1.2rem;
        padding: 1rem;
        background: rgba(179, 0, 255, 0.08);
        border: 1px solid rgba(179, 0, 255, 0.2);
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .contact-method:hover {
        background: rgba(179, 0, 255, 0.15);
        border-color: rgba(179, 0, 255, 0.4);
        transform: translateX(8px);
        box-shadow: 0 5px 20px rgba(179, 0, 255, 0.2);
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: var(--neon-pink);
        font-size: 1.3rem;
        text-shadow: 0 0 12px var(--accent-secondary);
        transition: all 0.3s ease;
    }

    .contact-method:hover .contact-icon {
        transform: scale(1.2);
    }

    .contact-text {
        color: #e2d9f3;
        font-size: 0.95rem;
        font-weight: 500;
        flex: 1;
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: linear-gradient(135deg, rgba(13, 7, 24, 0.9) 0%, rgba(26, 15, 45, 0.9) 100%);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ===============================
       MAIN CONTENT - ENHANCED
    ================================*/
    .model-main {
        padding-top: 80px;
        min-height: 100vh;
        position: relative;
    }

    .model-main::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(179, 0, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 170, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(13, 7, 24, 0.8) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    .model-section {
        padding: 3rem 1rem;
        position: relative;
    }

    .model-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    /* Back to Gallery - Enhanced */
    .back-to-gallery-wrapper {
        padding: 25px 5%;
        text-align: center;
        position: relative;
    }

    .back-to-gallery-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
        transform: translateY(-50%);
    }

    .back-to-gallery {
        color: var(--neon-pink);
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 24px;
        background: rgba(233, 69, 96, 0.1);
        border: 1px solid rgba(233, 69, 96, 0.3);
        border-radius: 25px;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 2;
    }

    .back-to-gallery:hover {
        color: #fff;
        background: rgba(233, 69, 96, 0.2);
        border-color: var(--neon-pink);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
    }

    .back-icon {
        transition: transform 0.3s ease;
    }

    .back-to-gallery:hover .back-icon {
        transform: translateX(-3px);
    }

    /* Model Navigation - Enhanced */
    .model-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 5%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .nav-button {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 25px;
        background: rgba(233, 69, 96, 0.1);
        border: 2px solid rgba(233, 69, 96, 0.4);
        border-radius: 12px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .nav-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .nav-button:hover {
        background: rgba(233, 69, 96, 0.2);
        border-color: var(--neon-pink);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
    }

    .nav-button:hover::before {
        left: 100%;
    }

    .nav-button .icon svg {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease;
    }

    .nav-button:hover .icon svg {
        transform: scale(1.2);
    }

    /* Model Header - Enhanced */
    .model-header {
        text-align: center;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .page-title {
        font-size: 4rem;
        font-weight: 800;
        color: #fff;
        margin: 0 0 1.5rem 0;
        text-shadow: 0 0 30px var(--accent-glow);
        background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-indigo) 50%, var(--neon-pink) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: shimmer 3s ease-in-out infinite;
        position: relative;
    }

    @keyframes shimmer {
        0%, 100% { background-position: 0% center; }
        50% { background-position: 200% center; }
    }

    /* Photo Grid - Enhanced with Lighthouse */
    .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        margin-top: 40px;
        padding: 0 10px;
    }

    .photo-item {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--card-bg);
        border: 1px solid var(--border-glow);
        position: relative;
        transform-style: preserve-3d;
        perspective: 1000px;
    }

    .photo-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(179, 0, 255, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 2;
    }

    .photo-item:hover {
        transform: translateY(-10px) rotateX(5deg);
        box-shadow: 0 25px 60px rgba(179, 0, 255, 0.3);
        border-color: var(--neon-pink);
    }

    .photo-item:hover::before {
        opacity: 1;
    }

    .photo-item img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(45deg, #1a0f2d, #0d0718);
        position: relative;
    }

    .photo-item:hover img {
        transform: scale(1.08);
        filter: brightness(1.1) contrast(1.05);
    }

    /* Lighthouse Preview - Enhanced */
    .lighthouse-preview {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(13, 7, 24, 0.95) 0%, rgba(26, 15, 45, 0.9) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        z-index: 3;
    }

    .photo-item:hover .lighthouse-preview {
        opacity: 1;
    }

    .preview-btn {
        background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink));
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 20px rgba(179, 0, 255, 0.4);
        position: relative;
        overflow: hidden;
    }

    .preview-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .preview-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(179, 0, 255, 0.6);
    }

    .preview-btn:hover::before {
        left: 100%;
    }

    /* No Photos Placeholder */
    .no-photos-placeholder {
        width: 100%;
        height: 450px;
        background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 25, 40, 0.8) 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        border: 2px dashed var(--border-glow);
        border-radius: 20px;
        transition: all 0.4s ease;
    }

    .photo-item:hover .no-photos-placeholder {
        border-color: var(--neon-pink);
        background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 25, 40, 0.9) 100%);
    }

    .no-photos-placeholder i {
        font-size: 4rem;
        margin-bottom: 20px;
        opacity: 0.7;
        transition: all 0.4s ease;
    }

    .photo-item:hover .no-photos-placeholder i {
        transform: scale(1.1);
        opacity: 1;
        color: var(--neon-pink);
    }

    .no-photos-placeholder p {
        font-size: 1.2rem;
        font-weight: 500;
    }

    /* Model Details Grid - Enhanced */
    .model-details-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        margin-bottom: 80px;
        padding: 0 20px;
    }

    @media (max-width: 1024px) {
        .model-details-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    /* Model Info Column - Enhanced */
    .model-info-column {
        background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 25, 40, 0.9) 100%);
        padding: 40px 35px;
        border-radius: 25px;
        border: 1px solid var(--border-glow);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        position: relative;
        overflow: hidden;
    }

    .model-info-column::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        opacity: 0.8;
    }

    .model-name-section {
        margin-bottom: 30px;
        text-align: center;
    }

    .model-name-section h3 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    /* Model Attributes - Enhanced */
    .model-attributes {
        margin-bottom: 35px;
    }

    .model-attributes p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 18px 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        transition: all 0.3s ease;
    }

    .model-attributes p:hover {
        border-bottom-color: rgba(179, 0, 255, 0.3);
        transform: translateX(5px);
    }

    .model-attributes p::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        background: var(--neon-pink);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .model-attributes p:hover::before {
        width: 6px;
        height: 6px;
    }

    .label {
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 1.1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .value {
        font-weight: 500;
        color: #ffffff;
        font-size: 1.1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .value.blurred {
        color: rgba(255, 255, 255, 0.6);
        filter: blur(0.5px);
    }

    /* Rates Table - Enhanced */
    .rates-table {
        width: 100%;
        margin: 40px 0 25px 0;
        border-collapse: collapse;
        background: rgba(13, 7, 24, 0.8);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-glow);
    }

    .rates-table th,
    .rates-table td {
        padding: 18px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(179, 0, 255, 0.2);
        transition: all 0.3s ease;
    }

    .rates-table th {
        background: linear-gradient(135deg, rgba(179, 0, 255, 0.2) 0%, rgba(255, 0, 170, 0.2) 100%);
        font-weight: 700;
        color: #ffffff;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .rates-table tr:hover {
        background: rgba(179, 0, 255, 0.1);
    }

    .rates-table tr:last-child td {
        border-bottom: none;
    }

    .pink-line {
        background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-indigo) 100%);
        color: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        margin-top: 30px;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 5px 20px rgba(179, 0, 255, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pink-line:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(179, 0, 255, 0.5);
    }

    .pink-line span {
        color: #000;
        font-weight: 800;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }

    .pink-line:hover span {
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    /* Content Column - Enhanced */
    .model-content-column {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .content-section {
        background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 25, 40, 0.9) 100%);
        padding: 40px 35px;
        border-radius: 25px;
        border: 1px solid var(--border-glow);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        position: relative;
        overflow: hidden;
    }

    .content-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        opacity: 0.8;
    }

    .content-section h3 {
        font-size: 2rem;
        margin-bottom: 25px;
        background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-indigo) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    .content-text {
        color: var(--text-color);
        line-height: 1.8;
        font-size: 1.1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Tags Container - Enhanced */
    .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-tag {
        background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink));
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        text-transform: capitalize;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(179, 0, 255, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .btn-tag::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn-tag:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(179, 0, 255, 0.5);
    }

    .btn-tag:hover::before {
        left: 100%;
    }

    /* Booking Card - Enhanced */
    .booking-card {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 40px 35px;
        border-radius: 25px;
        border: 2px solid var(--neon-pink);
        box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
        backdrop-filter: blur(15px);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .booking-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 0, 170, 0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .booking-title h3 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: #ffffff;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 2;
    }

    .highlight-name {
        background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-indigo) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .booking-subtitle {
        color: var(--text-secondary);
        margin-bottom: 30px;
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
    }

    .button-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .action-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 30px;
        border-radius: 15px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-width: 200px;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .whatsapp-btn {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

    .telegram-btn {
        background: linear-gradient(135deg, #0088cc, #005999);
    }

    .action-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .pulse-effect {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.7s ease;
    }

    .action-btn:hover .pulse-effect {
        left: 100%;
    }

    .booking-footer {
        margin-top: 25px;
        color: var(--text-secondary);
        font-size: 1rem;
        position: relative;
        z-index: 2;
    }

    .booking-footer i {
        margin-right: 10px;
        color: var(--neon-pink);
        text-shadow: 0 0 10px var(--accent-secondary);
    }

    /* Reviews Section - Enhanced */
    .reviews-section {
        background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 25, 40, 0.9) 100%);
        padding: 50px 40px;
        border-radius: 25px;
        border: 1px solid var(--border-glow);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        margin-top: 50px;
        position: relative;
        overflow: hidden;
    }

    .reviews-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        opacity: 0.8;
    }

    .reviews-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
        background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-indigo) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .review-summary {
        text-align: center;
        margin-bottom: 40px;
        padding: 30px;
        background: rgba(13, 7, 24, 0.8);
        border-radius: 20px;
        border: 1px solid var(--border-glow);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .review-summary p {
        font-size: 1.3rem;
        margin: 10px 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .review-summary strong {
        background: linear-gradient(135deg, var(--neon-pink), var(--neon-indigo));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.5rem;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 25px;
    }

    .review-card {
        background: rgba(13, 7, 24, 0.8);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid var(--border-glow);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--neon-indigo), var(--neon-pink));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .review-card:hover {
        transform: translateY(-8px);
        border-color: var(--neon-pink);
        box-shadow: 0 15px 40px rgba(179, 0, 255, 0.2);
    }

    .review-card:hover::before {
        opacity: 1;
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.4rem;
        box-shadow: 0 5px 15px rgba(179, 0, 255, 0.3);
        transition: all 0.3s ease;
    }

    .review-card:hover .review-avatar {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(179, 0, 255, 0.4);
    }

    .avatar-letter {
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .review-author {
        margin: 0;
        font-size: 1.3rem;
        color: #ffffff;
        font-weight: 600;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .review-rating {
        margin-top: 8px;
    }

    .star {
        color: #ffd700;
        margin-right: 3px;
        font-size: 1.2rem;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        transition: all 0.3s ease;
    }

    .star:not(.filled) {
        color: #666;
        text-shadow: none;
    }

    .review-card:hover .star.filled {
        transform: scale(1.2);
    }

    .review-content {
        color: var(--text-color);
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 1.1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .review-date {
        color: var(--text-secondary);
        font-size: 1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .no-reviews {
        text-align: center;
        color: var(--text-secondary);
        font-style: italic;
        padding: 60px 40px;
        font-size: 1.2rem;
        grid-column: 1 / -1;
    }

    /* Animations */
    .animated-element {
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Loading Animation */
    @keyframes loading {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .photo-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
        .page-title {
            font-size: 3.5rem;
        }
    }

    @media (max-width: 992px) {
        .nav-links {
            gap: 2rem;
        }
        
        .nav-links a {
            font-size: 1rem;
        }
        
        .model-details-grid {
            gap: 40px;
        }
        
        .reviews-grid {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .nav-links { 
            display: none; 
        }
        .burger { 
            display: flex; 
        }

        .navbar {
            padding: 0.7rem 5%;
            height: 70px;
        }

        .logo img {
            height: 35px;
        }

        .model-main {
            padding-top: 70px;
        }

        .page-title {
            font-size: 2.8rem;
        }

        .photo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .model-details-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }

        .model-info-column,
        .content-section {
            padding: 30px 25px;
        }

        .button-group {
            flex-direction: column;
        }

        .action-btn {
            min-width: auto;
            width: 100%;
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .model-navigation {
            flex-direction: column;
            gap: 20px;
        }

        .nav-button {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .page-title {
            font-size: 2.2rem;
        }
        
        .model-info-column,
        .content-section {
            padding: 25px 20px;
        }
        
        .photo-item img {
            height: 350px;
        }
        
        .no-photos-placeholder {
            height: 350px;
        }
        
        .reviews-section {
            padding: 30px 20px;
        }
        
        .review-card {
            padding: 25px 20px;
        }
    }

    /* Scrollbar Styling */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(13, 7, 24, 0.8);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--neon-indigo), var(--neon-pink));
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, var(--neon-pink), var(--neon-indigo));
    }