/* Fancybox Custom Styles */
.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: 10px;
    color: #000;
    right: 10px;
}
.fancybox__content {
    padding: 0;
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
	padding:40px;
}

.brochure-modal {
    background: white;
}

/* Carousel Section */
.carousel-section {
    position: relative;
    overflow: hidden;
	padding: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

    .carousel-slide.active {
        display: block;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-section p {
    margin: 0;
    border-radius: 15px;
	overflow:hidden;
	height: 300px;
}

    .carousel-section p img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: background 0.3s;
    z-index: 10;
}

    .carousel-nav:hover {
        background: white;
    }

    .carousel-nav.prev {
        left: 20px;
    }

    .carousel-nav.next {
        right: 20px;
    }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

    .carousel-dot.active {
        background: #0d7c66;
        width: 24px;
        border-radius: 4px;
    }

/* Form Section */
.form-section {
    padding: 20px;
}

.form-title {
    color: #0d7c66;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-size: 14px;
        font-weight: 500;
    }

        .form-group label .required {
            color: #e74c3c;
        }

    .form-group input {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        transition: border-color 0.3s;
    }

        .form-group input:focus {
            outline: none;
            border-color: #0d7c66;
        }

        .form-group input::placeholder {
            color: #999;
        }

.submit-button {
    width: 100%;
    padding: 14px;
    background: #0d7c66;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

    .submit-button:hover {
        background: #0a6352;
    }

    .submit-button svg {
        width: 20px;
        height: 20px;
    }

/* Responsive */
@media (max-width: 768px) {
    .carousel-section {
        height: 300px;
    }

    .form-section {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 20px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }
		.fancybox__content {
			    padding: 10px;
			
		}
}
