/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.header .logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.header .nav {
    display: none;
    gap: 2rem;
}

.header .nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header .nav li {
    list-style: none;
}

.header .nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.header .nav a:hover {
    color: white;
}

.header-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

.header .search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.booking-icon {
    display: flex;
    flex-direction: column;
}

.booking-icon .book-icon:first-child {
    transition: 0.5s ease-in-out;
}

.booking-icon:hover .book-icon:first-child {
    transform: rotate(-8deg) translateY(-5px);
}

.header .book-btn {
    background: black;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.header .book-btn:hover {
    background: #333;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    order: -1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    z-index: 1001;
    padding: 2rem 1rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu-actions .book-btn {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav li {
    list-style: none;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.5rem 0;
}

.header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header .overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .header .nav {
        display: flex;
    }

    .header-right {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    color: white;
    padding-bottom: 13vh;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 2vw, 24px);
}


.hero-text {
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-style: normal;
    font-weight: bold;
    line-height: 100%;
    letter-spacing: 1.2vw;
    text-transform: uppercase;
}

.animate-words span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: riseUp 0.6s forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes riseUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-description {
    color: #FFF;
    font-size: clamp(16px, 2vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 8px 16px;
    border: none;
    border-radius: 200px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .btn-primary {
    background: white;
    color: #000;
}

.hero .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover img {
    filter: brightness(0);
}

.hero .btn-secondary {
    color: #E8EAED;
    background: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    position: relative;
}

.hero .btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.hero .btn-secondary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 17px;
    z-index: -1;
    border-radius: 30px;
    animation: watchBtn 3s ease-in-out infinite alternate;
}

.hero .btn-secondary img {
    animation: rotatePause 4s infinite ease-in-out;
}

@keyframes watchBtn {
    from {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.05);
    }

    to {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.05);
    }
}

@keyframes rotatePause {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.hero .btn-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .animate-words br,
    .movies-section .head h2 br {
        display: none;
    }

    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Movie Section */
.movies-section {
    padding-top: 64px;
    padding-bottom: 64px;
    background: black;
    z-index: 1;
    position: relative;
}

.sticky-top {
    position: sticky;
    top: 0;
}

.movies-section .head {
    padding-top: 64px;
    padding-bottom: 64px;
}

.movie-desc {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 2vw, 24px);
}

.movies-section .head h2 {
    color: #FFF;
    font-size: clamp(32px, 7vw, 72px);
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 1.2vw;
}

.movies-section .head .desc {
    color: #FFF;
    font-size: clamp(16px, 2vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
}

.movie-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.movie-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.movie-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: none;
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

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

.movie-item:hover .movie-video {
    opacity: 1;
}

.movie-item:hover .movie-poster {
    opacity: 0.3;
}

.movie-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.movie-item:hover .movie-title {
    transform: translateY(0);
    opacity: 1;
}

.watch-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease 0.2s;
    transform: translateY(30px);
    opacity: 0;
}

.movie-item:hover .watch-btn {
    transform: translateY(0);
    opacity: 1;
}

.watch-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.play-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* All four corner brackets */
.movie-item::before,
.movie-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 20;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Top-left corner */
.movie-item::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
    transform: translate(-5px, -5px);
}

/* Bottom-right corner */
.movie-item::after {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
    transform: translate(5px, 5px);
}

/* Top-right and bottom-left corners using pseudo elements on overlay */
.movie-overlay::before,
.movie-overlay::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 21;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Top-right corner */
.movie-overlay::before {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
    transform: translate(5px, -5px);
}

/* Bottom-left corner */
.movie-overlay::after {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
    transform: translate(-5px, 5px);
}

/* Show and animate corners on hover */
.movie-item:hover::before {
    opacity: 1;
    transform: translate(0, 0);
}

.movie-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.movie-item:hover .movie-overlay::before {
    opacity: 1;
    transform: translate(0, 0);
}

.movie-item:hover .movie-overlay::after {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        padding: 0 16px;
    }

    .movies-section {
        position: relative !important;
    }

    .movie-title {
        font-size: 18px;
    }

    .watch-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .movie-item::before,
    .movie-item::after,
    .movie-overlay::before,
    .movie-overlay::after {
        width: 15px;
        height: 15px;
    }
}

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


/* Studio Section */
.studio-section {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    background: black;
    z-index: 2;
}

.studio-section .studio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.studio-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 2vw, 24px);
}

.studio-content h2 {
    color: #FFF;
    font-size: clamp(32px, 6vw, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 7.2px;
    text-transform: uppercase;
}

.studio-content h3 {
    color: #535353;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}

.studio-content p {
    color: #FFF;
    font-size: clamp(16px, 2vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.studio-image {
    flex: 1;
    position: relative;
    height: 458px;
    overflow: hidden;
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Collaborating Section */
.collaborating-section {
    position: relative;
    padding: 64px 0;
    text-align: center;
    background: #000;
    z-index: 2;
}

.collaborating-slider {
    position: relative;
}

.collaborating-section h2 {
    color: #999999;
    text-align: center;
    font-size: clamp(24px, 7vw, 48px);
    font-weight: 500;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.collaborating-section .swiper-slide {
    width: auto;
    height: 100px;
    display: flex;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.swiper-slide img:hover {
    filter: brightness(1.2);
}

.swiper-pagination {
    position: absolute;
    left: 50% !important;
    bottom: -25px !important;
    transform: translateX(-50%);
    text-align: center;
    width: auto;
    z-index: 99;
}


.swiper-custom-pagination {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #333;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.content-section {
    padding: 64px 0;
    position: relative;
}

.content-section .service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-section .text-content {
    z-index: 2;
}

.content-section .main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 7.2px;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content-section .subtitle {
    font-size: 24px;
    color: #535353;
    font-weight: 400;
    letter-spacing: 3.6px;
    margin-bottom: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.content-section .description {
    font-size: clamp(16px, 2vw, 24px);
    margin-bottom: 24px;
    color: #FFF;
    font-weight: 300;
}

.content-section .cta-button {
    background: transparent;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 18px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    border-radius: 200px;
    border: 1px solid #FFF;
    display: block;
    width: fit-content;
}

.content-section .cta-button:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

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

.content-section .image-content img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.content-section .services-header {
    padding: 64px 0;
}

.content-section .services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.center-align .container.service-block {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
}

.center-align .text-content {
    order: 2;
}

.center-align .image-content {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
}

.services-header {
    padding: 32px 0;
}

.services-header h2 {
    color: #FFF;
    font-size: clamp(32px, 7vw, 72px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 14.4px;
    text-transform: uppercase;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
    .content-section .service-block {
        grid-template-columns: 1fr;
    }

    .content-section .subtitle {
        font-size: 1.2rem;
    }


    .content-section.right-align .service-block {
        grid-template-columns: 1fr;
    }

    .content-section.right-align .image-content {
        order: 1;
    }

    .content-section.right-align .text-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .content-section .service-block {
        gap: 40px;
    }


    .content-section .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .content-section .services-header {
        padding: 60px 0 30px;
    }

    .content-section .services-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {


    .content-section .subtitle {
        font-size: 0.9rem;
    }

    .content-section .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section.animate .text-content {
    animation: fadeInUp 0.8s ease-out;
}

.content-section.animate .image-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}


/* Header */
.our-people .head {
    padding: 60px 0 40px;
}

.our-people .head h2 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: lowercase;
    transition: all 0.3s ease;
    min-width: 100px;
    text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #fff;
    color: #000;
}

/* Team Sections */
.team-section {
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.team-section.hidden {
    display: none;
}

.team-section .section-title {
    font-size: clamp(32px, 6vw, 40px);
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: clamp(96px, 15vw, 160px);
    height: clamp(96px, 15vw, 160px);
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: #333;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.member-role {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Message Section */
.message-section {
    margin-top: 80px;
    padding: 40px 0;
}

.message-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.message-text {
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.8;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .our-people .head {
        padding: 40px 0 30px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        min-width: 80px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }

    a .member-name {
        font-size: 14px;
    }

    .member-role {
        font-size: 11px;
    }

    .team-section {
        margin-bottom: 40px;
    }

    .message-section {
        margin-top: 60px;
        padding: 30px 0;
    }
}

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


.contact-section {
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .contact-container {
    display: flex;
    gap: 64px;
    align-items: start;
}

.contact-section .content {
    max-width: 530px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-section .form-container {
    width: 50%;
}

.contact-section .title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    letter-spacing: 7.2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-section .description {
    font-size: clamp(16px, 2vw, 24px);
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-section .contact-info p {
    font-size: 18px;
}

.contact-section .social-links {
    display: flex;
    gap: 12px;
}

.contact-section .social-link {
    width: 33px;
    height: 32px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-section .social-link:hover {
    border-color: #fff;
    color: #000;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section .form-group {
    margin-bottom: 8px;
}

.contact-section .form-input,
.contact-section .form-select,
.contact-section .form-textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-section .form-input:focus,
.contact-section .form-select:focus,
.contact-section .form-textarea:focus {
    outline: none;
    border-color: #666;
}

.contact-section .form-input::placeholder,
.contact-section .form-textarea::placeholder {
    color: #666;
}

.contact-section .form-select {
    cursor: pointer;
}

.contact-section .form-select option {
    background: #000;
    color: #fff;
}

.contact-section .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-section .submit-btn {
    background: transparent;
    color: #fff;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-section .submit-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-section .form-container {
        padding: 30px 20px;
    }

    .contact-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .contact-section .title {
        font-size: 2rem;
    }

    .contact-section .description {
        font-size: 1rem;
    }

    .contact-section .form-container {
        padding: 25px 15px;
    }

    .contact-section .form-input,
    .contact-section .form-select,
    .contact-section .form-textarea {
        padding: 12px;
    }
}

/* Thank you section */

.thank-you {
    display: flex;
    align-items: center;
    padding-top: 75px;
}

.thank-you .container {
    text-align: center;
    width: 100%;
    gap: 20px;
}

.thank-you .success-message {
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 6.4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.thank-you .main-heading {
    color: #FFF;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.thank-you .back-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.thank-you .back-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Hero Section */
.insight-section {
    position: relative;
    overflow: hidden;
}

.insight-section .head {
    padding-top: 128px;
    padding-bottom: 32px;
}

.insight-section .head h1 {
    color: #FFF;
    font-size: clamp(32px, 7vw, 72px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 14.4px;
    text-transform: uppercase;
}

.insight-section .container {
    padding-bottom: 32px;
}

.insight-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.insight-section .slide-content {
    position: relative;
    width: 100%;
    height: 425px;

}

.insight-section .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-section .insight-date {
    color: rgba(255, 255, 255, 0.40);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.insight-section .slide-overlay {
    position: relative;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding-top: 15px;
}

.insight-section .slide-title {
    color: #FFF;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
}

.insight-section .learn-more {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.insight-section .learn-more:hover {
    opacity: 0.7;
}

/* Swiper Navigation */
.insight-section .swiper-button-next,
.insight-section .swiper-button-prev {
    color: #fff;
}

.insight-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.insight-section .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Discover Section */
.discover-section {
    padding: 60px 0;
}

/* Filter Controls */
.discover-section .filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.discover-section .filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.discover-section .filter-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.discover-section .filter-btn:hover,
.discover-section .filter-btn.active {
    background: #fff;
    color: #000;
}

.discover-section .sort-controls {
    position: relative;
}

.discover-section .sort-select {
    background: transparent;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 150px;
    border-radius: 30px;
}

.discover-section .sort-select:focus {
    outline: none;
    border-color: #fff;
}

/* Discover Grid */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.discover-grid:has(.discover-card:nth-child(2)) {
    justify-content: start;
}

.discover-grid:has(.discover-card:only-child) {
    justify-content: center;
}

.discover-card {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.discover-card:hover {
    transform: translateY(-5px);
}

.discover-card.hidden {
    display: none;
}

.discover-grid .card-image {
    position: relative;
    height: 222px;
    overflow: hidden;
}

.discover-grid .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.discover-card:hover .card-image img {
    transform: scale(1.05);
}

.card-discover {
    padding: 20px 0;
}

.card-discover .card-date {
    color: rgba(255, 255, 255, 0.40);
    font-size: 18px;
    font-weight: 400;
}

.card-discover a {
    font-size: 18px;
    color: #fff;
}

.discover-grid .card-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.discover-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.discover-pagination a,
.discover-pagination span {
    display: inline-block;
    padding: 10px 16px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.discover-pagination a:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 0 2px #000 inset;
}

.discover-pagination .current {
    background-color: #444;
    pointer-events: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .insight-section .insight-date {
        font-size: 12px;
    }

    .insight-section .slide-discover {
        height: 150px;
    }

    .insight-section .slide-title,
    .insight-section .learn-more {
        font-size: 16px;
    }

    .insight-section .slide-overlay {
        padding: 20px;
    }

    .discover-section .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }
}


/* Single Insight Page */
.single-insight-head {
    background-color: #000;
    color: #fff;
    text-align: left;
}

.single-insight-head .head-image img {
    width: 100%;
    max-height: 400px;
    display: block;
    object-fit: cover;
}

.single-insight-head .head-content {
    padding: 40px 0;
}

.single-insight-head .insight-title {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.insight-body {
    font-size: 24px;
    color: #fff;
}

.insight-body p {
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .single-insight-head .insight-title {
        font-size: 32px;
    }

    .insight-body {
        font-size: 18px;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    background-color: #000;
    padding: 120px 40px 40px;
    width: 100%;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 50% repeat(3, 1fr);
    gap: 25px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer .logo {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.footer .logo::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
}

.footer .logo::after {
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    transform: rotate(45deg);
}

.footer .address {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 16px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section a:hover {
    color: #fff;
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer .contact-item {
    color: #ccc;
    font-size: 16px;
}

.footer .social-icons {
    display: flex;
    gap: 12px;
}

.footer .social-icon {
    width: 33px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer .social-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
}

.footer-bottom .footer-links a {
    font-size: 16px;
    padding: 0 8px;
    border-right: 1px solid white;
}


.footer-bottom .footer-links li:first-child a {
    padding: 0 8px 0 0;
}

.footer-bottom .footer-links li:last-child a {
    border: none;
}

.footer-bottom .footer-links {
    gap: 0;
}

.footer .copyright {
    color: #ccc;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom,
    .footer-bottom .footer-links a {
        font-size: 14px;
    }
}

.footer-section a,
.header .nav a {
    display: inline-block;
    position: relative;
}

.footer-section a::after,
.header .nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: transform 0.25s ease-out;
}

.footer-section .contact-info a.social-icon::after {
    display: none;
}

.footer-section a:hover::after,
.header .nav a:hover::after {
    transform: scaleX(1);
}

.footer-section a::after,
.header .nav a::after {
    transform-origin: bottom center;
}

.sort-select::-ms-expand {
    display: none;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;

}

.sort-controls::after {
    position: relative;
}

.sort-controls::after {
    content: "";
    position: absolute;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    right: 10px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    width: 7px;
    height: 7px;
}

@media (max-width: 992px) {
    .studio-section .studio-container {
        flex-direction: column;
        gap: 32px;
    }

    .studio-content {
        max-width: none;
    }

    .contact-section .contact-container {
        flex-direction: column;
    }

    .contact-section .content,
    .contact-section .form-container {
        width: 100%;
        max-width: none;
    }
}

/* our work style  */
.our-work .video-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    max-height: 336px;
}

.ourWork-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.ourWork-header {
    color: rgb(255, 255, 255);
    font-size: clamp(32px, 7vw, 72px);
    font-family: CeraGR;
    font-weight: 700;
    text-transform: uppercase;
    line-height: clamp(32px, 7vw, 72px);
    letter-spacing: 14.40px;
    word-wrap: break-word;
    padding: 0 64px;
}

.animateText span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: riseUp 0.6s forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

.ourWork-swiper {
    overflow: hidden;
    width: 100%;
}

.ourWork-swiper .swiper-slide a {
    width: fit-content;
    height: fit-content;
}

.ourWork-swiper .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ourWork-swiper .swiper-slide {
    max-height: 535px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.library-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.header-library {
    color: white;
    font-size: 48px;
    font-family: CeraGR;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 48px;
    letter-spacing: 7.20px;
    word-wrap: break-word
}

.library-ourWork .filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.library-ourWork .filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.library-ourWork .sort-controls {
    position: relative;
}

.library-ourWork .filter-btn:hover,
.library-ourWork .filter-btn.active {
    background: #fff;
    color: #000;
}

.library-ourWork .filter-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.library-ourWork .sort-select {
    background: transparent;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 150px;
    border-radius: 30px;

}

.content-section .image-content img {
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.content-section .image-content {
    height: 100%;
}

/* end our work  */




/* films details */
.films-details,
.film-container {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 6vw, 64px);
}

.films-details .video-background {
    height: 60vh;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.film-tab-sec {
    display: flex;
    justify-content: space-between;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 16px;
}

.film-tabs {
    display: flex;
    gap: clamp(8px, 1vw, 16px);
    flex-wrap: wrap;
    row-gap: 5px;
}

.film-tab {
    background: transparent;
    color: #fff;
    outline: 1px white solid;
    outline-offset: -1px;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: lowercase;
    transition: all 0.3s ease;
    min-width: 100px;
    text-transform: capitalize;
    text-align: center;
    height: fit-content;
    margin: auto 0;
}

.film-tab.active {
    background: white;
    color: black;
    font-size: 18px;
    padding-right: 40px;
    position: relative;
    font-weight: 500;
}

.film-tab.active::after {
    content: "‣";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: 2px solid black;
    border-radius: 50%;
    height: 21px;
    width: 22px;
    font-weight: bold;
    line-height: 21px;
    font-size: 28px;
}

.content-film {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-film {
    color: rgb(255, 255, 255);
    font-size: clamp(32px, 6vw, 48px);
    font-family: CeraGR;
    font-weight: 500;
    text-transform: uppercase;
    line-height: clamp(32px, 6vw, 48px);
    letter-spacing: 7.20px;
    word-wrap: break-word;
    max-width: 900px;
}

.praph-film {
    color: white;
    font-size: clamp(16px, 2vw, 24px);
    font-family: CeraGR;
    font-weight: 400;
    word-wrap: break-word;
}

.header-partner,
.header-BehTheScenes {
    color: #535353;
    font-size: clamp(32px, 6vw, 48px);
    font-family: CeraGR;
    font-weight: 500;
    text-transform: uppercase;
    line-height: clamp(32px, 6vw, 48px);
    letter-spacing: 7.20px;
    word-wrap: break-word;
    margin-bottom: clamp(32px, 6vw, 64px);
}

.logo-partners {
    display: flex;
    gap: clamp(32px, 6vw, 64px);
    flex-wrap: wrap;
    row-gap: 10px;
}

.partner-logo {
    height: clamp(30px, 5vw, 55px);
    width: auto;
}

.team-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-flex .team-member {
    min-width: calc(16.67% - 30px);
}

@media (max-width: 768px) {
    .team-flex {
        justify-content: space-around;
    }
}

/* end films detail */


/* 404 you section */

.error-404 {
    display: flex;
    align-items: center;
    padding-top: 75px;
}

.error-404 .container {
    text-align: center;
    width: 100%;
    gap: 20px;
}

.error-404 .message-404 {
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 6.4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.error-404 .main-heading {
    color: #FFF;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.error-404 .back-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-404 .back-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.img-404 img {
    width: clamp(300px, 50vw, 520px);
    max-width: 90%;
}

/* studio */
.header-studio {
    color: white;
    font-size: clamp(32px, 7vw, 72px);
    font-family: CeraGR;
    font-weight: 400;
    text-transform: uppercase;
    line-height: clamp(32px, 7vw, 72px);
    letter-spacing: 14.40px;
    word-wrap: break-word;
    margin-bottom: clamp(16px, 3vw, 32px);
}

.ourWork-swiper .swiper-slide {
    position: relative;
}

.ourWork-swiper .swiper-slide::before,
.ourWork-swiper .swiper-slide::after,
.ourWork-swiper .swiper-slide .card-movie::before,
.ourWork-swiper .swiper-slide .card-movie::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 12;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.ourWork-swiper .swiper-slide::before {
    top: 0;
    left: 0;
    transform: translate(5px, 5px) rotate(0);
    border-top: 2px solid white;
    border-left: 2px solid white;
}

.ourWork-swiper .swiper-slide::after {
    top: 0;
    right: 0;
    transform: translate(-5px, 5px) rotate(0);
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.ourWork-swiper .swiper-slide .card-movie::before {
    bottom: 0;
    left: 0;
    transform: translate(5px, -5px) rotate(0);
    border-bottom: 2px solid white;
    border-left: 2px solid white;
}

.ourWork-swiper .swiper-slide .card-movie::after {
    bottom: 0;
    right: 0;
    transform: translate(-5px, -5px) rotate(0);
    border-bottom: 2px solid white;
    border-right: 2px solid white;
}

.ourWork-swiper .swiper-slide:hover::before {
    top: 7px;
    left: 7px;
    opacity: 1;
}

.ourWork-swiper .swiper-slide:hover::after {
    top: 7px;
    right: 7px;
    opacity: 1;
}

.ourWork-swiper .swiper-slide:hover .card-movie::before {
    bottom: 7px;
    left: 7px;
    opacity: 1;
}

.ourWork-swiper .swiper-slide:hover .card-movie::after {
    bottom: 7px;
    right: 7px;
    opacity: 1;
}

.card-movie:hover {
    transition: 0.5s ease-in-out;
}

.card-movie:hover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

.card-movie .movie-animate {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.card-movie:hover {
    padding: 15px;
}

/* terms & policy  */
.header-page {
    color: white;
    font-size: clamp(32px, 4vw, 48px);
    font-family: CeraGR;
    font-weight: 600;
    text-transform: uppercase;
    line-height: clamp(32px, 4vw, 48px);
    letter-spacing: 7.20px;
    word-wrap: break-word;
    margin-bottom: 32px;
    margin-top: 60px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: white;
    font-size: clamp(24px, 3vw, 32px);
    font-family: CeraGR, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    word-wrap: break-word;
    margin-top: 64px;
}

.page-content p,
.page-content span,
.page-content ul,
.page-content li {
    color: white;
    font-size: clamp(16px, 2vw, 24px);
    font-family: CeraGR, sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.page-content p,
.page-content span,
.page-content ul {
    margin-top: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.video-iframe {
    border: none;
    position: absolute;
    aspect-ratio: 16 / 9;
}


/* search style */
.site-main {
    margin-top: 80px;
}

.header-search {
    color: rgba(255, 255, 255, 0.40);
    font-size: clamp(32px, 4vw, 48px);
    font-family: CeraGR;
    font-weight: 500;
    line-height: clamp(32px, 4vw, 48px);
    letter-spacing: 7.20px;
    word-wrap: break-word;
}

.header-search span {
    color: rgb(255, 255, 255);
    font-size: clamp(32px, 4vw, 48px);
    font-family: CeraGR;
    font-weight: 500;
    line-height: clamp(32px, 4vw, 48px);
    letter-spacing: 7.20px;
    word-wrap: break-word;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 5vw, 32px);
}

.search-container .sort-controls {
    position: relative;
}

.search-container .sort-select {
    background: transparent;
    border: 1px solid #ffffff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 150px;
    border-radius: 30px;
}

.search-container .filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.serch-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.search-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.3% - 30px);
}

.search-card .card-title {
    color: white;
    font-size: clamp(16px, 2vw, 24px);
    font-family: CeraGR;
    font-weight: 400;
    text-transform: uppercase;
    word-wrap: break-word;
    margin-bottom: 16px;
}

.search-card .card-image {
    height: 222px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-card .card-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.search-container .filter-controls {
    margin: 0;
}


.site-search {
    display: flex;
    align-items: center;
    max-width: 500px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px;
    backdrop-filter: blur(6px);
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.site-search input[type="search"] {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    padding: 12px 18px;
    outline: none;
}

.site-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.site-search button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out,
        color 0.4s ease-in-out,
        transform 0.25s ease-in-out,
        box-shadow 0.25s ease-in-out;
}

.site-search button:hover,
.site-search button:focus {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.search-results .discover-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

 .search-results .discover-grid:has(.discover-card:nth-child(2)) {
    justify-content: start;
}

 .search-results .discover-grid:has(.discover-card:only-child) {
    justify-content: center;
}

@media (max-width: 992px) {
    .search-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .search-card {
        flex: 1 1 100%;
    }
}