/* Reset and Base Styles */

:root {
    --primary-color: #000000;
    --secondary-color: #ececec;
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #f85408;
    --spacing: 20px;
    --transition: all 0.3s ease;
    --line-title: 1.6;
    --line-subtitle: 1.2;
    --line-H3: 1.2;
    --font-size-p: 1rem;
}

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

/* Shared Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Page Grid Layout */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.contact-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .contact-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-container {
        padding: 32px 8px 24px 8px;
    }
    .contact-form-wrapper {
        margin-top: 16px;
    }
}

.contact-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    min-width: 0;
}

.contact-form-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background: var(--bg-color);
    line-height: var(--line-title);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: none;
    transition: background 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: none;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.navbar-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.navbar-link:hover {
    color: var(--accent-color);
}

.navbar-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-btn:hover {
    background: #ffffff;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Hamburger Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggle.active .hamburger-line {
    background: var(--accent-color);
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Styles */
@media (max-width: 900px) {
    .navbar-container {
        max-width: none;
        width: 100%;
        padding: 0 15px;
        height: 80px;
        gap: 15px;
    }

    .navbar-logo {
        flex-shrink: 0;
        z-index: 1002;
    }

    .navbar-logo img {
        height: 45px;
    }

    .navbar-toggle {
        display: flex;
        flex-shrink: 0;
        padding: 0.4rem;
        z-index: 1002;
    }

    .hamburger-line {
        width: 24px;
        height: 2.5px;
    }

    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        width: 90%;
        max-width: 320px;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        display: none;
        transform: translate(-50%, -20px);
        border-radius: 5px;
        overflow: hidden;
        opacity: 0;
    }

    .navbar-menu.active {
        display: flex;
        animation: menuSlideDown 0.3s ease forwards;
    }
    
    @keyframes menuSlideDown {
        from {
            opacity: 0;
            transform: translate(-50%, -20px);
        }
        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .navbar-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--primary-color);
    }

    .navbar-item:first-child .navbar-link {
        border-radius: 5px 5px 0 0;
    }

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

    .navbar-item:last-child .navbar-link,
    .navbar-item:last-child .navbar-btn {
        border-radius: 0 0 5px 5px;
    }

    .navbar-link {
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
        color: var(--primary-color);
    }

    .navbar-btn {
        display: block;
        width: 100%;
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
        border-radius: 0;
        text-align: center;
    }

    .navbar-btn:active {
        background: var(--accent-color);
        color: #ffffff;
    }

    .hero-slider {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        margin-top: 40px;
        z-index: 3;
        overflow: visible;
        flex-shrink: 0;
        -webkit-mask-image: none;
        mask-image: none;
        display: flex;
        flex-direction: column;
    }

    .hero-slider .slider-wrapper {
        overflow: hidden;
        padding: 0 15px;
        height: 450px;
        flex-shrink: 0;
    }

    .hero-slider .slider-track {
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }

    .hero-slider .slider-card {
        min-width: 100%;
        width: 100%;
        height: 380px;
        flex-shrink: 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding-top: 100px;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 0;
    }

    .hero-content {
        max-width: none;
        text-align: center;
        padding: 0 15px;
    }

    .hero-slider-controls {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 15px;
        z-index: 100;
        padding: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--primary-color);
    overflow-x: clip;
    overflow-y: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 100px 20px 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards 0.6s;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards 0.8s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 50vh;
    max-height: 600px;
    z-index: 3;
    overflow: visible;
    clip-path: inset(-20px -9999px -40px 0);
    -webkit-mask-image: none;
    mask-image: none;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.hero-slider .slider-wrapper {
    width: 100%;
    flex: 1;
    overflow: visible;
    position: relative;
    height: 100%;
}

.hero-slider .slider-track {
    height: 100%;
}

.hero-slider .slider-card {
    min-width: 100%;
    width: 100%;
    height: 100%;
}

.hero-slider .card-content {
    box-shadow: none;
    transition: transform 0.3s ease;
}

.hero-slider .card-content:hover {
    box-shadow: none;
}

.hero-slider .slider-btn {
    box-shadow: none;
}

.hero-slider .slider-btn:hover {
    box-shadow: none;
}

.hero-slider-controls {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    z-index: 100;
    display: flex;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 0;
    justify-content: flex-end;
}

.hero-slider-btn-next img {
    transform: rotate(180deg);
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--anim-delay, 0s);
}

.animate-from-left {
    transform: translateX(-60px);
}

.animate-from-right {
    transform: translateX(60px);
}

.animate-from-top {
    transform: translateY(-50px);
}

.animate-from-bottom {
    transform: translateY(60px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* About Section */
.about {
    position: relative;
    min-height: 100vh;
    padding: 40px 0;
    background: var(--bg-color);
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-item {
    border-radius: 8px;
    padding: 20px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    display: flex;
    flex-flow: column;
    padding: 20px;
}

.about-list-wrapper {
    display: flex;
    align-items: flex-start;
}

.about-list {
    list-style: none;
    counter-reset: about-counter;
    padding: 0;
    margin: 0;
    width: 100%;
}

.about-list-item {
    counter-increment: about-counter;
    padding: 20px 0;
    border-bottom: 1px solid rgba(7, 30, 54, 0.2);
    font-size: 1.1rem;
    color: var(--text-color);
    position: relative;
    padding-left: 60px;
}

.about-list-item::before {
    content: counter(about-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 3rem;
}

.about-text p {
    font-size: var(--font-size-p);
    color: var(--text-color);
    line-height: var(--line-subtitle);
    margin-bottom: 1.5rem;
}

.about-text-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-text-items h2 {
    margin-bottom: 0;
}

.about-text-items p {
    margin-bottom: 0;
}

.about-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.about-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 30, 54, 0.3);
}

.about-video-wrappers {
    width: 100%;
    min-height: 620px;
    position: relative;
    margin-top: 90px;
}

.about-video-block {
    position: absolute;
    width: 500px;
    max-width: 90%;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video-block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-video-block:nth-child(1) {
    top: 0;
    left: 5%;
    z-index: 4;
}

.about-video-block:nth-child(2) {
    top: 150px;
    left: 30%;
    z-index: 3;
}

.about-video-block:nth-child(3) {
    top: -45px;
    right: 10%;
    z-index: 2;
}

.about-video-block:nth-child(4) {
    top: 320px;
    right: 5%;
    z-index: 1;
}

.about-video-block:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Services Section */
.services {
    position: relative;
    min-height: 100vh;
    padding: 40px 0;
    background: var(--bg-color);
    overflow-x: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: 20px;
    min-height: 600px;
}

.service-item {
    border-radius: 8px;
    padding: 20px;
}

.service-header-item {
    grid-column: span 2;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-headtitle {
    color: var(--primary-color);
    font-size: 2.5em;
    line-height: 1.2;
    text-align: left;
}

.service-titles {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-text-service {
    font-size: var(--font-size-p);
    color: var(--text-color);
    line-height: var(--line-subtitle);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform-origin: right;
    transform: scaleX(0);
}

.service-link:hover {
    color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-item img {
    display: block;
}

/* Partners Section */
.partners {
    padding: 40px 0;
    /* background: var(--secondary-color); */
    background: #a7a7a7;
    overflow: hidden;
}

.partners-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.partners-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: partners-scroll 30s linear infinite;
}

.partners-slide {
    flex-shrink: 0;
    width: 270px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Latest Section */
.latest {
    position: relative;
    padding: 40px 0;
    background: var(--secondary-color);
    overflow: hidden;
}

.latest-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.latest-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.latest-slider {
    width: 100%;
    min-height: 600px;
    position: relative;
    padding-left: calc((100% - 1200px) / 2 + 20px);
    overflow: hidden;
}

@media (max-width: 1240px) {
    .latest-slider {
        padding-left: 20px;
    }
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
}
.slider-wrapper.is-dragging {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slider-card {
    min-width: calc(33.333% - 14px);
    height: 500px;
    flex-shrink: 0;
}

.card-content {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card-content:hover {
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.card-video {
    flex: 1;
    background: var(--primary-color);
    position: relative;
}

.play-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    z-index: 5;
}

.card-content:hover .play-icon {
}

.card-info {
    padding: 20px;
    background: transparent;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}

.slider-btn img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.slider-btn:hover img {
    filter: brightness(0) invert(1);
}

.slider-btn-prev img {
    transform: rotate(180deg);
}

/* Latest slider buttons - black with white arrows */
.latest-slider .slider-btn,
.slider-controls .slider-btn {
    background: #000000;
}

.latest-slider .slider-btn:hover,
.slider-controls .slider-btn:hover {
    background: var(--accent-color);
}

.latest-slider .slider-btn img,
.slider-controls .slider-btn img {
    filter: none;
}

.latest-slider .slider-btn:hover img,
.slider-controls .slider-btn:hover img {
    filter: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 40px;
    }

    .hero-slider {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        margin-top: 40px;
        z-index: 3;
        overflow: visible;
        flex-shrink: 0;
        -webkit-mask-image: none;
        mask-image: none;
        display: flex;
        flex-direction: column;
    }

    .hero-slider .slider-wrapper {
        overflow: hidden;
        padding: 0 15px;
        height: 500px;
        flex-shrink: 0;
    }

    .hero-slider .slider-track {
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }

    .hero-slider .slider-card {
        min-width: 100%;
        width: 100%;
        height: 400px;
        flex-shrink: 0;
    }

    .hero-slider-controls {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 15px;
        z-index: 100;
        padding: 0;
    }

    .hero-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding-top: 110px;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 0;
    }

    .hero-content {
        max-width: none;
        text-align: center;
        padding: 0 0;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-video {
        object-position: center;
    }

    /* About Section Responsive */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-video-wrappers {
        min-height: 650px;
    }

    .about-video-block {
        width: 400px;
        max-width: 90%;
    }

    .about-video-block:nth-child(1) {
        top: 0;
        left: 5%;
    }

    .about-video-block:nth-child(2) {
        top: 120px;
        left: 25%;
    }

    .about-video-block:nth-child(3) {
        top: 10px;
        right: 5%;
    }

    .about-video-block:nth-child(4) {
        top: 280px;
        right: 5%;
    }

    .about-list-item {
        font-size: 1rem;
        padding: 15px 0;
        padding-left: 50px;
    }

    .about-list-item::before {
        font-size: 1rem;
        top: 15px;
    }

    /* Services Section Responsive */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .service-titles {
        font-size: 2rem;
    }

    .service-item {
        padding: 20px;
    }

    .service-list {
        gap: 30px;
    }

    /* Latest Section Responsive */
    .latest-header-container {
        padding: 0 40px;
    }

    .latest-header {
        margin-bottom: 2rem;
    }

    .partners-title {
        font-size: 2.5rem;
    }

    .partners-slide {
        width: 225px;
        height: 98px;
    }

    .latest-title {
        font-size: 2.5rem;
    }

    .latest-slider {
        min-height: 400px;
        padding: 0 20px;
    }

    .slider-card {
        min-width: calc(50% - 10px);
        height: 350px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
    }

    .slider-btn img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 568px) {
    .navbar-container {
        padding: 0 12px;
        height: 70px;
        gap: 12px;
    }

    .navbar-logo img {
        height: 38px;
    }

    .navbar-toggle {
        padding: 0.3rem;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }

    .navbar-menu {
        top: 70px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-slider {
        height: auto;
        margin-top: 30px;
        overflow: visible;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-slider .slider-wrapper {
        overflow: hidden;
        padding: 0 20px;
        height: 400px;
        flex-shrink: 0;
    }

    .hero-slider .slider-track {
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }

    .hero-slider .slider-card {
        min-width: 100%;
        width: 100%;
        height: 350px;
        flex-shrink: 0;
    }

    .hero-wrapper {
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 0;
    }

    .hero-slider-controls {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 15px;
        padding: 0;
    }

    .hero-title {
        font-size: 2rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: left;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* About Section Mobile */
    .about {
        padding: 40px 0;
    }

    .about-text {
        padding: 10px;
    }

    .about-text h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .about-list-wrapper {
        padding: 10px;
    }

    .about-video-wrappers {
        min-height: 500px;
        margin-top: 20px;
    }

    .about-video-block {
        width: 280px;
        max-width: 85%;
    }

    .about-video-block:nth-child(1) {
        top: 0;
        left: 0;
    }

    .about-video-block:nth-child(2) {
        top: 100px;
        left: auto;
        right: 0;
    }

    .about-video-block:nth-child(3) {
        top: 200px;
        left: 0;
        right: auto;
    }

    .about-video-block:nth-child(4) {
        top: 300px;
        right: 0;
        left: auto;
    }

    .about-list-item {
        font-size: 0.9rem;
        padding: 12px 0;
        padding-left: 45px;
    }

    .about-list-item::before {
        font-size: 0.9rem;
        top: 12px;
    }

    /* Services Section Mobile */
    .services {
        padding: 40px 0;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-headtitle {
        font-size: 1.8em;
        text-align: left;
    }

    .service-titles {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 0px;
    }

    .service-list {
        gap: 25px;
    }

    .about-text-service {
        font-size: 0.9rem;
    }

    /* Latest Section Mobile */
    .latest {
        padding: 40px 0;
        min-height: auto;
    }

    .latest-header-container {
        padding: 0 20px;
    }

    .latest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .partners {
        padding: 40px 0;
    }

    .partners-title {
        font-size: 1.8rem;
    }

    .partners-slide {
        width: 180px;
        height: 75px;
    }

    .latest-title {
        font-size: 1.8rem;
    }

    .latest-slider {
        min-height: 300px;
        padding: 0 20px;
    }

    .slider-wrapper {
        overflow: hidden;
    }

    .slider-card {
        min-width: 100%;
        height: 300px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }

    .slider-controls {
        gap: 10px;
    }

    .slider-btn img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 65vh;
    }
}
/* =====================
   Footer Styles
   ===================== */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 0;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* Nav & Contact columns */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.25s ease;
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::after {
    width: 100%;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
}

.footer-social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover img {
    opacity: 1;
}

.footer-social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-heart {
    color: var(--accent-color);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Отступ сверху для секции .contact, чтобы не перекрывалась navbar */
.contact {
    margin-top: 140px; /* при необходимости скорректируйте значение */
    margin-bottom: 50px;
}
/* Overlay for darkening background video */
.video-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    z-index: 0;
    pointer-events: none;
}
/* Contact map link styles */
.contact-map-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-map-link:hover {
    color: var(--accent-color, #f85408);
}
.contact-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    height: 100%;
}
/* Animation delay utilities */
.anim-delay-1 { --anim-delay: 0.15s; }
.anim-delay-2 { --anim-delay: 0.3s; }
.anim-delay-3 { --anim-delay: 0.45s; }
.anim-delay-4 { --anim-delay: 0.6s; }

/* ============================================================
   Contact page — видео ограничено .video-bg-wrapper
   Применяется только через класс .page-contact на <body>
   Не влияет на другие страницы
   ============================================================ */
.page-contact .video-bg-wrapper {
    position: relative;
    overflow: hidden;
}

.page-contact .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    background: #071e36;
}

.page-contact .video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
}

.page-contact .video-bg-wrapper .navbar {
    z-index: 1000;
}

.page-contact .video-bg-wrapper .contact {
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cf-group {
    position: relative;
}

.cf-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    outline: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    transition: border-color 0.3s ease;
    resize: none;
}

.cf-input::placeholder {
    color: transparent;
}

.cf-label {
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.25s ease;
    font-family: 'Roboto', sans-serif;
}

/* Float label when focused or has value */
.cf-input:focus ~ .cf-label,
.cf-input:not(:placeholder-shown) ~ .cf-label {
    top: -1.1rem;
    font-size: 0.75rem;
    color: #ffffff;
}

.cf-input:focus {
    border-bottom-color: #ffffff;
}

.cf-textarea {
    display: block;
    min-height: 80px;
    line-height: 1.6;
    resize: vertical;
}

/* Submit button */
.cf-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 36px;
    background: #ffffff;
    color: var(--primary-color);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border-radius: 4px;
    margin-top: 0.2rem;
}

.cf-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.cf-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Spinner inside button */
.cf-btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: cfSpin 0.7s linear infinite;
}

.cf-btn.loading .cf-btn-loader {
    display: block;
}

@keyframes cfSpin {
    to { transform: rotate(360deg); }
}

/* Status message */
.cf-status {
    font-size: 0.9rem;
    min-height: 1.2em;
}

.cf-status.success {
    color: #6fffa0;
}

.cf-status.error {
    color: #ff7070;
}

/* =============================================
   Production Page
   ============================================= */

/* Production Hero */
.production-hero,
.postproduction-hero,
.motion-hero,
.photographer-hero,
.neural-hero,
.about-hero,
.work-hero {
    padding: 160px 0 100px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.production-hero-video,
.postproduction-hero-video,
.motion-hero-video,
.photographer-hero-video,
.neural-hero-video,
.about-hero-video,
.work-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.production-hero-overlay,
.postproduction-hero-overlay,
.motion-hero-overlay,
.photographer-hero-overlay,
.neural-hero-overlay,
.about-hero-overlay,
.work-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.production-hero .container,
.postproduction-hero .container,
.motion-hero .container,
.photographer-hero .container,
.neural-hero .container,
.about-hero .container,
.work-hero .container {
    position: relative;
    z-index: 2;
}

.production-label,
.postproduction-label,
.motion-label,
.photographer-label,
.neural-label,
.about-label,
.work-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.production-hero-title,
.postproduction-hero-title,
.motion-hero-title,
.photographer-hero-title,
.neural-hero-title,
.about-hero-title,
.work-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bg-color);
    margin-bottom: 28px;
    max-width: 700px;
}

.production-hero-subtitle,
.postproduction-hero-subtitle,
.motion-hero-subtitle,
.photographer-hero-subtitle,
.neural-hero-subtitle,
.about-hero-subtitle,
.work-hero-subtitle {
    font-size: var(--font-size-p);
    line-height: var(--line-title);
    color: var(--bg-color);
    max-width: 600px;
    opacity: 0.8;
}

.production-hero-grid,
.postproduction-hero-grid,
.motion-hero-grid,
.photographer-hero-grid,
.neural-hero-grid,
.about-hero-grid,
.work-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 118px;
    align-items: start;
}

.production-hero-right,
.postproduction-hero-right,
.motion-hero-right,
.photographer-hero-right,
.neural-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

/* Production Content */
.production-content,
.postproduction-content,
.motion-content,
.photographer-content,
.neural-content,
.about-content-page {
    padding: 50px 0 20px;
    background: white;
}

.production-content-title,
.postproduction-content-title,
.motion-content-title,
.photographer-content-title,
.neural-content-title,
.about-content-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.production-content-subtitle,
.postproduction-content-subtitle,
.motion-content-subtitle,
.photographer-content-subtitle,
.neural-content-subtitle,
.about-content-subtitle {
    font-size: var(--font-size-p);
    line-height: var(--line-title);
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 36px;
}

.production-content-heading,
.postproduction-content-heading,
.motion-content-heading,
.photographer-content-heading,
.neural-content-heading,
.about-content-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 32px;
}

.production-content-subheading,
.postproduction-content-subheading,
.motion-content-subheading,
.photographer-content-subheading,
.neural-content-subheading,
.about-content-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 32px;
}

.production-content-list,
.postproduction-content-list,
.motion-content-list,
.photographer-content-list,
.neural-content-list,
.about-content-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.production-content-list li,
.postproduction-content-list li,
.motion-content-list li,
.photographer-content-list li,
.neural-content-list li,
.about-content-list li {
    font-size: var(--font-size-p);
    line-height: var(--line-title);
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.production-content-list li::before,
.postproduction-content-list li::before,
.motion-content-list li::before,
.photographer-content-list li::before,
.neural-content-list li::before,
.about-content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.production-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.production-content-item {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.production-content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.production-content-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ccc;
}

.production-content-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px 20px 8px;
}

.production-content-item-desc {
    font-size: 0.9rem;
    line-height: var(--line-title);
    color: var(--text-color);
    opacity: 0.7;
    padding: 0 20px 20px;
}

/* Production Service */
.production-service {
    padding: 100px 0;
    background: var(--bg-color);
}

.production-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.production-service-subtitle {
    font-size: var(--font-size-p);
    line-height: var(--line-title);
    color: var(--text-color);
    opacity: 0.75;
    max-width: 540px;
    margin-bottom: 56px;
}

.production-service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.production-service-item {
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.production-service-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 32px rgba(248, 84, 8, 0.08);
}

.production-service-number {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.production-service-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: var(--line-H3);
}

.production-service-item-desc {
    font-size: 0.95rem;
    line-height: var(--line-title);
    color: var(--text-color);
    opacity: 0.7;
}

/* Production Responsive */
@media (max-width: 900px) {
    .production-hero-title,
    .postproduction-hero-title,
    .motion-hero-title,
    .photographer-hero-title,
    .neural-hero-title,
    .about-hero-title,
    .work-hero-title {
        font-size: 2.5rem;
    }

    .production-hero-grid,
    .postproduction-hero-grid,
    .motion-hero-grid,
    .photographer-hero-grid,
    .neural-hero-grid,
    .about-hero-grid,
    .work-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .production-content-title,
    .postproduction-content-title,
    .motion-content-title,
    .photographer-content-title,
    .neural-content-title,
    .about-content-title {
        line-height: 1.2;
    }

    .production-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .production-service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .production-hero,
    .postproduction-hero,
    .motion-hero,
    .photographer-hero,
    .neural-hero,
    .about-hero,
    .work-hero {
        padding: 100px 0 48px;
    }

    .production-hero-title,
    .postproduction-hero-title,
    .motion-hero-title,
    .photographer-hero-title,
    .neural-hero-title,
    .about-hero-title,
    .work-hero-title {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .production-hero-subtitle,
    .postproduction-hero-subtitle,
    .motion-hero-subtitle,
    .photographer-hero-subtitle,
    .neural-hero-subtitle,
    .about-hero-subtitle,
    .work-hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .production-content,
    .postproduction-content,
    .motion-content,
    .photographer-content,
    .neural-content,
    .about-content-page {
        padding: 64px 0;
    }

    .production-content-title,
    .postproduction-content-title,
    .motion-content-title,
    .photographer-content-title,
    .neural-content-title,
    .about-content-title {
        line-height: 1.1;
    }

    .production-content-grid {
        grid-template-columns: 1fr;
    }

    .production-service {
        padding: 64px 0;
    }
}

/* =====================
   Work Page
   ===================== */

.work-content {
    padding: 80px 0 0;
    background: var(--bg-color);
}

.work-category {
    margin-bottom: 80px;
}

.work-category-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.work-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.work-category-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.work-category-link:hover {
    opacity: 0.7;
}

/* 3-column 2-row video grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.work-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.work-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.work-card-play {
    width: 48px;
    height: 48px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}

.work-card:hover .work-card-play {
    opacity: 1;
    transform: scale(1.1);
}

.work-card-play svg {
    width: 100%;
    height: 100%;
}

.work-card-info {
    padding: 16px 20px 18px;
}

.work-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-color);
    margin: 0 0 4px;
    line-height: 1.3;
}

.work-card-subtitle {
    font-size: 0.8rem;
    color: var(--bg-color);
    opacity: 0.55;
    margin: 0;
}

/* Photography Slider */
.work-photo {
    background: var(--bg-color);
    overflow: hidden;
}

.work-photo-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
}

.work-photo-header-text .work-label {
    display: block;
    margin-bottom: 8px;
}

.work-photo-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.work-photo-controls {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.work-photo-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.work-photo-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.work-photo-btn img {
    width: 18px;
    height: 18px;
}

.work-photo-btn-prev img {
    transform: rotate(180deg);
}

.work-photo-slider {
    overflow: hidden;
    padding-bottom: 80px;
}

.work-photo-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.work-photo-slide {
    flex: 0 0 calc(33.333% - 11px);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.work-photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-photo-slide:hover img {
    transform: scale(1.04);
}

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

    .work-photo-slide {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 600px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-category-title {
        font-size: 1.5rem;
    }

    .work-photo-slide {
        flex: 0 0 calc(100% - 0px);
    }

    .work-photo-title {
        font-size: 1.5rem;
    }
}

