/* ============ CSS VARIABLES ============ */
:root {
    --primary: #c9a96e;
    --primary-dark: #b8923d;
    --primary-light: #e0cfa5;
    --secondary: #2c2c2c;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #777;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --radius: 16px;
}

/* ============ RESET & BASE ============ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

::selection {
    background: var(--primary);
    color: #fff;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============ NAVBAR ============ */
#mainNavbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    transition: var(--transition);
}

#mainNavbar.scrolled {
    padding: 8px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: #444 !important;
    font-weight: 500;
    font-size: 0.90rem;
    padding: 8px 9px !important;
    position: relative;
    transition: var(--transition);
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-appointment {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    white-space: nowrap;
}

.btn-appointment:hover {
    background: transparent;
    color: var(--primary-dark) !important;
    border-color: var(--primary);
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 169, 110, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
        padding-top: 16px;
    }
    .btn-appointment {
        margin-top: 10px;
        display: inline-block;
    }
}

/* ============ HERO SLIDER ============ */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 10px;
}

.btn-hero {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-hero:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: var(--transition);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: var(--transition);
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--primary);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-section { min-height: 500px; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 3px; }
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev { display: none; }
}

/* ============ SECTION COMMONS ============ */
section {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--gray-dark);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius);
    z-index: 0;
}

.about-main-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 480px;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    z-index: 2;
    background: var(--primary);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-hover);
    font-size: 0.95rem;
}

.about-badge i {
    font-size: 1.3rem;
}

.about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #444;
}

.about-feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff !important;
    border: 2px solid var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary-dark) !important;
}

@media (max-width: 768px) {
    .about-image-wrapper::before { display: none; }
    .about-main-img { height: 320px; }
    .about-badge { bottom: 15px; right: 5px; padding: 10px 16px; font-size: 0.8rem; }
}

/* ============ MASSAGE TYPES SECTION ============ */
.massage-types-section {
    background: #fafaf7;
}

.massage-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: calc(100% - 30px);
    margin-bottom:30px;
}

.massage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.massage-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.massage-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.massage-card:hover .massage-card-img img {
    transform: scale(1.1);
}

.massage-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.massage-card:hover .massage-card-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15);
}

.massage-card-body {
    padding: 22px;
}

.massage-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.massage-card-body p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.massage-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.duration {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* ============ PACKAGES SECTION ============ */
.packages-section {
    background: #fff;
}

.package-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 0;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    height: calc(100% - 30px);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    margin-bottom:30px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.package-badge {
    display: block;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    padding: 35px 25px 25px;
    background: #fafaf7;
}

.package-header i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.featured .package-header i {
    color: var(--primary-dark);
}

.package-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.package-sessions {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 5px;
}

.package-features{
    min-height: 250px;
}
.package-features ul {
    list-style: none;
    padding: 25px 25px 15px;
    text-align: left;
}

.package-features ul li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f3f3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features ul li:last-child {
    border-bottom: none;
}

.package-features ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

.package-features ul li i {
    color: var(--primary);
}

.btn-package,
.btn-package-featured {
    margin: 10px 25px 30px;
    padding: 12px 30px;
    font-weight: 600;
    width:fit-content;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    transition: var(--transition);
    display: block;
    margin:0 auto 20px auto;
}

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

.btn-package-featured {
    background: var(--primary);
    color: #fff;
}

.btn-package-featured:hover {
    background: transparent;
    color: var(--primary-dark);
}

@media (max-width: 991px) {
    .package-card.featured {
        transform: none;
    }
    .package-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    background: #fafaf7;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 280px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}

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

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-item-wide {
        grid-column: span 1;
    }
    .gallery-item-tall {
        grid-row: span 1;
    }
}

/* ============ FAQ SECTION ============ */
.faq-section {
    background: #fff;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-header {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header:not(.collapsed) {
    color: var(--primary-dark);
    background: #fdf9f2;
}

.faq-header:focus {
    outline: none;
    box-shadow: none;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-header:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 18px;
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============ REVIEWS SECTION ============ */
.reviews-section {
    background: #fafaf7;
}

.reviewSwiper {
    padding-bottom: 50px;
}

.reviewSwiper .swiper-wrapper{height: fit-content;}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 100px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong {
    display: block;
    color: var(--secondary);
    font-size: 0.95rem;
}

.review-author span {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.reviewSwiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.reviewSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content:center;
    height:100%;
    padding:30px;
    background:#eeeeee;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #fdf9f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background: var(--primary);
    color: #fff;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--primary-dark);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
    background: #fff;
    outline: none;
}

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

/* ============ FOOTER ============ */
.footer-section {
    background: var(--dark);
    color: #ccc;
    padding: 60px 0 0;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--primary);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-newsletter .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
}

.footer-newsletter .form-control::placeholder {
    color: #888;
}

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

.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #e74c3c;
}

footer .swa{text-align:center;padding:30px 0;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;filter:invert(100%);}
footer .footer-contracts{margin-bottom:50px;display:flex;flex-wrap:wrap;justify-content:center;width:100%;margin-top:30px;}
footer .footer-contracts a{display:inline-block;padding:0 10px;font-size:.8em;margin:0 0 5px 0;}

/* ============ FIXED BUTTONS ============ */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
    position: relative;
}

.fixed-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.fixed-btn-call {
    background: #28a745;
}

.fixed-btn-call:hover {
    background: #218838;
}

.fixed-btn-whatsapp {
    background: #25D366;
}

.fixed-btn-whatsapp:hover {
    background: #1da851;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 576px) {
    .fixed-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    .fixed-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ============ ANIMATIONS ============ */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============ LAZY LOAD FADE ============ */
img {
    transition: opacity 0.4s ease;
}

img.loaded {
    opacity: 1;
}

a{
    color:var(--text-color);
    text-decoration: none;
    transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
}
a:hover{
    color:var(--text-color-2);
}

p{margin-bottom:10px;}

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


/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:175px 0 35px 0;background:var(--bg-color);}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:25px;}
.page .page-head .breadcrumb{font-size:.8em;}
.page .page-body{padding:50px 0 20px 0;}
.page .page-foot{padding:50px 0 20px 0;background:var(--bg-color);margin-bottom:50px;}
.page .page-form{margin-bottom:50px;}

/*--- COOKIE-POLICY -----------------------------------------------------------------------------------------------------------------------------------------------------*/
.cookie-accept {position:fixed;bottom:-100%;left:0;right:0;width:100%;z-index:99;border:1px solid #ddd;background:#fff;display:flex;justify-content:center;align-items:center;transition:bottom 1s ease-in-out;-webkit-transition:bottom 1s ease-in-out;-moz-transition:bottom 1s ease-in-out;-o-transition:bottom 1s ease-in-out;padding:20px;}
.cookie-accept.active {bottom:0;}
.cookie-accept .close {position:absolute;right:15px;top:-15px;width:30px;height:30px;border:1px solid #ddd;line-height:30px;text-align:center;font-size:1.5em;background:#fff;}
.cookie-accept .icon {text-align: center;}
.cookie-accept .icon i {font-size:4em;}
.cookie-accept .content {padding:1.5em;}
.cookie-accept .content strong {display:block;font-size:1.5em;line-height:1;margin-bottom:10px;}
.cookie-accept .content p {font-size:1.1em;font-weight:200;margin:0;}
.cookie-accept .buttons ul {list-style:none;margin:0;padding:0;display:flex;gap:10px;}
.cookie-accept .buttons ul > li {flex:1 1 auto;}
.cookie-accept .buttons ul > li > a{display:flex;padding:10px 20px;background:#aaa;color:#fff;text-align:center;text-decoration:none;align-items:center;height:100%;}
@media only screen and (max-width: 767px) {
    .cookie-accept {flex-direction: column;}
}
/*--- FORM --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:1em;font-weight:700;margin-bottom:5px;}
.form-group .form-control{min-height:45px;border:0;border:1px solid #eee;font-size:1em;}
.form-group .form-control::placeholder{font-size:1em;}
.form-group input[type="checkbox"]{width:25px;height:25px;}
.form-checkbox-group{display:flex;line-height: 25px;}
.form-checkbox-group>input{accent-color:var(--primary-color);}
.form-checkbox-group a{padding-left:15px;}
.form-group button{background-color:var(--primary-color);color:#fff;font-size:1em;}
.form-group button:hover{background-color:var(--secondary-color);color:#fff;}
/*rating*/
.stars {width:100%;text-align: center;border:1px solid #eee;border-radius:5px;overflow: hidden;display: flex;justify-content: center;flex-direction: row-reverse;margin-bottom:20px;}
.stars-focus{box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);}
input.star {display: none;}
label.star {margin:0;padding: 0 5px;font-size: 30px;color: #ddd;transition: all .2s;}
input.star:checked ~ label.star:before {content: '\f005';color: #FD4;transition: all .25s;font-weight: 900;}
input.star-5:checked ~ label.star:before {color: #FE7;}
input.star-1:checked ~ label.star:before {color: #F62;}
input.star-2:hover ~ label.star-1 {color: #F62;}
input.star-3:hover ~ label.star-1, input.star-3:hover ~ label.star-2 { color: #F62; }
input.star-4:hover ~ label.star-1, input.star-4:hover ~ label.star-2, input.star-4:hover ~ label.star-3 { color: #F62; }
input.star-5:hover ~ label.star-1, input.star-5:hover ~ label.star-2, input.star-5:hover ~ label.star-3, input.star-5:hover ~ label.star-4 {color: #F62;}
label.star:hover {color: #ffa300;}
label.star:before {content: '\f005';font-family: 'Font Awesome 5 Free';font-weight: 400;}
/*security-input*/
.security-group{margin-bottom:20px;position:relative;}
.security-group label{display: block;font-size:14px;font-weight:700;margin-bottom:5px;}
.security-group .img{position:absolute;bottom:0;left:0;}
.security-group .img img{min-height:45px;}
.security-group .img button{border:0;min-height:45px;min-width:45px;margin:0;background:transparent;}
.security-group input{text-indent:175px;min-height:45px;min-height:45px;border:1px solid #eee;font-size:1em;}
/*--- LOADING ---------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#loading{width:100%;height:100vh;position:fixed;top:0;left:0;background:rgba(0,0,0,.7);z-index:9999999;display:flex;flex-direction:column;justify-content:center;align-items:center;}
@keyframes spin{to{transform: rotate(360deg);}from{transform: rotate(0);}}
#loading:before{content:'\f110';color:#fff;font-family: 'Font Awesome 6 Free';font-weight:900;animation: spin infinite 1s linear;}
/*--- NO-CONTENT --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.no-content{padding:40px 20px;border:1px dashed #eee;border-radius:10px;text-align:center;margin-bottom:30px;}
.no-content>i{font-size:30px;margin-bottom:15px;color:#aaa;}
.no-content>p{font-size:18px;padding:0;margin:0;font-weight:200;}
/*--- HEMEN ARA - WHATSAPP --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}
@keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}

.fixed-button{position:fixed;bottom:15px;left:15px;display:flex;flex-direction:column;gap:15px;display:none;}
.fixed-button>a{height:40px;width:40px;text-align: center;border-radius:80px;z-index: 999;color: white;position:relative;}
.fixed-button>a>i{line-height:40px;font-size:25px;}
.fixed-button>a .ripple{position: absolute;width:120px;height:120px;z-index: -1;left: 50%;top: 50%;opacity: 0;margin: -60px 0 0 -60px;border-radius:80px;-webkit-animation: ripple 1.8s infinite;animation: ripple 1.8s infinite;}
.fixed-button>a .ripple:nth-child(2) {animation-delay: .3s;-webkit-animation-delay: .3s;}
.fixed-button>a .ripple:nth-child(3) {animation-delay: .6s;-webkit-animation-delay: .6s;}

.whatsAppBg{background-color: #068404 !important;background-image: linear-gradient(90deg, #068404, #0ba909);}
.hemenAraBg {background-color: #004080 !important;background-image: linear-gradient(90deg, #004080, #0073e6);}