@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    font-family: "Rubik", sans-serif;
}

:root{
    --primary-color: #edb25a;
    --secondary-color: #ccbda7;
    --overlay-color: rgba(157, 127, 36, 0.3);
    --accent-color: #f4f6ee;
    --white-color: #ffffff;
    --dark-color: #1c1c1c; 
    --golden-color: #c8a951; 
    --bg-primary:#f7f3ee;
}

.section-title {
    font-weight: 800;
    font-size: 36px;
}

.section-description{
    color: #555;
    font-size: 18px;
    margin-top: 10px;
}

.fa-icon{
    color: var(--primary-color);
}

.btn-spa {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
}

.btn-spa:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-spa-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-spa-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-spa-gold {
    background: linear-gradient(135deg, #c8a951, #b8973f);
    color: #000;
    border: none;
}

.btn-spa-gold:hover {
    filter: brightness(1.05);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}
.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background-color: var(--primary-color) !important;
    color: #fff;
}



/* ==============navbar ======================== */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    border-radius: 12px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}


@media (max-width: 991px) {

    /* Prevent hero section push */
    .spa-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white-color);
        z-index: 9999;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
}

@media (max-width: 991px) {
    .spa-navbar .navbar-collapse {
        transition: all 0.3s ease;
    }
}

/* =======hero============ */

.hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;     /* 🔑 auto responsive by video */
    overflow: hidden;
}

/* Video */
.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* luxury full-width look */
    display: block;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15,26,24,0.55),
        rgba(15,26,24,0.85)
    );
}

/* Content */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px;
    text-align: center;
}

/* ===============welcome section ============== */
.welcome-section{
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
}

.spa-img-left{
    border-top-left-radius: 250px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.spa-img-top{
    border-top-left-radius: 20px;
    border-top-right-radius: 230px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.spa-img-bottom{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 230px;
}

/* ============health-section================== */
.health-section {
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}

/* Center image */
.health-center-img {
    max-width: 100%;
}

/* Feature row */
.health-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

/* Left side reverse */
.health-item.text-end {
    flex-direction: row-reverse;
    text-align: right;
}

/* Icon circle */
.health-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.health-icon img {
    width: 28px;
}

/* Text */
.health-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.health-text p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .health-item,
    .health-item.text-end {
        flex-direction: column;
        text-align: center;
    }

    .health-item {
        margin-bottom: 30px;
    }
}


/* ============spa-focus-section================== */

.spa-focus-section{
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}

.spa-focus-item{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

.spa-focus-overlay{
    position: absolute;
    width: 100%;
    height: inherit;
    left: 0;
    bottom: -63px;
    padding: 15px;
    background: var(--overlay-color);
    display: flex;
    align-items: end;
    color: var(--white-color);
    justify-content: center;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
}

.spa-focus-item:hover .spa-focus-overlay{
    bottom: 0;
    transition: all 0.3s ease;  
}

.spa-focus-img{
    border-radius: 10px;
    height: 190px;
    object-fit: cover;
    width: 100%;
}

.spa-focus-big-img{
    border-radius: 10px;
    width: 100%;
}

/* ============price-menu-section================== */
.price-menu-section{
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}


.price-card{
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    overflow: hidden;
    background-color: var(--white-color);
    height: 100%;
}


.price-img-box{
    overflow: hidden;
}


.price-img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.5s ease-in-out;
}

/* Hover effect (desktop only feel) */
.price-card:hover .price-img{
    transform: scale(1.1);
}
/* Tablets */
@media (max-width: 992px){
    .price-img{
        height: 260px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .price-menu-section{
        padding: 30px 10px;
    }

    .price-img{
        height: 220px;
    }

    /* Disable aggressive hover zoom on touch devices */
    .price-card:hover .price-img{
        transform: scale(1.03);
    }

    .card-body{
        text-align: center;
    }

    .card-body span{
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
}

/* ============membership================== */

.membership-section{
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}


/* Image fix */
.membership-image img{
    min-height: 100%;
    object-fit: cover;
}

/* Curve effect like screenshot */
.membership-content{
    position: relative;
}

.membership-content::after{
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background: #fff;
    border-radius: 0 60px 60px 0;
}

/* Responsive */
@media (max-width: 991px){
    .membership-content::after{
        display: none;
    }

    .membership-content{
        text-align: center;
    }
}


/*============== testemonial ============*/
/* Dark Background */
.testimonial-section {
    background: linear-gradient(135deg, #091215, #203a43, #162830);
    color: #fff;
}

/* Swiper */
.swiper {
    padding: 30px 0;
}

/* Glass Card */
.swiper-slide {
    width: 450px;
    height: 300px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
}

/* Card Content */
.swiper-card {
    padding: 20px;
    color: #fff;
}

/* Avatar */
.avtar-box {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.4);
}

.avtar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.avtarname {
    font-weight: 600;
    font-size: 1.1rem;
}

.avtar-degination {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Text */
.swiper-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 991px) {
    .swiper-slide {
        width: 350px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .swiper-slide {
        width: 85%;
        height: auto;
    }
}

/*==============end testomonial==============*/

/* ============why-choose-section================== */
.why-choose-section {
   background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}

.why-card {
    height: 100%;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
}

.why-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--dark-color);
}

/*==============end why-choose==============*/

/* =============faq-section================== */
/* FAQ Section Background */
.faq-section {
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}

/* Accordion Item (Glass Card) */
.luxury-accordion .accordion-item {
    background: var(--overlay-color);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(47, 111, 98, 0.25);
    margin-bottom: 16px;
    overflow: hidden;
}

/* Accordion Button */
.luxury-accordion .accordion-button {
    background: transparent;
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px;
    box-shadow: none;
}

/* Remove Bootstrap Arrow */
.luxury-accordion .accordion-button::after {
    display: none;
}

/* Active State */
.luxury-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

/* Body */
.luxury-accordion .accordion-body {
    background: rgba(255,255,255,0.6);
    color: var(--dark-color);
    padding: 18px 20px;
    border-top: 1px solid rgba(47, 111, 98, 0.2);
}

/* Golden Highlight on Active */
.luxury-accordion .accordion-button:not(.collapsed) i {
    color: var(--golden-color);
}

/* Mobile */
@media (max-width: 767px) {
    .luxury-accordion .accordion-button {
        font-size: 0.95rem;
    }
}
/*==============end faq-section==============*/

/*============== footer ============*/
/* Footer Background */
.spa-footer {
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    color: var(--dark-color);
    border-top: 1px solid rgba(47, 111, 98, 0.2);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 5px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Text */
.footer-text {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.8;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark-color);
    opacity: 0.75;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Bottom Bar */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(47, 111, 98, 0.2);
    font-size: 0.85rem;
}

/* Social Icons */
.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    border-radius: 50%;

    background: var(--overlay-color);
    color: var(--primary-color);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 767.98px) {

    /* Center all footer columns */
    .spa-footer .row > div {
        text-align: center;
    }

    /* Center logo */
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    /* Center lists */
    .footer-links {
        display: inline-block;
        text-align: center;
    }

    /* Center contact text & icons */
    .footer-text {
        text-align: center;
    }

    /* Center iframe map */
    .spa-footer iframe {
        margin: 10px auto 0;
        display: block;
        border-radius: 10px;
    }

    /* Bottom section center */
    .footer-bottom {
        text-align: center;
    }

    /* Social icons center */
    .footer-social {
        margin-top: 10px;
    }

    .footer-social a {
        margin: 0 6px;
    }
}

/*============== end footer ============*/

/* ========== blog-section ========== */

.blog-section {
    background: linear-gradient(
        135deg,
        var(--bg-primary),
        var(--accent-color)
    );
    padding: 40px 15px;
}

/* Blog Card */
.blog-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--accent-color);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(47, 111, 98, 0.25);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    transition: 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* Image */
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-content h5 {
    margin: 10px 0;
    font-weight: 600;
    color: var(--dark-color);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.75;
}

/* Read More */
.blog-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.blog-link:hover {
    color: var(--golden-color);
}

/* Responsive */
@media (max-width: 767.98px) {
    .blog-content {
        text-align: center;
    }
}
/*============== end blog-section ============*/

/* ================= breadcrumb ============ */
.breadcrumb-banner {
    position: relative;
    background: url('../img/breadcrumb-bg.png') center / cover no-repeat fixed;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 24, 0.7);
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.breadcrumb-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Breadcrumb Nav */
.breadcrumb-nav {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    opacity: 0.6;
}

.breadcrumb-nav .current {
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-banner {
        height: 220px;
    }

    .breadcrumb-content h1 {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 14px;
    }
}
/*============== end breadcrumb ============*/

/* =============== counter section ============ */
.spa-counter-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-color));
    padding: 60px 0;
}

.counter-box {
    background: #fff;
    padding: 30px 15px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.counter-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .counter-box h2 {
        font-size: 28px;
    }
}
/*============== end counter section ============*/

/* ===================== about us ===================== */

/* Section */
.why-choose-spa {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-color));
    padding: 60px 0;
}

/* Text */
.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

.section-subtitle i {
    margin-right: 6px;
}


.section-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.7;
}

/* Image */
.spa-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 420px;
}

.spa-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* Decorative circle */
.circle-decor {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    bottom: 20px;
    left: 20px;
}

/* Features */
.spa-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spa-features li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spa-features i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Buttons */
.btn-spa-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-spa-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-spa {
        padding: 40px 0;
    }

    .spa-image-wrapper img {
        height: 280px;
    }

    .section-title {
        font-size: 26px;
    }
}

/*============== end about us ============*/

/* ===============================
   SERVICE GRID PAGE
================================ */

.service-section {
    background: var(--bg-primary);
}

.service-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Image */
.service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.12);
}

/* Content */
.service-content {
    padding: 25px;
}

.service-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-content p {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.6;
    opacity: 0.85;
}

/* Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 12px;
    transition: .3s ease;
}

.service-btn i {
    transition: transform .3s ease;
}

.service-btn:hover {
    color: var(--golden-color);
}

.service-btn:hover i {
    transform: translateX(5px);
}


/*============== end service page ============*/

/* ===============================
   SERVICE DETAILS – SPA THEME
================================ */

.service-details-section {
    background: var(--bg-primary);
}

/* Main Card */
.service-details-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-price{
    font-size: 16px;
    padding: 5px;
    border-radius: 10px;
    font-weight: 500;
    background: var(--dark-color);
    color: var(--accent-color);
}

/* Image */
.service-details-img {
    height: 420px;
    overflow: hidden;
}

.service-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.service-details-content {
    padding: 40px;
}

.service-details-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-short {
    font-size: 16px;
    color: var(--primary-color);
    opacity: 0.85;
    line-height: 1.7;
}

.service-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--golden-color)
    );
    margin: 25px 0;
    border-radius: 10px;
}

.service-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark-color);
}

/* Sidebar */
.service-sidebar {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
}

.service-sidebar h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-sidebar p {
    font-size: 14px;
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

/* RELATED SERVICE SLIDER */

.section-title h2 {
    font-weight: 700;
}

.swiper {
    padding: 20px 5px 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--golden-color);
}

.relatedServiceSlider .swiper-slide {
    display: flex;
    height: auto;
}

.relatedServiceSlider .service-card {
    width: 100%;
    height: 100%;
}


/* reuse your service card styles */


/* ============== end service details ============== */

/* ===============packages ==================== */
.package-section {
    background: transparent;
}

/* CARD */
.package-card {
    transition: .4s ease;
    height: 100%;
}

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

/* IMAGE */
.package-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 18px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.package-card:hover img {
    transform: scale(1.12);
}

/* BADGE */
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 30px;
}

/* CONTENT */
.package-content {
    padding: 20px 5px 0;
    text-align: center;
}

.package-content h5 {
    font-weight: 600;
}

.package-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* PRICE */
.package-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--golden-color);
}

/* =============== end packages ==================== */

/* =============== contact ==================== */

.contact-section {
    background: transparent;
}

/* LEFT INFO */
.contact-info {
    padding-right: 30px;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-box i {
    font-size: 22px;
    color: var(--primary-color);
    min-width: 30px;
}

.info-box h6 {
    margin-bottom: 3px;
    font-weight: 600;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

/* FORM CARD */
.contact-form-card {
    background: rgba(255,255,255,0.95);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.contact-form-card h4 {
    font-weight: 600;
}

/* INPUTS */
.contact-form-card .form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.contact-form-card .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* MOBILE */
@media(max-width: 767px){
    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .info-box {
        justify-content: center;
    }
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.map-card iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* Mobile */
@media(max-width: 767px) {
    .map-card iframe {
        height: 280px;
    }
}

/* =============== end contact ==================== */
