@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --bg-color: #000000;
    --light-color: #e8e8e8;
    --text-light: #d4d4d4;
    --text-silver: #c0c0c0;
    --accent: #c0c0c0;
    --dark-color: #1a1a1a;
    --lighter-black: #2a2a2a;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    --royal-glow: rgba(192, 192, 192, 0.2);
    --border-radius: 8px;
    --hover-silver: rgba(192, 192, 192, 0.3);
    --hover-silver-light: rgba(192, 192, 192, 0.2);
    --hover-silver-dark: rgba(192, 192, 192, 0.4);
}

/* Custom font removed - using Playfair Display instead */

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

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    scroll-snap-type: none;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1024px) {
    body {
        cursor: none;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.preloader-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(192, 192, 192, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    background: var(--lighter-black);
    width: 0%;
    animation: progressLoad 1.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressLoad {
    to {
        width: 100%;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(192, 192, 192, 0.1);
    z-index: 1001;
    pointer-events: none;
    border-radius: var(--border-radius);
}

/* When model-nav-info exists, move scroll-progress to bottom */
.bottom-navbar:has(.model-nav-info) .scroll-progress {
    top: auto;
    bottom: 0;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s ease;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none !important;
    z-index: 10001; /* Above mobile menu overlay (9999) */
    mix-blend-mode: difference;
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor {
        display: block;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--text-silver);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border-color: var(--text-silver);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.custom-cursor.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
}

.custom-cursor.hover .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--text-silver);
}

.custom-cursor.click .cursor-outline {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Bottom Navigation Bar - Glass Effect */
.bottom-navbar {
    position: fixed !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 4rem) !important;
    max-width: 1200px !important;
    z-index: 10000 !important;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: visible;
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Ensure model-nav-info is visible and not covered */
.bottom-navbar:has(.model-nav-info) {
    z-index: 1001;
    overflow: visible;
}

.bottom-navbar.navbar-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(100px) !important;
    visibility: hidden !important;
}

/* Model Info at Top of Navbar (for Reels page) - Positioned ABOVE navbar */
.model-nav-info {
    position: fixed !important;
    bottom: calc(1rem + 80px) !important; /* Above bottom navbar */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 4rem) !important;
    max-width: 1200px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    background: rgba(192, 192, 192, 0.25) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-sizing: border-box !important;
    z-index: 1003 !important;
    flex-shrink: 0 !important;
    flex-wrap: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3) !important;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(192, 192, 192, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 0 0 8px 8px;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Model Nav Buttons - styled like top buttons */
.model-nav-name-btn,
.model-nav-see-more-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(192, 192, 192, 0.1);
    color: var(--text-light);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.model-nav-see-more-btn:last-child {
    border-right: none;
}

.model-nav-name-btn::before,
.model-nav-see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.model-nav-name-btn span,
.model-nav-see-more-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-nav-name-btn:hover,
.model-nav-see-more-btn:hover {
    color: var(--bg-color);
}

.model-nav-name-btn:hover::before,
.model-nav-see-more-btn:hover::before {
    left: 0;
}

/* Mobile styles for model-nav-info */
@media (max-width: 768px) {
    .model-nav-info {
        bottom: calc(2rem + 80px) !important;
        width: calc(100% - 2rem) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 0 !important;
    }
    
    .model-nav-name-btn,
    .model-nav-see-more-btn {
        padding: 1rem 0.8rem !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        min-width: 0;
    }
    
    .model-nav-name-btn span,
    .model-nav-see-more-btn span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

.model-nav-expand-btn {
    background: rgba(192, 192, 192, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    padding: 0;
}

.model-nav-expand-btn:hover {
    background: var(--hover-silver);
    border-color: var(--text-silver);
    color: var(--text-silver);
}

.model-nav-expand-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-profile {
    display: flex;
    align-items: center;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle-btn:hover {
    color: var(--text-silver);
}

.menu-plus {
    font-size: 1rem;
    font-weight: 300;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    padding: 0.5rem 0;
    text-align: center;
}

.mobile-menu-overlay.active .menu-close-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.menu-close-btn:hover {
    color: var(--text-silver);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.mobile-menu-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    padding: 0.5rem 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-link:hover {
    color: var(--text-silver);
}

.mobile-menu-link.contact-btn {
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: rgba(192, 192, 192, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--border-radius);
    color: var(--bg-color);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-link.contact-btn:hover {
    background: rgba(192, 192, 192, 1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 8rem 4rem 12rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 8rem 4rem 12rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
    mix-blend-mode: normal;
}

.hero-circle-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.6), rgba(255, 255, 255, 0.3));
    top: 10%;
    left: 10%;
    animation: floatCircle1 20s ease-in-out infinite;
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.5), rgba(255, 255, 255, 0.25));
    top: 60%;
    right: 15%;
    animation: floatCircle2 25s ease-in-out infinite;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.45), rgba(255, 255, 255, 0.2));
    bottom: 10%;
    left: 20%;
    animation: floatCircle3 30s ease-in-out infinite;
}

.hero-circle-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.55), rgba(255, 255, 255, 0.28));
    top: 30%;
    right: 30%;
    animation: floatCircle4 22s ease-in-out infinite;
}

.hero-circle-5 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.5), rgba(255, 255, 255, 0.22));
    bottom: 20%;
    right: 10%;
    animation: floatCircle5 28s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-50px, 30px) scale(1.15);
    }
    66% {
        transform: translate(25px, -35px) scale(0.9);
    }
}

@keyframes floatCircle3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(40px, -25px) scale(1.08);
    }
    40% {
        transform: translate(-30px, 40px) scale(0.92);
    }
    60% {
        transform: translate(25px, 30px) scale(1.12);
    }
    80% {
        transform: translate(-20px, -35px) scale(0.98);
    }
}

@keyframes floatCircle4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(-35px, 25px) scale(1.1);
    }
    60% {
        transform: translate(30px, -20px) scale(0.95);
    }
}

@keyframes floatCircle5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(35px, 40px) scale(1.12);
    }
    50% {
        transform: translate(-25px, -30px) scale(0.88);
    }
    75% {
        transform: translate(20px, 25px) scale(1.05);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 8.5vw, 6.5rem);
    color: var(--text-light);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -3px;
    text-shadow: 0 0 50px rgba(192, 192, 192, 0.2);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.hero-section .submit-btn {
    margin-top: 0;
    display: inline-block;
    text-decoration: none;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    padding: 2rem 0;
}

/* Projects Section */
.projects-section {
    padding: 6rem 4rem;
    position: relative;
}

.projects-section .category-slider-wrapper {
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.projects-section .projects-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.projects-section .pagination {
    padding: 1rem 0;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .projects-section .category-slider-wrapper {
        padding: 1rem 2rem;
        margin-bottom: 1rem;
    }
    
    .projects-section .pagination {
        padding: 1rem 2rem;
        margin-top: 1rem;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .projects-section .pagination-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 0;
    }
    
    .projects-section .pagination-info {
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.project-item {
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.project-item:last-child {
    border-bottom: none;
}


.project-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.15);
}

.project-item:hover::after {
    width: 0;
}

.project-image-link {
    text-decoration: none;
    display: block;
    width: 50%;
    flex-shrink: 0;
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: transparent;
    position: relative;
    cursor: pointer;
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.project-image-link:hover .project-image-overlay {
    opacity: 1;
}

.project-view-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: grayscale(20%) contrast(1.1);
}

.project-image-link:hover .project-img {
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
    opacity: 1;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-category {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(192, 192, 192, 0.15);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.project-item:hover .project-category {
    background: rgba(192, 192, 192, 0.25);
}

.project-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.project-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text-light);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    margin: 0;
}

.project-title-link:hover .project-title {
    color: var(--text-silver);
}

.project-link {
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-silver);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.project-link span,
.project-link {
    position: relative;
    z-index: 1;
    color: inherit;
}

.project-link:hover,
.project-link:hover span {
    color: var(--bg-color);
    border-color: var(--text-silver);
}

.project-link:hover::before {
    left: 0;
}

/* About Section */
.about-section {
    padding: 8rem 4rem;
    position: relative;
}

.about-section .section-content {
    position: relative;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    opacity: 0.9;
}

.about-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.about-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--lighter-black);
}

.about-label-number {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.about-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--lighter-black);
    opacity: 0.5;
}

.about-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    padding: 2rem 0;
    position: relative;
}

/* Clients Section */
.clients-section {
    padding: 8rem 4rem;
}

/* Models Section */
.models-section {
    padding: 8rem 4rem;
}

.models-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.models-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--lighter-black);
    opacity: 0.5;
}

.models-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2rem;
    font-weight: 300;
    padding: 1.5rem 0;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.model-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.model-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--lighter-black);
    transition: width 0.3s ease;
    opacity: 0.5;
}


.model-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.15);
}

.model-item:hover::after {
    width: 0;
}

.model-image-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.model-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.model-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.model-image-link:hover .model-image-overlay {
    opacity: 1;
}

.model-view-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

.model-image-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(192, 192, 192, 0.4);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    z-index: 3;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.model-image-link:hover .model-img {
    filter: brightness(1.1);
    opacity: 1;
}

.model-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.model-link:hover .model-name {
    color: var(--text-silver);
}

.model-name {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
    transition: all 0.3s ease;
}

.model-category {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(192, 192, 192, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.model-item:hover .model-category {
    background: rgba(192, 192, 192, 0.25);
}

.profile-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
}

.clients-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    margin-bottom: 4rem;
}

/* Clients Logo Slider */
.clients-logo-slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.logo-slider-row {
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.logo-slider-row:last-child {
    margin-bottom: 0;
}

.logo-slider-track {
    display: flex;
    gap: 4rem;
    width: fit-content;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    padding: 1.5rem 3rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item .logo-img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.logo-item:hover .logo-img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.logo-item span {
    display: block;
}

/* Animation for different rows - different speeds and directions */
.logo-slider-track-1 {
    animation: slideLeft 30s linear infinite;
}

.logo-slider-track-2 {
    animation: slideRight 35s linear infinite;
}

.logo-slider-track-3 {
    animation: slideLeft 40s linear infinite;
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Collaboration Section */
.collaboration-section {
    padding: 8rem 4rem;
}

.collaboration-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.collaboration-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--lighter-black);
}

.collaboration-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.collaboration-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--lighter-black);
    opacity: 0.5;
}

.collaboration-content {
    max-width: 800px;
}

.collaboration-partner {
    margin-bottom: 3rem;
}

.partner-link {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-link:hover {
    color: var(--text-silver);
}

.partner-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius);
    opacity: 0.9;
}

.partner-link:hover .partner-logo {
    opacity: 1;
}

.partner-name {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.partner-link:hover .partner-name {
    color: var(--text-silver);
}

.partner-tagline {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 1px;
}

.partner-link:hover .partner-logo {
    opacity: 1;
}

.collaboration-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Services Section */
.services-section {
    padding: 8rem 4rem;
}

.services-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.services-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--lighter-black);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.15);
}

.service-card-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(192, 192, 192, 0.05);
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover .service-card-img {
    filter: brightness(1.1);
}

.service-card-view-text {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-number {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-silver);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.service-card-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-title-link:hover .service-card-title {
    color: var(--text-silver);
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex: 1;
}

.service-card-cta {
    margin-top: auto;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-silver);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.service-card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.service-card-cta span,
.service-card-cta {
    position: relative;
    z-index: 1;
    color: inherit;
}

.service-card-cta:hover,
.service-card-cta:hover span {
    color: var(--bg-color);
    border-color: var(--text-silver);
}

.service-card-cta:hover::before {
    left: 0;
}

.service-card-cta span {
    display: inline-block;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--lighter-black);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.service-item:last-child {
    border-bottom: none;
}


.service-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.15);
}

.service-item:hover::after {
    width: 0;
}

.service-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    color: var(--text-light);
    font-weight: 400;
    min-width: 80px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-number {
    opacity: 1;
}

.service-content {
    flex: 1;
}

.service-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.15rem);
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: -1px;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-title-link:hover .service-title {
    color: var(--text-silver);
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.service-cta-link {
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-silver);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.service-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.service-cta-link span,
.service-cta-link {
    position: relative;
    z-index: 1;
    color: inherit;
}

.service-cta-link:hover,
.service-cta-link:hover span {
    color: var(--bg-color);
    border-color: var(--text-silver);
}

.service-cta-link:hover::before {
    left: 0;
}

.service-image-link {
    text-decoration: none;
    display: block;
    width: 300px;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.service-image-link:hover .service-image-overlay {
    opacity: 1;
}

.service-view-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.service-image-link:hover .service-img {
    filter: brightness(1.1);
    opacity: 1;
}


/* Contact Section */
.contact-section {
    padding: 8rem 4rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.contact-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--lighter-black);
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.contact-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--lighter-black);
    opacity: 0.5;
}

.contact-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 300;
    padding: 1.5rem 0;
    display: inline-block;
}

.contact-label-number {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-form {
    max-width: 800px;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
}

.contact-form input:focus {
    outline: none;
    border-bottom: 1px solid var(--text-silver);
    box-shadow: 0 1px 0 0 var(--text-silver);
}

.contact-form input:hover {
    border-bottom-color: rgba(192, 192, 192, 0.5);
}

.contact-form input::placeholder {
    color: var(--text-light);
    opacity: 0.5;
    font-weight: 300;
}

.submit-btn {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-silver);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.submit-btn span,
.submit-btn {
    position: relative;
    z-index: 1;
    color: inherit;
}

.submit-btn:hover,
.submit-btn:hover span {
    color: var(--bg-color);
    border-color: var(--text-silver);
}

.submit-btn:hover::before {
    left: 0;
}

/* Footer */
.footer {
    padding: 6rem 4rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-email {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.footer-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.footer-nav a:hover {
    color: var(--text-silver);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--text-silver);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.6;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        padding: 6rem 2rem 10rem;
    }
    
    .project-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .project-image-link {
        width: 100%;
    }
    
    .project-image {
        width: 100%;
        height: 260px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-image-link {
        width: 100%;
    }
    
    .service-image {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper {
        min-height: 250px;
    }
    
    .models-title::before,
    .about-title::before,
    .contact-title::before,
    .collaboration-title::before,
    .service-subservices-title::before {
        display: none;
    }
    
    .service-subservices-title {
        padding-left: 0;
    }
    
    .hero-subtitle {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-description,
    .about-description,
    .collaboration-description,
    .contact-description,
    .models-description,
    .project-detail-description,
    .service-detail-description,
    .model-bio-text,
    .subservice-description {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .bottom-navbar {
        bottom: 2rem;
        width: calc(100% - 2rem);
    }
    
    .bottom-nav-container {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .collaboration-section {
        padding: 6rem 2rem;
    }
    
    .collaboration-title {
        margin-bottom: 2rem;
    }
    
    .collaboration-partner {
        margin-bottom: 2rem;
    }
    
    .collaboration-description {
        font-size: 1rem;
    }
    
    .clients-logo-slider {
        max-width: 100%;
    }
    
    .logo-item {
        min-width: 150px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .logo-slider-track {
        gap: 2rem;
    }
    
    .models-section {
        padding: 6rem 2rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .model-image {
        height: 400px;
    }
    
    .bottom-nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .profile-picture {
        width: 60px;
        height: 60px;
    }
    
    .menu-toggle-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 6rem 1.5rem 10rem;
    }
    
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 10rem;
    }
    
    /* Reduce circles on mobile for better performance */
    .hero-circle-3,
    .hero-circle-5 {
        display: none;
    }
    
    .hero-circle-1,
    .hero-circle-2,
    .hero-circle-4 {
        filter: blur(50px);
        opacity: 0.3;
    }
    
    .hero-circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .hero-circle-2 {
        width: 120px;
        height: 120px;
    }
    
    .hero-circle-4 {
        width: 100px;
        height: 100px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .contact-section {
        padding: 6rem 2rem 10rem;
    }
    
    .projects-section {
        height: 100vh;
    }
    
    .projects-section .category-slider-wrapper {
        padding: 1.5rem 2rem 1rem;
    }
    
    .projects-section .projects-container {
        padding: 1.5rem 2rem;
    }
    
    .projects-section .pagination {
        padding: 1.5rem 2rem 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mobile-menu-link {
        font-size: 1rem;
    }
    
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 1rem 8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-image {
        height: 250px;
    }
}

/* Project Detail Page */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--text-silver);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
}

.back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.back-link {
    color: #ffffff;
}

.back-link *,
.back-link i,
.back-link p {
    position: relative;
    z-index: 2;
    color: #ffffff;
    transition: color 0.3s ease;
    margin: 0;
    padding: 0;
    display: inline;
}

.back-link p {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

.back-link:hover,
.back-link:hover *,
.back-link:hover i,
.back-link:hover p {
    border-color: var(--text-silver);
    color: #000000;
}

.back-link:hover::before {
    left: 0;
}

.project-detail-header {
    margin-bottom: 4rem;
}

.project-detail-category {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.project-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.project-detail-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 1rem;
}

.project-detail-hero {
    width: 100%;
    height: 500px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-detail-hero:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.2);
}

.project-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-detail-hero:hover .project-detail-hero-img {
    filter: brightness(1.1) contrast(1.05);
    opacity: 1;
    transform: scale(1.02);
}

.project-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.project-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.project-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
}



.project-info-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.project-info-value {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.project-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-detail-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.project-detail-paragraph {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.project-detail-gallery {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover {
    background: transparent;
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.25);
    transform: translateY(-4px);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: var(--text-light);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    transform: scale(0.9);
}

.gallery-item:hover .gallery-item-overlay i {
    opacity: 1;
    transform: scale(1);
}

.gallery-item-large {
    grid-column: 1 / -1;
    height: 500px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    filter: brightness(1.15) contrast(1.05);
    opacity: 1;
    transform: scale(1.05);
}

.next-project-section {
    padding: 8rem 4rem;
}

.next-project-content {
    text-align: center;
}

.next-project-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.next-project-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.next-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.next-project-link:hover {
    color: var(--text-silver);
}

/* Model Detail Page */
/* Instagram Reels-style Container */
.model-reels-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-color);
    z-index: 1;
}

/* Ensure navbar is visible on Reels page */
body:has(.model-reels-container) .bottom-navbar {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
}

/* Top Buttons Container */
.model-reels-top-buttons {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    gap: 0;
    z-index: 100;
    align-items: stretch;
    background: rgba(192, 192, 192, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

/* Ensure model-nav-info is above top buttons when visible */
.bottom-navbar:has(.model-nav-info) {
    z-index: 1001;
}

.model-reels-filter-btn,
.model-reels-book-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(192, 192, 192, 0.1);
    color: var(--text-light);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.model-reels-book-btn:last-child {
    border-right: none;
}

.model-reels-filter-btn::before,
.model-reels-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.model-reels-filter-btn span,
.model-reels-book-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-reels-filter-btn:hover,
.model-reels-book-btn:hover {
    color: var(--bg-color);
}

.model-reels-filter-btn:hover::before,
.model-reels-book-btn:hover::before {
    left: 0;
}

.model-reels-filter-dropdown {
    position: fixed;
    top: 9rem; /* Below top buttons (4.5rem) + navbar (4.5rem) */
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(192, 192, 192, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    opacity: 0;
    visibility: hidden;
    
    transition: all 0.3s ease;
    z-index: 101;
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    overflow-y: auto;
}

.model-reels-filter-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover,
.filter-option.active {
    background: var(--hover-silver-light);
    color: var(--text-silver);
}

/* Instagram Reels-style Feed */
.model-reels-feed {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    scroll-padding-bottom: 0;
    /* Enable mouse wheel scrolling on desktop */
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    /* Smooth scrolling for desktop */
    scrollbar-width: thin;
    scrollbar-color: rgba(192, 192, 192, 0.3) transparent;
    position: relative;
    will-change: scroll-position;
}

/* Custom scrollbar for desktop */
.model-reels-feed::-webkit-scrollbar {
    width: 6px;
}

.model-reels-feed::-webkit-scrollbar-track {
    background: transparent;
}

.model-reels-feed::-webkit-scrollbar-thumb {
    background: rgba(192, 192, 192, 0.3);
    border-radius: var(--border-radius);
}

.model-reels-feed::-webkit-scrollbar-thumb:hover {
    background: rgba(192, 192, 192, 0.5);
}

/* Footer at bottom of feed */
/* Footer removed from model reels page */

.model-reel-item {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Instagram-style Model Carousel */
.model-carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    gap: 0;
}

.model-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-color);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pan-x;
    transition: opacity 0.2s ease;
}

.model-carousel-wrapper:active {
    cursor: grabbing;
}

.model-carousel-wrapper:active {
    cursor: grabbing;
}

.model-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.model-carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

.model-carousel-slide.active {
    opacity: 1 !important;
}

.model-carousel-media-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-carousel-media {
    display: block !important;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
}

/* For reel format images - full height, auto width, centered */
.model-carousel-media-wrapper img.model-carousel-media {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

/* For videos - full cover */
.model-carousel-media-wrapper video.model-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* For reel format - full height, width auto, centered */
.model-carousel-media[src*=".jpg"],
.model-carousel-media[src*=".jpeg"],
.model-carousel-media[src*=".png"],
.model-carousel-media[src*=".webp"],
.model-carousel-media[src*=".gif"] {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

/* Video styling - full cover */
.model-carousel-media[src*=".mp4"],
.model-carousel-media[src*=".webm"],
.model-carousel-media[src*=".mov"],
video.model-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Loading spinner removed - no longer needed */

/* Spinner removed - no longer needed */

.model-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.model-carousel-wrapper:hover .model-carousel-nav {
    opacity: 0.8;
    pointer-events: all;
}

.model-carousel-prev {
    left: 1rem;
}

.model-carousel-next {
    right: 1rem;
}

.model-carousel-nav:hover {
    opacity: 1 !important;
    color: var(--text-silver);
}

.model-carousel-nav i {
    font-size: 1.5rem;
}

/* Instagram-style dots indicator */
.model-carousel-dots {
    position: absolute;
    bottom: calc(1rem + 100px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    z-index: 15;
    padding: 3.5rem 1rem;
    border-radius: var(--border-radius);
    pointer-events: none;
}

.model-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    display: block;
}

.model-carousel-dot.active {
    width: 24px;
    height: 6px;
    border-radius: var(--border-radius);
    background: #ffffff;
    box-shadow: 0 0 12px rgba(192, 192, 192, 0.8);
}

/* Removed old overlay - now using top panel for info display */


/* Model Info Panel - Slides down from top when See More is clicked */
.model-info-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(192, 192, 192, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.model-info-panel.show {
    transform: translateY(0);
}

.model-info-panel-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: calc(4.5rem + 4.5rem + 2rem); /* Below top buttons + navbar */
    min-height: 100vh;
    box-sizing: border-box;
}

.model-info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.model-info-panel-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -1px;
    margin: 0;
}

.model-info-panel-close {
    background: transparent;
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.model-info-panel-close:hover {
    border-color: var(--text-silver);
    color: var(--text-silver);
}

.model-info-panel-body {
    color: var(--text-light);
}

.model-info-category {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.model-info-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.model-info-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-info-spec-label {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.model-info-spec-value {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.model-info-bio {
    margin-bottom: 2.5rem;
}

.model-info-bio-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.model-info-bio-text {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.model-info-actions {
    margin-top: 2rem;
}

.model-info-book-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-silver);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-info-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.model-info-book-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-info-book-btn:hover {
    color: var(--bg-color);
}

.model-info-book-btn:hover::before {
    left: 0;
}

.model-detail-name {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    margin-bottom: 0.5rem;
}

.model-detail-category {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.model-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}


.model-spec-item:hover {
    background: transparent;
}

.model-spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.model-spec-value {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.model-detail-bio {
    margin-top: 1rem;
}

.model-bio-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.model-bio-text {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.model-detail-contact {
    margin-top: 2rem;
}

.model-contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-light);
    border: none;
    border-bottom: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-top: 1.5rem;
}

.model-contact-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lighter-black);
    transition: width 0.3s ease;
    z-index: 0;
}

.model-contact-btn span,
.model-contact-btn {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-contact-btn:hover,
.model-contact-btn:hover span {
    color: var(--text-silver);
    border-bottom-color: var(--text-silver);
}

.model-contact-btn:hover::before {
    width: 100%;
}

.model-detail-portfolio {
    margin-top: 6rem;
}

.model-portfolio-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.model-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-overlay i {
    color: var(--text-light);
    font-size: 2rem;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-overlay i {
    opacity: 1;
}


.portfolio-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 8px 24px rgba(192, 192, 192, 0.15);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    filter: brightness(1.1);
    opacity: 1;
}

/* Article Detail Page */
.article-detail-section {
    padding: 8rem 4rem;
}

.article-detail-header {
    margin-bottom: 4rem;
}

.article-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date,
.article-category {
    font-weight: 300;
}

.article-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.article-detail-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    font-weight: 300;
}

.article-detail-hero {
    width: 100%;
    height: 420px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
}

.article-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-paragraph {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.9;
    font-weight: 300;
}

.article-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -1px;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-heading:first-of-type {
    margin-top: 0;
}

.next-article-section {
    padding: 8rem 4rem;
}

.next-article-content {
    text-align: center;
}

.next-article-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.next-article-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.next-article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.next-article-link:hover {
    color: var(--text-silver);
}

/* Article Detail Page */
.article-detail-section {
    padding: 8rem 4rem;
}

.article-detail-header {
    margin-bottom: 4rem;
}

.article-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date,
.article-category {
    font-weight: 300;
}

.article-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.article-detail-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    font-weight: 300;
}

.article-detail-hero {
    width: 100%;
    height: 420px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
}

.article-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-paragraph {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.9;
    font-weight: 300;
}

.article-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -1px;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-heading:first-of-type {
    margin-top: 0;
}

.next-article-section {
    padding: 8rem 4rem;
}

.next-article-content {
    text-align: center;
}

.next-article-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.next-article-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.next-article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.next-article-link:hover {
    color: var(--text-silver);
}

/* Publikime Page */
.publikime-hero-section {
    padding: 8rem 4rem 4rem;
}

.publikime-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.publikime-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.publikime-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--lighter-black);
}

.publikime-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.publikime-hero-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 2rem;
}

.publikime-posts-section {
    padding: 4rem 4rem 8rem;
}

.publikime-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.publikime-post {
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.publikime-post::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--lighter-black);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.publikime-post:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 16px 48px rgba(192, 192, 192, 0.2);
    transform: translateY(-4px);
}

.publikime-post:hover::after {
    width: 0;
}

.publikime-post-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.publikime-post:hover .publikime-post-link {
    transform: translateY(-2px);
}

.publikime-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: transparent;
    position: relative;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
}

.publikime-post:hover .publikime-post-image {
    background: transparent;
    transform: scale(1.02);
}

.publikime-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.publikime-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.publikime-post:hover .publikime-post-overlay {
    opacity: 1;
}

.publikime-post:hover .publikime-post-img {
    opacity: 1;
    filter: brightness(1.15) contrast(1.05);
    transform: scale(1.05);
}

.publikime-post-read {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.publikime-post-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.publikime-post-date {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.publikime-post:hover .publikime-post-date {
    opacity: 1;
}

.publikime-post-title {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
    margin: 0;
}

.publikime-post:hover .publikime-post-title {
    color: var(--text-silver);
}

.publikime-post-excerpt {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.publikime-post:hover .publikime-post-excerpt {
    opacity: 1;
}

.publikime-post-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(192, 192, 192, 0.15);
    border-radius: var(--border-radius);
}

/* Image Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(192, 192, 192, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-color: var(--text-silver);
    color: var(--text-light);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.lightbox-close:hover {
    background: var(--text-silver);
    color: var(--bg-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border-color: var(--text-silver);
    color: var(--text-light);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--text-silver);
    color: var(--bg-color);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        
    }
    to {
        opacity: 1;
        
    }
}

/* Responsive for new pages */
@media (max-width: 1024px) {
    .project-detail-content {
        grid-template-columns: 1fr;
    }
    
    .project-detail-gallery {
        grid-template-columns: 1fr;
    }
    
    .model-detail-header {
        grid-template-columns: 1fr;
    }
    
    .model-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .publikime-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-detail-hero {
        height: 350px;
    }
    
    .model-detail-main-img {
        height: 420px;
    }
    
    .model-detail-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .model-detail-specs {
        grid-template-columns: 1fr;
    }
    
    .model-portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .publikime-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
}

/* Category Slider - Horizontal Scroll */
.category-slider-wrapper {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    position: relative;
}

.category-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(192, 192, 192, 0.3) transparent;
}

.category-slider::-webkit-scrollbar {
    height: 4px;
}

.category-slider::-webkit-scrollbar-track {
    background: transparent;
}

.category-slider::-webkit-scrollbar-thumb {
    background: rgba(192, 192, 192, 0.3);
    border-radius: var(--border-radius);
}

.category-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(192, 192, 192, 0.5);
}

.category-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(192, 192, 192, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: var(--border-radius);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
    background: rgba(192, 192, 192, 0.15);
    border-color: var(--text-silver);
    color: var(--text-silver);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.2);
}

.category-card.active {
    background: rgba(192, 192, 192, 0.2);
    border-color: var(--text-silver);
    color: var(--text-silver);
    box-shadow: 0 4px 16px rgba(192, 192, 192, 0.3);
}

.category-card-label {
    position: relative;
    z-index: 1;
}

/* Filter Bar & Styled Selects */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}

.filter-bar label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    white-space: nowrap;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    min-width: 200px;
    display: inline-block;
}

.custom-select-display {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text-light);
    padding: 1rem 2rem 1rem 0;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.custom-select-display::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-display::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-display:hover {
    border-bottom-color: var(--text-silver);
    color: var(--text-silver);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 192, 192, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
}

.custom-select-wrapper.open .custom-select-dropdown {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.custom-select-option {
    padding: 1rem;
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: var(--hover-silver-light);
    color: var(--text-silver);
}

.custom-select-option.selected {
    background: rgba(192, 192, 192, 0.25);
    color: var(--text-light);
    font-weight: 500;
}

.custom-select-option.selected::before {
    content: '✓ ';
    margin-right: 0.5rem;
    color: var(--text-silver);
}

.filter-bar select,
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 1rem 3rem 1rem 0;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    min-width: 200px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: var(--border-radius);
}

.filter-bar select:hover,
.form-group select:hover {
    border-bottom-color: var(--text-silver);
    color: var(--text-silver);
}

.filter-bar select:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--text-silver);
    color: var(--text-silver);
    background-color: transparent;
}

/* Styled select options for all browsers */
.filter-bar select option,
.form-group select option {
    background: var(--bg-color);
    color: var(--text-light);
    padding: 1rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: none;
}

.filter-bar select option:hover,
.form-group select option:hover {
    background: var(--hover-silver-light);
    color: var(--text-silver);
}

.filter-bar select option:checked,
.form-group select option:checked {
    background: rgba(192, 192, 192, 0.25);
    color: var(--text-light);
    font-weight: 500;
}

/* For Firefox */
@-moz-document url-prefix() {
    .filter-bar select,
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    }
}

/* For IE/Edge (legacy) */
.filter-bar select::-ms-expand,
.form-group select::-ms-expand {
    display: none;
}

/* Styled datalist input (for admin forms) */
.form-group input[list] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text-light);
    padding: 1rem 0;
    font-size: 1rem;
    font-family: var(--font-secondary);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.form-group input[list]:focus {
    outline: none;
    border-bottom-color: var(--text-silver);
    color: var(--text-silver);
    background-color: transparent;
}

/* Category selector with add new option */
.category-select-wrapper {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.category-select-wrapper select {
    flex: 1;
}

.category-select-wrapper .btn-add-category {
    padding: 1rem 1.5rem;
    background: rgba(192, 192, 192, 0.25);
    border: 0px solid var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-select-wrapper .btn-add-category:hover {
    background: var(--hover-silver);
    color: var(--text-silver);
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-bar label {
        margin-bottom: 0.5rem;
    }
    
    .filter-bar select,
    .form-group select {
        width: 100%;
        min-width: auto;
    }
    
    .category-select-wrapper {
        flex-direction: column;
    }
    
    .category-select-wrapper .btn-add-category {
        width: 100%;
        justify-content: center;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0;
    padding: 0;
    flex-wrap: nowrap;
}

[data-pagination-content] {
    transition: opacity 0.3s ease;
}

.pagination-btn {
    padding: 1.2rem 3rem;
    background: rgba(192, 192, 192, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-color: var(--text-silver);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-silver);
    transition: left 0.3s ease;
    z-index: 0;
}

.pagination-btn span,
.pagination-btn {
    position: relative;
    z-index: 1;
    color: inherit;
}

.pagination-btn:hover,
.pagination-btn:hover span {
    color: var(--bg-color);
    border-color: var(--text-silver);
}

.pagination-btn:hover::before {
    left: 0;
}

.pagination-info {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: var(--font-secondary);
}

/* Related Articles Section */
.related-articles-section {
    padding: 4rem 4rem 8rem;
    background: transparent;
}

.related-articles-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: -1px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-article-item {
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.related-article-item:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 16px 48px rgba(192, 192, 192, 0.25);
    transform: translateY(-4px);
}

.related-article-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.related-article-item:hover .related-article-link {
    transform: translateY(-2px);
}

.related-article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: transparent;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
}

.related-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-article-item:hover .related-article-img {
    filter: brightness(1.15) contrast(1.05);
    opacity: 1;
    transform: scale(1.05);
}

.related-article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-article-date {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-article-title {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
}

.related-article-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.related-article-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Related Models Section */
.related-models-section {
    padding: 4rem 4rem 8rem;
    background: transparent;
}

.related-models-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: -1px;
}

.related-models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-model-item {
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-model-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: var(--text-silver);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.2);
}

.related-model-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-model-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: transparent;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.related-model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.related-model-item:hover .related-model-img {
    filter: brightness(1.1);
    opacity: 1;
}

.related-model-info {
    padding: 2rem;
    text-align: center;
}

.related-model-name {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0 0 0.5rem 0;
}

.related-model-category {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Detail Page */
.service-detail-section,
.project-detail-section,
.model-detail-section,
.article-detail-section {
    padding: 8rem 4rem;
}

.service-detail-header {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-detail-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.service-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.service-detail-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 1rem;
}

.service-detail-hero {
    width: 100%;
    height: 500px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
    border-radius: var(--border-radius);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}



.service-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 0;
}

.service-detail-hero:hover .service-detail-hero-img {
    filter: brightness(1.1);
    opacity: 1;
}

.service-detail-subservices {
    margin-top: 6rem;
}

.service-subservices-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--text-light);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -1px;
    position: relative;
    padding-left: 2rem;
}

.service-subservices-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--lighter-black);
    opacity: 0.5;
}

.subservices-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.subservice-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.subservice-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--lighter-black);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.subservice-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.15);
}

.subservice-item:hover::after {
    width: 0;
}

.subservice-item:last-child {
    border-bottom: none;
}

.subservice-number {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-light);
    font-weight: 400;
    min-width: 60px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.subservice-item:hover .subservice-number {
    opacity: 1;
}

.subservice-content {
    flex: 1;
}

.subservice-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.subservice-item:hover .subservice-title {
    color: var(--text-silver);
}

.subservice-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.service-detail-cta {
    margin-top: 6rem;
    text-align: center;
    padding: 4rem 0;
}

.service-cta-text {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

.other-services-section {
    padding: 8rem 4rem;
}

.other-services-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--text-light);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -1px;
    text-align: center;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.other-service-item {
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.other-service-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--lighter-black);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.other-service-item:hover {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.15);
}

.other-service-item:hover::after {
    width: 0;
}

.other-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.other-service-number {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.other-service-item:hover .other-service-number {
    opacity: 1;
}

.other-service-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.other-service-item:hover .other-service-title {
    color: var(--text-silver);
}

.other-service-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .pagination-btn {
        flex: 1;
        min-width: 0;
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .pagination-info {
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .related-articles-grid,
    .related-models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .related-articles-section,
    .related-models-section {
        padding: 3rem 2rem 6rem;
    }
    
    .related-model-image {
        height: 260px;
    }
    
    /* Model Reels Mobile */
    .model-reels-top-buttons {
        flex-direction: row;
    }
    
    .model-reels-filter-btn,
    .model-reels-book-btn {
        padding: 1.4rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .bottom-nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    /* Consolidated with main mobile styles above */
    
    .model-reels-filter-dropdown {
        top: 4.5rem;
        max-height: 40vh;
    }
    
    
    .filter-option {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .model-info-panel {
        padding-top: 0;
    }
    
    .model-info-panel-content {
        padding: 1.5rem 1rem;
        padding-top: calc(4.5rem + 4.5rem + 1.5rem);
        max-width: 100%;
    }
    
    .model-info-panel-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .model-info-panel-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .model-info-panel-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .model-info-category {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .model-info-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .model-info-spec-item {
        gap: 0.3rem;
    }
    
    .model-info-spec-label {
        font-size: 0.75rem;
    }
    
    .model-info-spec-value {
        font-size: 1rem;
    }
    
    .model-info-bio {
        margin-bottom: 2rem;
    }
    
    .model-info-bio-title {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
    
    .model-info-bio-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .model-info-actions {
        margin-top: 1.5rem;
    }
    
    .model-info-book-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    
    .model-reels-expand-btn {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .model-reels-expand-btn i {
        font-size: 1.2rem;
    }
    
    .model-carousel-nav {
        opacity: 0.8;
        pointer-events: all;
        width: 40px;
        height: 40px;
    }
    
    .model-carousel-prev {
        left: 0.5rem;
    }
    
    .model-carousel-next {
        right: 0.5rem;
    }
    
    .model-carousel-dots {
        bottom: calc(2rem + 80px);
        gap: 0.4rem;
    }
    
    .model-carousel-dot {
        width: 5px;
        height: 5px;
    }
    
    .model-carousel-dot.active {
        width: 20px;
        height: 5px;
    }
    
    .model-carousel-media-wrapper img.model-carousel-media {
        max-width: 100vw;
        bottom: 5%;
    }
    
    .subservice-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .other-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Model Nav Info Mobile */
    /* Consolidated with main mobile styles above */
    
    .model-info-panel {
        padding-top: 0;
    }
    
    .model-info-panel-content {
        padding: 1.5rem 1rem;
        padding-top: calc(4.5rem + 4.5rem + 1.5rem);
        max-width: 100%;
    }
    
    .model-info-panel-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .model-info-panel-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .model-info-panel-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .model-info-category {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .model-info-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .model-info-spec-item {
        gap: 0.3rem;
    }
    
    .model-info-spec-label {
        font-size: 0.75rem;
    }
    
    .model-info-spec-value {
        font-size: 1rem;
    }
    
    .model-info-bio {
        margin-bottom: 2rem;
    }
    
    .model-info-bio-title {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
    
    .model-info-bio-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .model-info-actions {
        margin-top: 1.5rem;
    }
    
    .model-info-book-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   SPECIAL OFFERS SECTION - PREMIUM THEME
   ============================================ */
.offers-section {
    background: var(--bg-color);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(192, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.offers-section .section-content {
    position: relative;
    z-index: 1;
}

.offers-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.offers-label::before,
.offers-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.offers-label::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.offers-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--light-color);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    background: linear-gradient(180deg, var(--light-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offers-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 4rem;
    text-align: center;
    opacity: 0.7;
    line-height: 1.8;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.offer-card {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(192, 192, 192, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(192, 192, 192, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(192, 192, 192, 0.08);
}

.offer-card:hover::before {
    opacity: 1;
}

/* Featured/Popular badge */
.offer-card:first-child::after {
    content: 'POPULAR';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent);
    color: var(--bg-color);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
    z-index: 10;
}

.offer-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.offer-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(20, 20, 20, 1) 0%, transparent 100%);
    pointer-events: none;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(20%);
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.offer-card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.offer-card-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.offer-card-description {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.offer-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.offer-card-features li {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.06);
    transition: all 0.3s ease;
}

.offer-card:hover .offer-card-features li {
    border-color: rgba(192, 192, 192, 0.12);
}

.offer-card-features li:last-child {
    border-bottom: none;
}

.offer-card-features li i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.offer-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.offer-card-price .price-amount {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    color: var(--light-color);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.offer-card-price .price-currency {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.offer-card-validity {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1rem;
    background: rgba(192, 192, 192, 0.06);
    border-radius: 6px;
    width: fit-content;
    border: 1px solid rgba(192, 192, 192, 0.08);
}

.offer-card-validity i {
    color: var(--accent);
    font-size: 0.9rem;
}

.offer-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.offer-reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: left 0.5s ease;
}

.offer-reserve-btn:hover {
    background: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.25);
    transform: translateY(-2px);
}

.offer-reserve-btn:hover::before {
    left: 100%;
}

.offer-reserve-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.offer-reserve-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESERVATION MODAL
   ============================================ */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.reservation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.reservation-modal-content {
    position: relative;
    background: var(--lighter-black);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reservation-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reservation-modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.reservation-modal-title {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    color: var(--light-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.reservation-modal-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-form .form-row {
    display: flex;
    gap: 1rem;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 6px;
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.reservation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.reservation-form .submit-btn {
    margin-top: 0.5rem;
}

/* Reservation success/error messages */
.reservation-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    z-index: 10001;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.reservation-message.success {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.reservation-message.error {
    background: rgba(255, 107, 107, 0.9);
    color: white;
}

/* Responsive styles for offers */
@media (max-width: 768px) {
    .offers-section {
        padding: 5rem 1rem;
    }
    
    .offers-label {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .offers-label::before,
    .offers-label::after {
        width: 25px;
    }
    
    .offers-title {
        letter-spacing: 2px;
    }
    
    .offers-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .offer-card {
        border-radius: 12px;
    }
    
    .offer-card:first-child::after {
        font-size: 0.6rem;
        padding: 0.3rem 2rem;
    }
    
    .offer-card-image {
        height: 180px;
    }
    
    .offer-card-content {
        padding: 1.5rem;
    }
    
    .offer-card-title {
        font-size: 1.25rem;
    }
    
    .offer-card-description {
        font-size: 0.85rem;
    }
    
    .offer-card-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .offer-card-price .price-amount {
        font-size: 2.25rem;
    }
    
    .offer-reserve-btn {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .reservation-modal-content {
        padding: 1.5rem;
    }
    
    .reservation-form .form-row {
        flex-direction: column;
    }
}
