/* Header */

.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    min-height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem 9%;
    background: var(--primary-color);
    z-index: 100;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.navbar a{
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: .5s all ease-in-out;
    padding-bottom: 5px;
}

.navbar li a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
    transition: width 0.5s ease-in-out;
}

.navbar li a:hover::after{
    width: 60%;
}

/* Home Section */
.Home {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8rem 9% 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/main (2).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home__content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.tagline {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home__content h1 {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.2rem;
}

.home__content h1 span {
    color: var(--accent-color);
    font-weight: 700;
}

.home__content p {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

.home__links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home__content h1 {
        font-size: 4rem;
    }
    
    .home__content p {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {

    .Home{
        padding: 10rem 9% 4rem;
    }

    .home__content h1 {
        font-size: 3rem;
        line-height: 1.5;
    }
    
    .home__content p {
        font-size: 1.4rem;
        line-height: 2;
    }

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

/* About Section */
.about {
    padding: 8rem 9% 4rem;
    background: var(--primary-color);
}

.about__flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 6rem;
}

.about__card {
    width: 100%;
    height: 100%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about__card:hover {
    transform: translateY(-10px);
}

.section__header {
    font-size: 4rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section__header span {
    color: var(--accent-color);
}

.section__header::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.about__left {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about__left:hover img {
    transform: scale(1.05);
}

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

.about__content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.about__content h4 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.about__content h4 span {
    color: var(--accent-color);
}

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

.about__content p:last-child {
    margin-bottom: 0;
}

.about__links{
    text-align: center;
}


/* Responsive Design */
@media (max-width: 992px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about__left {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about__flex {
        flex-direction: column;
        gap: 3rem;
    }
    
    .section__header {
        font-size: 3rem;
    }
    
    .section__header::after {
        width: 40%;
        left: 30%;
        bottom: -8px;
    }
    
    .about__content h4 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section__header {
        font-size: 2.5rem;
    }
    
    .section__header::after {
        width: 30%;
        left: 35%;
        bottom: -6px;
    }

    .about__content h1 {
        font-size: 3rem;
        line-height: 1.5;
    }
    
    .home__content p {
        font-size: 1.4rem;
        line-height: 2;
    }

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

.about__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 0 2rem;
}

.about__header::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: -1;
}

.about__header::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.about__header .section__header {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about__header .section__header::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.about__header .section__subheader {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#menu-btn {
    display: none;
    font-size: 2.4rem;
    color: var(--black);
    cursor: pointer;
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    z-index: 100;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    #menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 8rem 3rem;
        flex-direction: column;
        align-items: flex-start;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar li {
        width: 100%;
        margin: 1rem 0;
    }

    .navbar li a {
        display: block;
        font-size: 1.5rem;
    }

    .primary__btn {
        margin-top: 2rem;
        width: auto;
        min-width: 200px;
        text-align: center;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* Services Section */
.services {
    padding: 8rem 9% 4rem;
    background: var(--primary-color);
}

.service__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 0 2rem;
}

.service__header::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: -1;
}

.service__header::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.service__swiper {
    padding: 2rem 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 8rem;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service__card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service__card:hover::before {
    opacity: 0.05;
}

.service__icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service__card:hover .service__icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
}

.service__icon i {
    font-size: 3.5rem;
    color: white;
    transition: all 0.4s ease;
}

.service__card:hover .service__icon i {
    transform: scale(1.1);
}

.service__card h3 {
    font-size: 2.4rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service__card:hover h3 {
    transform: translateX(10px);
    color: var(--accent-color);
}

.service__card p {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service__card:hover p {
    transform: translateX(10px);
}

.service__card .read__more {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service__card .read__more i {
    font-size: 1.6rem;
    transition: transform 0.4s ease;
}

.service__card:hover .read__more {
    transform: translateX(10px);
}

.service__card:hover .read__more i {
    transform: translateX(5px);
}

.service__card .book__now {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background: transparent;
}

.service__card .book__now i {
    font-size: 1.6rem;
    transition: transform 0.4s ease;
}

.service__card:hover .book__now {
    transform: translateX(10px);
    background: var(--accent-color);
    color: white;
}

.service__card:hover .book__now i {
    transform: translateX(5px);
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .service__card {
        padding: 3rem 2rem;
    }

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

    .service__card:hover h3,
    .service__card:hover p,
    .service__card:hover .read__more {
        transform: translateX(5px);
    }

    .service__card .book__now {
        padding: 0.6rem 1.2rem;
        font-size: 1.3rem;
    }
    
    .service__card:hover .book__now {
        transform: translateX(5px);
    }

    .service__icon {
        width: 60px;
        height: 60px;
    }

    .service__icon i {
        font-size: 2.8rem;
    }

    .service__card h3 {
        font-size: 2rem;
    }

    .service__card p {
        font-size: 1.4rem;
    }

    .service__swiper {
        padding-bottom: 6rem;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .swiper-pagination-bullet-active {
        width: 24px;
    }
}

.service__links {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.service__links::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 768px) {
    .service__links {
        margin-top: 4rem;
    }
    
    .service__links .primary__btn {
        padding: 1.2rem 3rem;
        font-size: 1.4rem;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 9% 4rem;
    background: var(--primary-color);
    width: 100%;
    overflow: hidden;
}

.contact__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 0 2rem;
}

.contact__header::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: -1;
}

.contact__header::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact__container__left {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact__container__right {
    width: 100%;
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact__container__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
}

.contact__container__left h4 {
    font-size: 2.4rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.contact__container__left p {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.8;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form__group {
    position: relative;
    margin-bottom: 1rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 1.2rem 2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1.6rem;
    color: var(--black);
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 99, 71, 0.1);
    background: #f8f9fa;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: #999;
}

.form__group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.contact__form .primary__btn {
    margin-top: 1rem;
    align-self: flex-start;
    min-width: 200px;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact__form .primary__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.contact__form .primary__btn:hover::before {
    left: 100%;
}

.contact__form .primary__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 99, 71, 0.2);
}

.contact__information {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact__information h4 {
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact__information > p {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact__item i {
    font-size: 2.4rem;
    color: var(--accent-color);
    background: rgba(255, 99, 71, 0.1);
    padding: 1rem;
    border-radius: 50%;
    min-width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__item h5 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact__item p {
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.6;
}

.social__media {
    margin-top: 1rem;
}

.social__media h5 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.social__links {
    display: flex;
    gap: 1.5rem;
}

.social__link {
    width: 4rem;
    height: 4rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social__link:hover {
    transform: translateY(-5px);
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

@media (max-width: 1200px) {
    .contact__container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact__container__left,
    .contact__container__right {
        padding: 3rem;
    }

    .contact__information h4 {
        font-size: 2.2rem;
    }

    .contact__item h5 {
        font-size: 1.8rem;
    }

    .contact__item p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact__container {
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact__container__left,
    .contact__container__right {
        padding: 2.5rem;
    }

    .contact__information h4 {
        font-size: 2rem;
    }

    .contact__item h5 {
        font-size: 1.7rem;
    }

    .contact__item p {
        font-size: 1.5rem;
    }

    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1.4rem 1.8rem;
        font-size: 1.5rem;
    }

    .booking__section {
        padding: 1.5rem;
    }

    .service__options {
        padding: 1.2rem;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact__container {
        gap: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .contact__container__left,
    .contact__container__right {
        padding: 2rem;
    }

    .contact__information h4 {
        font-size: 1.8rem;
    }

    .contact__item h5 {
        font-size: 1.6rem;
    }

    .contact__item p {
        font-size: 1.4rem;
    }

    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1.3rem 1.6rem;
        font-size: 1.4rem;
    }

    .booking__section {
        padding: 1.2rem;
    }

    .service__options {
        padding: 1rem;
        gap: 0.6rem;
    }

    .contact__form .primary__btn {
        width: 100%;
        text-align: center;
        padding: 1.4rem 2rem;
        font-size: 1.5rem;
    }

    .booking__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Extra Small Devices */
@media (max-width: 344px) {
    .contact__container {
        gap: 2rem;
        padding: 0 0.3rem;
    }
    
    .contact__container__left,
    .contact__container__right {
        padding: 1.5rem;
    }

    .contact__information h4 {
        font-size: 1.6rem;
    }

    .contact__item {
        gap: 1rem;
    }

    .contact__item i {
        font-size: 2rem;
        min-width: 3.5rem;
        height: 3.5rem;
        padding: 0.8rem;
    }

    .contact__item h5 {
        font-size: 1.4rem;
    }

    .contact__item p {
        font-size: 1.3rem;
    }

    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1.2rem 1.4rem;
        font-size: 1.3rem;
    }

    .booking__section {
        padding: 1rem;
    }

    .booking__section h4 {
        font-size: 1.6rem;
    }

    .service__options {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .service__option {
        padding: 0.8rem;
    }

    .service__option label {
        font-size: 1.3rem;
    }

    .contact__form .primary__btn {
        padding: 1.2rem 1.8rem;
        font-size: 1.4rem;
    }

    .privacy__notice {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
    }

    .social__links {
        gap: 1rem;
    }

    .social__link {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
    }
}

.service__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #eee;
}

.service__option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-color);
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service__option:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.service__option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
}

.service__option label {
    font-size: 1.4rem;
    color: var(--text-color);
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    word-break: break-word;
}

.service__option input[type="checkbox"]:checked + label {
    color: var(--accent-color);
    font-weight: 500;
}

.service__option input[type="checkbox"]:checked ~ .service__option {
    border-color: var(--accent-color);
    background: white;
}

@media (max-width: 768px) {
    .service__options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .service__option {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .service__option input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .service__option label {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service__options {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .service__option {
        padding: 0.8rem;
        gap: 0.8rem;
    }
}

@media (max-width: 344px) {
    .service__options {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .service__option {
        padding: 0.7rem;
        gap: 0.7rem;
    }
    
    .service__option input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }
    
    .service__option label {
        font-size: 1.2rem;
    }
}

.booking__section {
    margin: 1.5rem 0;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.booking__section:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.booking__section h4 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.booking__section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking__section .form__group {
    margin: 0;
}

.booking__section label {
    display: block;
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.booking__section input[type="date"] {
    width: 100%;
    padding: 1.2rem 2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1.4rem;
    color: var(--black);
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking__section select {
    width: 100%;
    padding: 1.2rem 2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1.4rem;
    color: var(--black);
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2rem center;
    background-size: 1.5rem;
    padding-right: 4rem;
}

.privacy__notice {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .booking__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking__section {
        padding: 1.5rem;
    }
    
    .service__options {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .service__option {
        padding: 1rem;
    }
    
    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1.2rem 1.8rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .booking__section {
        padding: 1.2rem;
    }
    
    .service__options {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .form__group input,
    .form__group select,
    .form__group textarea {
        padding: 1rem 1.5rem;
        font-size: 1.3rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 9% 4rem;
    background: var(--primary-color);
}

.portfolio__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 0 2rem;
}

.portfolio__filter {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter__btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    background: transparent;
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter__btn:hover,
.filter__btn.active {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.2);
}

.portfolio__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
    width: 100%;
}

.video__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.poster__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.portfolio__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    display: block;
}

.portfolio__item.poster {
    width: 100%;
    height: auto;
}

.portfolio__item.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .portfolio__grid {
        padding: 0 1.5rem;
    }

    .video__row,
    .poster__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .portfolio__item.video {
        max-width: 250px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .portfolio__grid {
        padding: 0 1rem;
        gap: 2rem;
    }

    .video__row,
    .poster__row {
        gap: 1.2rem;
    }

    .portfolio__item.video {
        max-width: 200px;
        height: 400px;
    }

    .portfolio__overlay h3 {
        font-size: 1.6rem;
    }

    .portfolio__overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .portfolio__grid {
        padding: 0 0.8rem;
        gap: 1.5rem;
    }

    .video__row,
    .poster__row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio__item.video {
        max-width: 180px;
        height: 320px;
        margin: 0 auto;
    }

    .portfolio__item.poster {
        max-width: 100%;
        margin: 0 auto;
    }

    .portfolio__overlay h3 {
        font-size: 1.4rem;
    }

    .portfolio__overlay p {
        font-size: 1.1rem;
    }

    .portfolio__filter {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter__btn {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .portfolio__grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .video__row,
    .poster__row {
        gap: 0.8rem;
    }

    .portfolio__item.video {
        max-width: 160px;
        height: 280px;
    }

    .portfolio__overlay h3 {
        font-size: 1.3rem;
    }

    .portfolio__overlay p {
        font-size: 1rem;
    }
}

.portfolio__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio__content {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio__content video,
.portfolio__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none; /* Prevent video interaction */
}

.portfolio__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
    pointer-events: none; /* Allow clicks to pass through */
    z-index: 1;
}

.portfolio__overlay h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__overlay p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__item:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__item:hover .portfolio__overlay h3,
.portfolio__item:hover .portfolio__overlay p {
    transform: translateY(0);
}

.portfolio__item:hover .portfolio__content video,
.portfolio__item:hover .portfolio__content img {
    transform: scale(1.1);
}

/* Lightbox Modal for Posters */
.lightbox__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.lightbox__modal.active {
    display: flex;
}

.lightbox__modal .modal__content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox__modal.active .modal__content {
    transform: scale(1);
}

.lightbox__modal img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal__close:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 6rem 5% 3rem;
    }

    .portfolio__filter {
        gap: 1rem;
    }

    .filter__btn {
        padding: 0.6rem 1.5rem;
        font-size: 1.3rem;
    }

    .portfolio__overlay h3 {
        font-size: 1.8rem;
    }

    .portfolio__overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio__overlay h3 {
        font-size: 1.6rem;
    }

    .portfolio__overlay p {
        font-size: 1.1rem;
    }
}

/* Footer Section */
.footer {
    background: #000;
    color: white;
    padding: 6rem 9% 2rem;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer__card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__logo h4 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 1rem;
}

.footer__logo h4 span {
    color: var(--accent-color);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__contact .contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer__contact .contact__item i {
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(255, 99, 71, 0.1);
    padding: 1rem;
    border-radius: 50%;
    min-width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__contact .contact__item p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer__social .social__link {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.footer__social .social__link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer__card h4 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer__card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__links li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.footer__links li a i {
    font-size: 1.6rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.footer__links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer__links li a:hover i {
    transform: translateX(3px);
}

.footer__bottom {
    padding-top: 2rem;
    padding-bottom: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.developer__link {
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer__link:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer {
        padding: 5rem 5% 2rem;
    }

    .footer__grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer__card {
        text-align: left;
    }

    .footer__contact .contact__item {
        justify-content: flex-start;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .footer__card h4::after {
        left: 0;
        transform: none;
    }

    .footer__links li a {
        justify-content: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        padding-bottom: 5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 4rem 4% 2rem;
    }

    .footer__logo h4 {
        font-size: 2.2rem;
    }

    .footer__contact .contact__item i {
        font-size: 1.8rem;
        min-width: 3.5rem;
        height: 3.5rem;
    }

    .footer__contact .contact__item p {
        font-size: 1.3rem;
    }

    .footer__social .social__link {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
    }

    .footer__card h4 {
        font-size: 1.8rem;
    }

    .footer__links li a {
        font-size: 1.3rem;
    }

    .footer__bottom p {
        font-size: 1.3rem;
    }
}

.portfolio__item.video {
    aspect-ratio: 9/16;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.portfolio__item.video .portfolio__content {
    height: 100%;
    width: 100%;
    position: relative;
}

.portfolio__item.video .portfolio__video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 992px) {
    .video__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .portfolio__item.video {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .video__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 0.8rem;
    }

    .portfolio__item.video {
        max-width: 240px;
    }
}

@media (max-width: 576px) {
    .video__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .portfolio__item.video {
        max-width: 280px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .video__row {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .portfolio__item.video {
        max-width: 240px;
    }
}

.video__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

.video__preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF6347, #FF8C00);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.video__preview:hover {
    transform: scale(1.02);
}

.video__preview i {
    font-size: 6rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video__preview:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.video__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    z-index: 2;
}

.video__overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video__overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive styles for video link */
@media (max-width: 992px) {
    .video__preview i {
        font-size: 5rem;
    }

    .video__overlay h3 {
        font-size: 1.6rem;
    }

    .video__overlay p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .video__preview i {
        font-size: 4.5rem;
    }

    .video__overlay {
        padding: 1.2rem;
    }

    .video__overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .video__overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .video__preview i {
        font-size: 4rem;
    }

    .video__overlay {
        padding: 1rem;
    }

    .video__overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .video__overlay p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .video__preview i {
        font-size: 3.5rem;
    }

    .video__overlay {
        padding: 0.8rem;
    }

    .video__overlay h3 {
        font-size: 1.2rem;
    }

    .video__overlay p {
        font-size: 0.9rem;
    }
}

