* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    color: #333;
}

header {
    background: linear-gradient(to right, #200c35, #bd4785);
    color: #fff;
    padding: 1rem;
    text-align: center
}

nav {
    background: linear-gradient(to right, #bd4785, #200c35);
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: .5rem;
    font-weight: 900
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.carousel-container {
    overflow: hidden;
    position: relative;
    max-width: 100%
}

.carousel-slide {
    display: flex;
    width: 300%;
    animation: scroll 25s linear infinite
}

.carousel-slide img {
    width: 100vw;
    object-fit: cover
}

@keyframes scroll {

    0%,
    10% {
        transform: translateX(0)
    }

    30%,
    40% {
        transform: translateX(-100vw)
    }

    60%,
    70% {
        transform: translateX(-200vw)
    }

    90%,
    100% {
        transform: translateX(0)
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    background: rgb(0 0 0 / .4);
    padding: 2rem;
    border-radius: 10px
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: .5rem
}

.gallery {
    padding: 2rem;
    text-align: center
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem
}

.tabs button {
    padding: .5rem 1rem;
    border: none;
    background: #57204e;
    color: #fff;
    border-radius: 20px;
    cursor: pointer
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in
}

.tab-content.active {
    display: block
}

.gallery img {
    max-width: 100%;
    border-radius: 10px
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.video-section {
    background: #f3e5f5;
    padding: 2rem;
    text-align: center
}

.video-section video {
    width: 100%;
    border-radius: 20px
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem
}

.flip-card {
    width: 300px;
    height: 200px;
    perspective: 1000px
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d
}

.flip-card:hover.flip-card-inner {
    transform: rotateY(180deg)
}

.flip-card-front {
    position: absolute;
    width: auto;
    height: auto;
    backface-visibility: hidden;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    padding: .7rem 1.5rem;
    font-weight: 700;
    background: #57204e;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease
}

.flip-card-front:hover {
    background: #57204e
}

.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 1rem
}

.flip-card-front {
    background: rgb(143 143 143 / .315)
}

.flip-card-back {
    background-color: #ce93d8;
    transform: rotateY(180deg);
    color: #000
}

footer {
    background: linear-gradient(to right, #bd4785, #200c35);
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem
}

@media(max-width:768px) {
    .slider {
        flex-direction: column;
        height: auto
    }

    .cards {
        flex-direction: column;
        align-items: center
    }
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    gap: 2rem
}

.split-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgb(0 0 0 / .1);
    transition: transform 0.3s ease
}

.split-image img:hover {
    transform: scale(1.05)
}

.split-text {
    flex: 1;
    max-width: 500px;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1s ease forwards;
    opacity: 0
}

.split-text h2 {
    font-size: 2rem;
    color: #6a1b9a;
    margin-bottom: 1rem
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #57204e;
    margin-bottom: 1.5rem
}

.split-text.btn {
    padding: .75rem 1.5rem;
    background: #57204e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease
}

.split-text.btn:hover {
    background: #b5005e
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@media(max-width:768px) {
    .split-section {
        flex-direction: column;
        text-align: center
    }

    .split-text {
        animation: none;
        opacity: 1
    }
}

.config-section {
    padding: 1rem 1rem;
    background-color: #fff;
    text-align: center;
    font-family: 'Playfair Display', serif
}

.section-title {
    font-size: 2.5rem;
    color: #5c0e83;
    margin-bottom: 1rem
}

.config-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem
}

.config-card {
    background: linear-gradient(to right, #bd4785, #200c35);
    color: #fff;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgb(0 0 0 / .1);
    padding: 2rem 1.5rem;
    width: 240px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.config-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgb(0 0 0 / .15)
}

.config-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff
}

.price-btn {
    display: inline-block;
    background: #b5005e;
    color: #fff;
    text-decoration: none;
    padding: .7rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: .95rem;
    margin-top: 0rem;
    transition: background 0.3s ease
}

.price-btn:hover {
    background: #b5005e
}

@media(max-width:768px) {
    .config-cards {
        flex-direction: column;
        align-items: center
    }

    .config-card {
        width: 90%
    }
}

.nearby-locations {
    background: #fff;
    padding: 4rem 1rem;
    font-family: 'Playfair Display', serif
}

.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center
}

.location-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgb(0 0 0 / .1)
}

.location-info {
    max-width: 500px
}

.location-info h2 {
    font-size: 2rem;
    color: #5c0e83;
    margin-bottom: .5rem
}

.location-info.subtitle {
    color: #57204e;
    font-weight: 600;
    margin-bottom: 1.5rem
}

.info-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start
}

.icon {
    color: #57204e;
    font-size: 1.8rem;
    min-width: 30px
}

.info-block h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #222
}

.info-block p {
    margin: .3rem 0 0;
    font-size: .95rem;
    color: #444
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .1);
    transition: transform 0.3s ease
}

.image-grid img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease
}

@media(max-width:768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.overview-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 10%;
    background-size: cover;
    position: relative;
    gap: 30px
}

.overview-content {
    flex: 1 1 55%;
    color: #1d1c1c
}

.overview-content h2 {
    font-size: 36px;
    color: #7c2e9c
}

.overview-content h4 {
    color: #57204e;
    margin-top: 10px
}

.form-card {
    flex: 1 1 40%;
    background: #ffffff;
    box-shadow: 0 10px 30px #0c0404;
    border-radius: 15px;
    padding: 30px 25px;
    transition: transform 0.3s ease
}

.form-card:hover {
    transform: translateY(-5px)
}

.form-card h3 {
    color: #d00050;
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.form-card input {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px
}

.form-card button {
    background-color: #57204e;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s
}

.form-card button:hover {
    background-color: #870073
}

@media(max-width:768px) {
    .overview-section {
        flex-direction: column;
        padding: 40px 5%
    }

    .overview-content,
    .form-card {
        flex: 1 1 100%
    }
}

.hallmarks-3d {
    padding: 60px 20px;
    background: linear-gradient(to right, #bd4785, #200c35);
    color: #fff;
    text-align: center
}

.hallmarks-3d.title {
    font-size: 32px;
    margin-bottom: 10px
}

.hallmarks-3d.subtitle {
    font-size: 16px;
    color: #ffbad8;
    margin-bottom: 40px
}

.hallmarks-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center
}

.hallmark-card {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    height: auto;
    width: 100%;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    transform: perspective(1000px)translateZ(0);
    cursor: pointer
}

.hallmark-card:hover {
    transform: perspective(1000px)translateZ(15px)scale(1.05)rotateX(3deg)rotateY(3deg);
    box-shadow: 0 30px 60px rgb(0 0 0 / .5)
}

.hallmark-card i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff
}

.hallmark-card h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    color: #fff
}

.hallmark-card p {
    font-size: 14px;
    color: #ffdcea
}

#customModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    padding: 10px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / .6)
}

.modal-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 60px auto;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgb(0 0 0 / .2);
    animation: fadeInUp 0.5s ease
}

.modal-header {
    background: url(assets/img/images/bg1.webp)center/cover no-repeat;
    background-color: #880e4f;
    color: #fff;
    padding: 30px 20px;
    position: relative;
    text-align: center
}

.modal-header h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer
}

.features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center
}

.feature-box {
    background-color: rgb(255 255 255 / .2);
    border: 2px solid #fff0;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    backdrop-filter: blur(5px)
}

.feature-box:hover {
    border-color: #ffeb3b;
    background-color: rgb(255 255 255 / .3);
    transform: scale(1.02);
    box-shadow: 0 0 12px #ffd60088
}

.feature-box i {
    font-size: 24px
}

.modal-form {
    padding: 30px 20px;
    background-color: #fff
}

.modal-form h3 {
    font-size: 20px;
    color: #880e4f;
    margin-bottom: 20px
}

.modal-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px
}

.modal-form label {
    font-size: 13px;
    color: #555;
    display: block
}

.modal-form.consent {
    margin-bottom: 15px
}

.modal-form button {
    background-color: #57204e;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s
}

.modal-form button:hover {
    background-color: #ad1457
}

.modal-form a {
    color: #880e4f;
    text-decoration: none
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(min-width:768px) {
    .modal-container {
        flex-direction: row
    }

    .modal-header {
        width: 45%;
        text-align: left;
        padding: 50px 30px
    }

    .modal-form {
        width: 55%;
        padding: 50px 30px
    }
}

@media(max-width:767px) {
    .modal-header h2 {
        font-size: 22px
    }

    .feature-box {
        font-size: 14px
    }

    .feature-box i {
        font-size: 20px
    }

    .modal-form input {
        font-size: 13px
    }

    .modal-form button {
        font-size: 15px;
        width: 100%
    }
}

.swiper {
    width: 100%;
    padding: 20px 0
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center
}

.swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1)
}

@media(max-width:768px) {
    .swiper-slide img {
        height: 180px
    }
}

@media(max-width:480px) {
    .swiper-slide img {
        height: 160px
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    padding: 6px;
    font-size: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgb(0 0 0 / .2);
    width: 22px;
    height: 22px
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: purple;
    transition: 0.3s ease
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1
}

.swiper-pagination-bullet-active {
    background-color: purple
}