/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2E7DBF;
    --secondary: #F89F33;
    --tertiary: #27AE60;
    --neutral: #121212;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #cccccc;
    --gray-400: #999999;
    --gray-500: #666666;
    --font-headline: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1360px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--neutral);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== SECTION HEADERS (Reusable) ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(46, 125, 191, 0.08);
    color: var(--primary);
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-headline);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 125, 191, 0.1);
}

.section-title {
    font-family: var(--font-headline);
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    opacity: 0.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.home-page .header {
    background: transparent;
    box-shadow: none;
}

.home-page .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
}

.home-page .header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.connect {
    display: flex;
    gap: 18px;
    align-items: center;
}

.connect-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--neutral);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.connect-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.header.scrolled .nav-menu a {
    color: var(--neutral);
}

.header.scrolled .nav-menu a:hover {
    color: var(--primary);
}

.header.scrolled .connect-link {
    color: var(--neutral);
    border-color: var(--gray-200);
}

.home-page .header:not(.scrolled) .nav-menu a {
    color: #ffffff;
}

.home-page .header:not(.scrolled) .nav-menu a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.home-page .header:not(.scrolled) .connect-link {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.home-page .header:not(.scrolled) .menu-toggle span {
    background: #ffffff;
}

.header.scrolled .menu-toggle span {
    background: var(--neutral);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
}

.footer-heading {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a svg {
    color: var(--primary);
}

.footer-social a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--primary);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 12px 16px;
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #1e6aa8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.separator {
    color: rgba(255, 255, 255, 0.2);
}

/* ===== HERO SECTION ===== */
.hero-premium {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background: var(--neutral);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.25s ease-in-out, transform 1.25s ease-in-out;
    transform: scale(1.06);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(18, 18, 18, 0.2) 0%,
        rgba(18, 18, 18, 0.4) 40%,
        rgba(18, 18, 18, 0.75) 70%,
        rgba(18, 18, 18, 0.92) 100%
    );
    z-index: 1;
}

.hero-premium-container {
    width: 100%;
    padding: 0 80px 60px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 100vh;
}

.hero-premium-content {
    max-width: 680px;
    margin-bottom: 20px;
}

.hero-premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #f3f6fb;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-headline);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 125, 191, 0.2);
    backdrop-filter: blur(10px);
}

.hero-premium-title {
    font-family: var(--font-headline);
    font-size: clamp(48px, 5.2vw, 72px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.02;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero-premium-title .highlight {
    color: #ffffff;
    position: relative;
}

.hero-premium-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(46, 125, 191, 0.55), rgba(248, 159, 51, 0.28));
    opacity: 0.35;
    z-index: -1;
}

.hero-premium-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 540px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.hero-premium-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

.hero-premium-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 38px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-headline);
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1e6aa8;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(46, 125, 191, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 38px;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-headline);
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-slide-indicators {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: 0;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.12);
}

/* ===== ABOUT SECTION ===== */
/* ===== MODERN ABOUT SECTION ===== */
.about-premium {
    padding: 100px 0 80px;
    background: #FFFFFF;
    position: relative;
}

/* ===== VISION & MISSION - MODERN ===== */
.about-vision-mission-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

.vm-card {
    padding: 45px 40px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(46, 125, 191, 0.08);
}

.vm-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vm-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 125, 191, 0.1);
    color: var(--primary);
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.vm-number {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    transition: color 0.4s ease;
}

.vm-card:hover .vm-number {
    color: var(--primary);
}

.vm-content h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 12px;
}

.vm-content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vm-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
    margin-bottom: 14px;
}

.vm-card:hover .vm-line {
    width: 70px;
}

.vm-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(46, 125, 191, 0.06);
    padding: 4px 16px;
    border: 1px solid rgba(46, 125, 191, 0.08);
}

.mission-card-modern .vm-tag {
    color: var(--secondary);
    background: rgba(248, 159, 51, 0.06);
    border-color: rgba(248, 159, 51, 0.08);
}

.mission-card-modern .vm-icon {
    border-color: rgba(248, 159, 51, 0.1);
    color: var(--secondary);
}

.mission-card-modern:hover .vm-icon {
    background: var(--secondary);
    color: #ffffff;
}

.mission-card-modern .vm-line {
    background: var(--secondary);
}

.mission-card-modern:hover .vm-number {
    color: var(--secondary);
}

.mission-card-modern::before {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* ===== COMPANY STORY - MODERN ===== */
.about-story-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.story-content-modern {
    padding-right: 20px;
}

.story-number-modern {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.story-year {
    font-family: var(--font-headline);
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.15;
}

.story-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content-modern h4 {
    font-family: var(--font-headline);
    font-size: 30px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

.story-content-modern p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.stat-block-modern {
    text-align: center;
}

.stat-number-modern {
    display: block;
    font-family: var(--font-headline);
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-number-modern.counted {
    animation: countPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-label-modern {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== STORY IMAGE - MODERN ===== */
.story-image-modern {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover .image-overlay-modern {
    opacity: 1;
}

.overlay-text {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-headline);
}

.overlay-sub {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 4px;
}

.image-accent {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    z-index: -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-vision-mission-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-story-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content-modern {
        padding-right: 0;
    }
    
    .story-stats-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .about-premium {
        padding: 70px 0 60px;
    }
    
    .vm-card {
        padding: 30px 24px;
    }
    
    .vm-number {
        font-size: 36px;
    }
    
    .vm-content h3 {
        font-size: 20px;
    }
    
    .story-year {
        font-size: 40px;
    }
    
    .story-content-modern h4 {
        font-size: 24px;
    }
    
    .story-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number-modern {
        font-size: 26px;
    }
    
    .image-accent {
        width: 40px;
        height: 40px;
        bottom: -6px;
        right: -6px;
    }
}

@media (max-width: 576px) {
    .about-premium {
        padding: 50px 0 40px;
    }
    
    .vm-card {
        padding: 24px 18px;
    }
    
    .vm-icon {
        width: 48px;
        height: 48px;
    }
    
    .vm-number {
        font-size: 28px;
    }
    
    .vm-content h3 {
        font-size: 18px;
    }
    
    .story-year {
        font-size: 32px;
    }
    
    .story-content-modern h4 {
        font-size: 20px;
    }
    
    .story-stats-modern {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-number-modern {
        font-size: 22px;
    }
    
    .stat-label-modern {
        font-size: 11px;
    }
    
    .overlay-text {
        font-size: 15px;
    }
}


/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-item {
    background: #ffffff;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(46, 125, 191, 0.10);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f5f6f8;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.service-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 4px 14px;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-info {
    padding: 18px 20px 22px;
}

.service-name {
    font-family: var(--font-headline);
    font-size: 15px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-item:hover .service-name {
    color: var(--primary);
}

.service-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.service-item:hover .service-line {
    width: 50px;
}

/* ===== PROJECTS SECTION ===== */
.projects-premium {
    padding: 100px 0 80px;
    background: #f8f9fa;
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(46, 125, 191, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gray-100);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.project-card:hover .project-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-year {
    display: inline-block;
    background: rgba(46, 125, 191, 0.92);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-headline);
    letter-spacing: 1px;
}

.project-content {
    padding: 30px 32px 36px;
}

.project-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.project-client {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-headline);
    letter-spacing: 0.5px;
}

.project-category {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
}

.project-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary);
}

.project-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 14px;
    transition: width 0.4s ease;
}

.project-card:hover .project-line {
    width: 50px;
}

.project-description {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 18px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-headline);
    color: var(--primary);
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 14px;
}

.project-link:hover svg {
    transform: translateX(4px);
}

/* ===== TEAM SECTION ===== */
.team-premium {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(46, 125, 191, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-100);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.team-card:hover .team-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-role-badge {
    display: inline-block;
    background: rgba(46, 125, 191, 0.92);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-headline);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-content {
    padding: 28px 30px 32px;
}

.team-name {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary);
}

.team-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 14px;
    transition: width 0.4s ease;
}

.team-card:hover .team-line {
    width: 50px;
}

.team-bio {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 18px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact-premium {
    padding: 100px 0 20px;
    background: #131313;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: start;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-family: var(--font-headline);
    font-size: 72px;
    font-weight: 800;
    color: #e5e2e1;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-title .highlight {
    background: linear-gradient(135deg, #9bcbff 0%, #ffb86d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 18px;
    color: #c0c7d2;
    line-height: 1.6;
    max-width: 600px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(155, 203, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bcbff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #9bcbff;
    color: #003256;
    transform: scale(1.1);
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffb86d;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 16px;
    color: #e5e2e1;
    line-height: 1.5;
}

.contact-card p a {
    color: #e5e2e1;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: #9bcbff;
}

.contact-accent {
    padding: 28px 32px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.contact-accent::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(155, 203, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-accent h4 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: #e5e2e1;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.contact-accent p {
    font-size: 16px;
    color: #c0c7d2;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9bcbff, #ffb86d);
    transition: width 0.6s ease;
}

.contact-form-wrapper.progress::after {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c0c7d2;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e2e1;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9bcbff;
    box-shadow: 0 0 0 3px rgba(155, 203, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c0c7d2' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: #1c1b1b;
    color: #e5e2e1;
}

.form-group textarea {
    resize: vertical;
    min-height: 234px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: #9bcbff;
    color: #003256;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #7ab8f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -8px rgba(155, 203, 255, 0.3);
}

.submit-btn:active {
    transform: scale(0.97);
}

.submit-btn .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover .shimmer {
    transform: translateX(100%);
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.6;
}

.contact-footer .brand-name {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: #9bcbff;
}

.contact-footer .copyright {
    font-size: 14px;
    color: #c0c7d2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .section-title { font-size: 36px; }
    .contact-title { font-size: 56px; }
    .hero-premium-container { padding: 0 50px; }
    .team-grid { gap: 30px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 992px) {
    .container { padding: 0 24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-vision-mission { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; gap: 30px; }
    .story-content { padding-right: 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .hero-premium-container { padding: 0 40px 40px; }
    .hero-premium { height: auto; padding: 100px 0 60px; align-items: flex-end; }
    .hero-premium-content { max-width: 100%; }
    .hero-premium-stats { justify-content: flex-start; }
    .hero-premium-buttons { justify-content: flex-start; }
    .slide-overlay { background: linear-gradient(to bottom, rgba(18,18,18,0.2) 0%, rgba(18,18,18,0.5) 40%, rgba(18,18,18,0.8) 70%, rgba(18,18,18,0.95) 100%); }
    .story-image { display: none; }
    .hero-slide-indicators { right: 40px; bottom: 30px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav { position: fixed; top: 0; left: -100%; width: 80%; height: 100vh; background: var(--white); padding: 80px 40px 40px; transition: left 0.4s ease; box-shadow: 2px 0 30px rgba(0,0,0,0.1); }
    .nav.active { left: 0; }
    .nav-menu { flex-direction: column; gap: 25px; align-items: flex-start; }
    .nav-menu a { font-size: 18px; color: var(--neutral) !important; }
    .connect { display: none; }
    .home-page .header:not(.scrolled) .menu-toggle span { background: #ffffff; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-tagline { max-width: 100%; }
    
    .projects-grid { grid-template-columns: 1fr; max-width: 500px; }
    .team-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .about-premium { padding: 70px 0 60px; }
    .services-section { padding: 70px 0; }
    .projects-premium { padding: 70px 0 60px; }
    .team-premium { padding: 70px 0 60px; }
    .contact-premium { padding: 80px 0 12px; }
    
    .section-title { font-size: 30px; }
    .section-subtitle { font-size: 16px; }
    .contact-title { font-size: 38px; }
    .hero-premium-title { font-size: 38px; }
    .hero-premium-container { padding: 0 24px 30px; }
    .hero-premium-stats { gap: 25px; flex-wrap: wrap; }
    .stat-number { font-size: 24px; }
    .btn-primary, .btn-secondary { padding: 12px 28px; font-size: 13px; width: 100%; justify-content: center; }
    .hero-premium-buttons { flex-direction: column; width: 100%; }
    
    .vision-card, .mission-card { padding: 30px 24px; }
    .story-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-block .stat-number { font-size: 26px; }
    .story-number span { font-size: 36px; }
    .story-text h4 { font-size: 24px; }
    .service-info { padding: 14px 16px 18px; }
    .service-name { font-size: 13px; }
    
    .form-row { grid-template-columns: 1fr; gap: 20px; }
    .contact-form-wrapper { padding: 28px 20px; }
    .contact-card { padding: 18px 20px; }
    .submit-btn { width: 100%; justify-content: center; }
    .contact-footer { flex-direction: column; gap: 12px; text-align: center; }
    
    .hero-slide-indicators { right: 24px; bottom: 20px; gap: 8px; }
    .indicator { width: 8px; height: 8px; }
}

@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .section-title { font-size: 26px; }
    .section-badge { font-size: 11px; padding: 6px 16px; }
    .contact-title { font-size: 30px; }
    .hero-premium-title { font-size: 30px; }
    .hero-premium-container { padding: 0 16px 20px; }
    .hero-premium-badge { font-size: 10px; padding: 6px 16px; }
    .hero-premium-description { font-size: 15px; }
    .hero-premium-stats { gap: 18px; }
    .stat-number { font-size: 20px; }
    .stat-label { font-size: 11px; }
    
    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service-info { padding: 12px 12px 16px; }
    .service-name { font-size: 12px; }
    .service-category { font-size: 8px; padding: 3px 10px; }
    
    .vision-card, .mission-card { padding: 24px 18px; }
    .vision-card h3, .mission-card h3 { font-size: 20px; }
    .story-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-block .stat-number { font-size: 22px; }
    .stat-block .stat-label { font-size: 12px; }
    .contact-form-wrapper { padding: 20px 16px; }
    .contact-card p { font-size: 14px; }
    .contact-card h3 { font-size: 12px; }
    .form-group input, .form-group select, .form-group textarea { padding: 14px 16px; font-size: 14px; }
    .submit-btn { padding: 16px 32px; font-size: 13px; }
    
    .project-content { padding: 20px 18px 24px; }
    .project-title { font-size: 18px; }
    .project-description { font-size: 14px; }
    .project-meta { flex-direction: column; gap: 4px; }
    .team-content { padding: 20px 16px 24px; }
    .team-name { font-size: 18px; }
    .team-role { font-size: 13px; }
    .team-bio { font-size: 14px; }
    .team-badge { font-size: 11px; padding: 6px 16px; }
    .team-title { font-size: 26px; }
    
    .hero-slide-indicators { right: 16px; bottom: 15px; gap: 6px; }
    .indicator { width: 20px; height: 3px; border-radius: 0; }
    .indicator.active { width: 30px; background: #ffffff; }
    .indicator:hover { background: rgba(255,255,255,0.6); }
}

@media (max-width: 400px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .service-name { font-size: 11px; }
}

.nav-menu a.active {
    color: var(--primary) !important;
}

.nav-menu a.active::after {
    width: 100%;
}

.home-page .header:not(.scrolled) .nav-menu a.active {
    color: #ffffff !important;
}

.home-page .header.scrolled .nav-menu a.active {
    color: var(--primary) !important;
}

/* ===== SERVICES TOOLBAR ===== */
.services-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.services-search {
    position: relative;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 44px;
    border: 1px solid var(--gray-200);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--neutral);
    transition: all 0.3s ease;
    outline: none;
    background: #ffffff;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 191, 0.1);
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.no-results h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 8px;
}

.no-results p {
    font-size: 16px;
    color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .services-categories {
        justify-content: center;
    }
    
    .services-search {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .search-input {
        padding: 8px 14px 8px 38px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .services-categories {
        gap: 6px;
    }
    
    .category-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 80px 0 100px;
    background: #F8FAFC;
    overflow: hidden;
    position: relative;
}



/* ===== BRANDS SLIDER ===== */
.brands-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    gap: 30px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}

.brands-track-duplicate {
    display: flex;
    gap: 30px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
    margin-top: 20px;
}

.brands-track-duplicate {
    animation-delay: -12.5s;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== BRAND ITEM ===== */
.brand-item {
    flex-shrink: 0;
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    padding: 16px;
    text-align: center;
}

.brand-logo:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(46, 125, 191, 0.08);
}

.brand-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-initials {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.brand-name {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== PAUSE ON HOVER ===== */
.brands-slider:hover .brands-track,
.brands-slider:hover .brands-track-duplicate {
    animation-play-state: paused;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .brand-item {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .brand-item {
        width: 140px;
        height: 90px;
    }
    
    .brand-logo img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0 80px;
    }
    
    .brand-item {
        width: 120px;
        height: 80px;
    }
    
    .brands-track {
        gap: 20px;
    }
    
    .brands-track-duplicate {
        gap: 20px;
        margin-top: 16px;
    }
    
    .brand-logo img {
        max-height: 40px;
    }
    
    .brand-initials {
        font-size: 22px;
    }
    
    .brand-name {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .brand-item {
        width: 100px;
        height: 70px;
    }
    
    .brands-track {
        gap: 15px;
    }
    
    .brands-track-duplicate {
        gap: 15px;
        margin-top: 12px;
    }
    
    .brand-logo {
        padding: 10px;
    }
    
    .brand-logo img {
        max-height: 30px;
        max-width: 70%;
    }
    
    .brand-initials {
        font-size: 18px;
    }
    
    .brand-name {
        font-size: 8px;
    }
}

/* ===== PROJECT DETAIL PAGE ===== */
.project-detail {
    padding: 140px 0 80px;
    background: #ffffff;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    text-decoration: none;
}

.back-btn:hover {
    color: var(--primary);
    gap: 14px;
}

/* Project Header */
.project-detail-header {
    margin-bottom: 40px;
}

.project-detail-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.project-detail-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-detail-year {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    font-family: var(--font-headline);
}

.project-detail-title {
    font-family: var(--font-headline);
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 12px;
    line-height: 1.15;
}

.project-detail-client {
    font-size: 16px;
    color: var(--gray-500);
}

.client-label {
    font-weight: 600;
    color: var(--neutral);
}

.client-name {
    color: var(--gray-500);
}

/* Gallery */
.project-detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
    margin-bottom: 50px;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    aspect-ratio: 16/10;
    background: var(--gray-100);
}

.gallery-main {
    grid-row: span 2;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Project Description */
.project-detail-description {
    max-width: 800px;
    margin-bottom: 50px;
}

.project-detail-description h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

.project-detail-description p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* Client Info */
.project-client-info {
    margin-bottom: 50px;
}

.client-info-card {
    padding: 30px 32px;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    max-width: 500px;
}

.client-info-card h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

.client-info-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 4px;
}

.client-info-card p strong {
    color: var(--neutral);
}

/* Comments Section */
.comments-section {
    margin-bottom: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.comments-section h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 30px;
}

.comment-success,
.comment-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 0;
    margin-bottom: 20px;
}

.comment-success {
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: #27AE60;
}

.comment-error {
    background: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
}

.comment-form {
    max-width: 700px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comment-form .form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral);
}

.comment-form .form-group input,
.comment-form .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    background: #ffffff;
}

.comment-form .form-group input:focus,
.comment-form .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 191, 0.08);
}

.comment-form .form-group textarea {
    resize: vertical;
}

.comment-form .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.comment-form .submit-btn:hover {
    background: #1e6aa8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 125, 191, 0.3);
}

/* Comments List */
.comments-list {
    margin-top: 40px;
    max-width: 700px;
}

.comments-list h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 20px;
}

.comment-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.comment-header strong {
    font-family: var(--font-headline);
    font-size: 16px;
    color: var(--neutral);
}

.comment-date {
    font-size: 13px;
    color: var(--gray-400);
}

.comment-website {
    display: inline-block;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 4px;
}

.comment-website:hover {
    text-decoration: underline;
}

.comment-body p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Project Card Link */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Navigation */
.project-navigation {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .project-detail-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-main {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    .project-detail-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .project-detail {
        padding: 120px 0 60px;
    }
    
    .project-detail-title {
        font-size: 30px;
    }
    
    .project-detail-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-main {
        grid-column: span 1;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .client-info-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .project-detail-title {
        font-size: 26px;
    }
    
    .comment-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header {
        flex-wrap: wrap;
    }
}

/* ===== PROJECT HOVER IMAGE ===== */
.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gray-100);
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.project-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-main-image {
    opacity: 0;
}

.project-card:hover .project-hover-image {
    opacity: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* ===== CONTACT MAP - Below Visit Us ===== */
.contact-map {
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    width: 100%;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 250px;
    filter: grayscale(10%) contrast(1.05);
    transition: filter 0.3s ease;
}

.contact-map iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-map iframe {
        height: 10px;
    }
}

@media (max-width: 576px) {
    .contact-map iframe {
        height: 180px;
    }
}

/* ===== SERVICE EXAMPLES PAGE ===== */
.service-examples {
    padding: 140px 0 80px;
    background: #ffffff;
}

.service-examples-header {
    margin-bottom: 50px;
}

.service-examples-title {
    font-family: var(--font-headline);
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 8px;
}

.service-examples-subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.example-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.example-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.4s ease;
}

.example-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(46, 125, 191, 0.08);
}

.example-image-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
}

.example-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.example-card:hover .example-image-wrapper img {
    transform: scale(1.05);
}

.example-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gray-400);
}

.example-content {
    padding: 22px 24px 26px;
}

.example-title {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.example-card:hover .example-title {
    color: var(--primary);
}

.example-client {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.example-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 12px;
    transition: width 0.4s ease;
}

.example-card:hover .example-line {
    width: 50px;
}

.example-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-headline);
    color: var(--primary);
    transition: all 0.3s ease;
}

.example-link:hover {
    gap: 14px;
}

.example-link:hover svg {
    transform: translateX(4px);
}

.service-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* No Examples */
.no-examples {
    text-align: center;
    padding: 60px 20px;
}

.no-examples p {
    font-size: 18px;
    color: var(--gray-500);
}

/* ===== EXAMPLE DETAIL PAGE ===== */
.example-detail {
    padding: 140px 0 80px;
    background: #ffffff;
}

.example-detail-header {
    margin-bottom: 40px;
}

.example-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.example-detail-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.example-detail-client {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    font-family: var(--font-headline);
}

.example-detail-title {
    font-family: var(--font-headline);
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral);
    line-height: 1.15;
}

.example-detail-gallery {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    aspect-ratio: 4/3;
    background: var(--gray-100);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.example-detail-description {
    max-width: 800px;
    margin-bottom: 50px;
}

.example-detail-description h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

.example-detail-description p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
}

.example-client-info {
    margin-bottom: 50px;
}

.client-info-card {
    padding: 30px 32px;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    max-width: 500px;
}

.client-info-card h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

.client-info-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 4px;
}

.client-info-card p strong {
    color: var(--neutral);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .example-detail-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .service-examples {
        padding: 120px 0 60px;
    }
    
    .example-detail {
        padding: 120px 0 60px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .example-detail-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .example-detail-title {
        font-size: 26px;
    }
    
    .example-detail-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    .client-info-card {
        padding: 20px 24px;
    }
}

/* ===== SERVICES DETAIL PAGE FALLBACKS ===== */
body.service-examples-page .service-examples {
    padding: 140px 0 80px;
    background: #ffffff;
}

body.service-examples-page .service-examples-header {
    margin-bottom: 50px;
}

body.service-examples-page .service-examples-title {
    font-family: var(--font-headline);
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 8px;
}

body.service-examples-page .service-examples-subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

body.service-examples-page .examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

body.service-examples-page .example-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

body.service-examples-page .example-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.4s ease;
}

body.service-examples-page .example-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(46, 125, 191, 0.08);
}

body.service-examples-page .example-image-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
    cursor: zoom-in;
}

body.service-examples-page .example-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

body.service-examples-page .example-card:hover .example-image-wrapper img {
    transform: scale(1.05);
}

body.service-examples-page .example-content {
    padding: 22px 24px 26px;
}

body.service-examples-page .example-title {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

body.service-examples-page .example-card:hover .example-title {
    color: var(--primary);
}

body.service-examples-page .example-client {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

body.service-examples-page .example-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 12px;
    transition: width 0.4s ease;
}

body.service-examples-page .example-card:hover .example-line {
    width: 50px;
}

body.service-examples-page .example-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-headline);
    color: var(--primary);
    transition: all 0.3s ease;
}

body.service-examples-page .example-link:hover {
    gap: 14px;
}

body.service-examples-page .no-examples {
    text-align: center;
    padding: 60px 20px;
}

body.service-examples-page .no-examples p {
    font-size: 18px;
    color: var(--gray-500);
}

/* ===== EXAMPLE DETAIL PAGE FALLBACKS ===== */
body.example-detail-page .example-detail {
    padding: 140px 0 80px;
    background: #ffffff;
}

body.example-detail-page .example-detail-header {
    margin-bottom: 40px;
}

body.example-detail-page .example-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

body.example-detail-page .example-detail-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.example-detail-page .example-detail-client {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    font-family: var(--font-headline);
}

body.example-detail-page .example-detail-title {
    font-family: var(--font-headline);
    font-size: 44px;
    font-weight: 800;
    color: var(--neutral);
    line-height: 1.15;
}

body.example-detail-page .example-detail-gallery {
    margin-bottom: 50px;
}

body.example-detail-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

body.example-detail-page .gallery-item {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    aspect-ratio: 4/3;
    background: var(--gray-100);
}

body.example-detail-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: zoom-in;
}

body.example-detail-page .gallery-item:hover img {
    transform: scale(1.05);
}

body.example-detail-page .example-detail-description {
    max-width: 800px;
    margin-bottom: 50px;
}

body.example-detail-page .example-detail-description h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

body.example-detail-page .example-detail-description p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
}

body.example-detail-page .example-client-info {
    margin-bottom: 50px;
}

body.example-detail-page .client-info-card {
    padding: 30px 32px;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    max-width: 500px;
}

body.example-detail-page .client-info-card h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 16px;
}

body.example-detail-page .client-info-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 4px;
}

body.example-detail-page .client-info-card p strong {
    color: var(--neutral);
}

/* ===== EXAMPLES FILTER BAR ===== */
body.service-examples-page .examples-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 22px 24px;
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    box-shadow: 0 14px 40px rgba(18, 18, 18, 0.04);
}

body.service-examples-page .examples-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.service-examples-page .example-filter-btn {
    border: 1px solid var(--gray-200);
    background: #ffffff;
    color: var(--neutral);
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.service-examples-page .example-filter-btn:hover,
body.service-examples-page .example-filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(46, 125, 191, 0.16);
}

body.service-examples-page .examples-search {
    min-width: min(100%, 360px);
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

body.service-examples-page .examples-search-input {
    width: 100%;
    max-width: 360px;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    color: var(--neutral);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.service-examples-page .examples-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 125, 191, 0.08);
}

body.service-examples-page .examples-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}

body.service-examples-page .examples-sort-label {
    font-family: var(--font-headline);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
}

body.service-examples-page .examples-sort-select {
    width: 100%;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    color: var(--neutral);
    padding: 13px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.service-examples-page .examples-sort-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 125, 191, 0.08);
}

body.service-examples-page .examples-meta {
    margin-bottom: 28px;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 600;
}

body.service-examples-page .example-card-link.is-hidden {
    display: none;
}

body.image-lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(10, 12, 16, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__panel {
    width: min(92vw, 1200px);
    max-height: 90vh;
    display: grid;
    gap: 14px;
    grid-template-rows: auto 1fr auto;
    padding: 16px;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.image-lightbox__top {
    display: flex;
    justify-content: flex-end;
}

.image-lightbox__close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.image-lightbox__media {
    display: grid;
    place-items: center;
    min-height: 40vh;
}

.image-lightbox__img {
    max-width: 100%;
    max-height: 74vh;
    object-fit: contain;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.image-lightbox__caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    body.service-examples-page .examples-sort {
        width: 100%;
    }

    body.service-examples-page .examples-search {
        width: 100%;
    }

    body.service-examples-page .examples-search-input {
        max-width: none;
    }

    body.service-examples-page .examples-toolbar {
        padding: 18px;
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    body.service-examples-page .examples-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    body.service-examples-page .example-filter-btn {
        flex: 0 0 auto;
    }

    body.service-examples-page .examples-meta {
        margin-bottom: 20px;
    }

    body.service-examples-page .service-examples {
        padding: 110px 0 60px;
    }

    body.service-examples-page .service-examples-title {
        font-size: 34px;
    }

    body.service-examples-page .service-examples-subtitle {
        font-size: 16px;
    }

    body.service-examples-page .examples-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 540px;
        margin: 0 auto;
    }

    body.example-detail-page .example-detail {
        padding: 110px 0 60px;
    }

    body.example-detail-page .example-detail-title {
        font-size: 32px;
    }

    body.example-detail-page .example-detail-meta {
        flex-direction: column;
        gap: 6px;
    }

    body.example-detail-page .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.example-detail-page .example-detail-description {
        margin-bottom: 36px;
    }
}
