@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&family=Assistant:wght@400;700&family=Noto+Sans+Hebrew:wght@400;700&family=Didot&display=swap');

/* Reset and Base Styles */
:root {
    --primary-color: #df7c89;
    --secondary-color: #f4b8c0;
    --secondary-light: #f8d1d7;
    --secondary-lighter: #fce8eb;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Assistant', 'Heebo', 'Noto Sans Hebrew', Arial, sans-serif;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-lighter);
    font-size: 1.1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #c96a77;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 124, 137, 0.3);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.learn-more {
    background: transparent;
    color: var(--secondary-lighter);
    text-decoration: underline;
    padding: 0.6rem 0;
}

.cookie-btn.learn-more:hover {
    color: white;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', 'Heebo', 'Noto Sans Hebrew', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--secondary-lighter) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--secondary-lighter) 0%, transparent 50%);
    background-attachment: fixed;
}

:lang(en), .en, .eng {
    font-family: 'Didot', Didot, 'Bodoni MT', 'Didot LT STD', 'Hoefler Text', Garamond, Times, serif !important;
    letter-spacing: 0.5px;
}

/* אפשר להוסיף class="en" לכל טקסט באנגלית ב-HTML לקבלת הפונט */

/* Header Styles */
header {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #333;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    justify-content: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: var(--secondary-lighter);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: relative;
}

/* Customer Page Styles */
.before-after-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

/* How It Works Page Styles */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #df7c89, #df7c89);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--secondary-lighter), white);
    border: 2px solid var(--secondary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(223, 124, 137, 0.3);
}

.step-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.cta-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(223, 124, 137, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 124, 137, 0.4);
    color: white;
    text-decoration: none;
}

/* Plans Page Styles */
.plans-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-lighter), #ffffff);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary-lighter);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, white, var(--secondary-lighter));
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.plan-card.basic::before {
    background: linear-gradient(90deg, #CD7F32, #B8860B);
}

.plan-card.advanced::before {
    background: linear-gradient(90deg, #C0C0C0, #A8A8A8);
}

.plan-card.personal::before {
    background: linear-gradient(90deg, #ffeaa7, #fdcb6e);
}



.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.plan-badge-ultra {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #df7c89;
    margin-bottom: 1rem;
}

.plan-description {
    margin-bottom: 2rem;
}

.plan-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: right;
}

.plan-features li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.plan-button {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(223, 124, 137, 0.3);
    width: 100%;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 124, 137, 0.4);
}

.plans-info {
    text-align: center;
    margin-top: 4rem;
}

.plans-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta .cta-button {
    background: white;
    color: #df7c89;
    border: 2px solid white;
}

.contact-cta .cta-button:hover {
    background: transparent;
    color: white;
}

.before-after-card:hover {
    transform: translateY(-5px);
}

.before-after-images {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.image-container {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.image-container h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.before-image, .after-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-content h3 {
    color: #df7c89;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.treatment-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.treatment-type, .treatment-duration {
    background: #df7c89;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-bottom: 2px solid var(--secondary-lighter);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, white, var(--secondary-lighter));
    border-bottom-color: var(--secondary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.customer-avatar:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.customer-info h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.customer-age {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    margin-right: auto;
    color: #FFD700;
}

.rating i {
    margin-left: 2px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.treatment-info {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.treatment-info span {
    background: #f0f0f0;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(223, 124, 137, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(223, 124, 137, 0.5);
    color: white;
    text-decoration: none;
}

.secondary-btn {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: black;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #5f3dc4, #8b7fd8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.5);
    color: white;
    text-decoration: none;
}

/* Contact Button Styles */
.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 124, 137, 0.3);
    border: 2px solid transparent;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 124, 137, 0.4);
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}


/* Services Grid - Responsive Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Mobile Responsive Grid */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    /* Swiper Mobile Styles */
    .services-swiper {
        padding: 1rem 0;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .services-swiper .swiper-button-next::after,
    .services-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
    
    .services-swiper .swiper-pagination {
        margin-top: 1.5rem;
    }
    
    .services-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    /* Before & After Swiper Tablet Styles */
    .before-after-swiper .swiper-button-next,
    .before-after-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .before-after-swiper .swiper-button-next::after,
    .before-after-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
    
    .before-after-swiper .swiper-pagination {
        margin-top: 1.5rem;
    }
    
    .before-after-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Swiper Small Mobile Styles */
    .services-swiper {
        padding: 0.5rem 0;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        display: none; /* Hide arrows on very small screens */
    }
    
    .services-swiper .swiper-pagination {
        margin-top: 1rem;
    }
    
    .services-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    /* Hide navigation arrows for before-after swiper on mobile */
    .before-after-swiper .swiper-button-next,
    .before-after-swiper .swiper-button-prev {
        display: none; /* Hide arrows on very small screens */
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
    line-height: 1.3;
}

.service-card p {
    color: #636e72;
    line-height: 1.3;
    flex-grow: 1;
    margin: 0;
}

/* Swiper Services Styles */
.services-swiper {
    padding: 2rem 0;
    position: relative;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.services-swiper .service-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Swiper Navigation Buttons */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: #df7c89;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: #df7c89;
    color: white;
    transform: scale(1.1);
}

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

/* Before & After Swiper Styles */
.before-after-swiper {
    padding: 2rem 0;
    position: relative;
}

.before-after-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Before & After Swiper Navigation Buttons */
.before-after-swiper .swiper-button-next,
.before-after-swiper .swiper-button-prev {
    color: #df7c89;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.before-after-swiper .swiper-button-next:hover,
.before-after-swiper .swiper-button-prev:hover {
    background: #df7c89;
    color: white;
    transform: scale(1.1);
}

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

/* Swiper Pagination */
.services-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.services-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    background: #df7c89;
    transform: scale(1.2);
}

/* Before & After Swiper Pagination */
.before-after-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.before-after-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.before-after-swiper .swiper-pagination-bullet-active {
    background: #df7c89;
    transform: scale(1.2);
}

/* Mobile Responsive Service Cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        min-height: 260px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.2rem;
        min-height: 240px;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.1;
    }
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1rem;
}

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

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #f8f9fa;
    color: #333;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--secondary-lighter);
    box-shadow: 0 0 0 3px rgba(223, 124, 137, 0.1);
}

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

/* Error Message Styles */
.error-message {
    color: #e74c3c !important;
    font-size: 0.9rem !important;
    margin-top: 0.25rem !important;
    display: none;
    font-weight: 500;
    text-align: right;
    direction: rtl;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #df7c89;
}

.footer-section p,
.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #df7c89;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #df7c89;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Copyright Footer */
.copyright-footer {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern using secondary color */
.copyright-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    opacity: 0.6;
}

.copyright-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 124, 137, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.copyright-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.copyright-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.copyright-icon {
    color: #df7c89;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.copyright-divider {
    color: #df7c89;
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .copyright-footer {
        padding: 1rem;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copyright-text {
        font-size: 1rem;
    }
    
    .copyright-divider {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
        order: 2;
        margin: 0 auto;
    }
    
    /* Reorder navigation elements for mobile layout */
    .nav-contact-btn {
        order: 3;
    }
    
    .nav-home-btn {
        order: 1;
    }
    
    /* Customer page mobile styles */
    .before-after-images {
        flex-direction: column;
        gap: 1rem;
    }
    
    .image-container {
        max-width: 100%;
    }
    
    .before-image, .after-image {
        height: 200px;
    }
    
    .treatment-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hide nav-links by default on mobile */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .logo {
        margin-left: 0;
    }
    
    .nav-home-btn, .nav-contact-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        gap: 4px;
    }
    
    .nav-home-btn img, .nav-contact-btn img {
        height: 1em;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .primary-btn {
        padding: 1rem 2.5rem;
        font-size: 1.3rem;
        min-width: 200px;
    }
    
    .secondary-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Swiper Mobile Styles for larger mobile breakpoint */
    .services-swiper {
        padding: 1rem 0;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .services-swiper .swiper-pagination {
        margin-top: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    


    
    /* How It Works Mobile Styles */
    .steps-container {
        gap: 0.5rem;
    }
    
    .step-arrow {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 2rem;
        margin-top: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    /* Plans Mobile Styles */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hamburger-menu {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-menu span {
        height: 2px;
    }
    
    .nav-links {
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .nav-home-btn, .nav-contact-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        gap: 3px;
    }
    
    .nav-home-btn img, .nav-contact-btn img {
        height: 0.9em;
    }
    
    .hero {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Additional Beauty-specific styles */
.beauty-highlight {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #2d3436;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem;
}

.price-tag {
    background: #FC87BC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem 0;
    border-left: 4px solid #df7c89;
    display: block !important;
    visibility: visible !important;
}

/* Ensure testimonials are visible on mobile */
@media (max-width: 768px) {
    .testimonial {
        padding: 1.5rem;
        margin: 1rem 0;
        display: block !important;
        visibility: visible !important;
    }
}

.testimonial-author {
    font-weight: bold;
    color: #df7c89;
    margin-top: 1rem;
}





.nav-home-btn, .nav-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(252, 135, 188, 0.15);
    position: relative;
    z-index: 2;
}

.nav-home-btn img, .nav-contact-btn img {
    height: 1.2em;
    width: auto;
    object-fit: contain;
}

.nav-home-btn {
    margin-right: 0;
    margin-left: auto;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: #fff !important;
}

.nav-home-btn:hover, .nav-home-btn:focus {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: #ffeaa7 !important;
    box-shadow: 0 4px 20px rgba(223,124,137,0.25);
    text-decoration: none;
}

.nav-contact-btn {
    margin-right: auto;
    margin-left: 0;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: #fff !important;
}

.nav-contact-btn:hover, .nav-contact-btn:focus {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: #ffeaa7 !important;
    box-shadow: 0 4px 20px rgba(223,124,137,0.25);
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-contact-btn {
        margin: 0;
        width: auto;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-home-btn {
        margin: 0;
        width: auto;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Customer page small mobile styles */
    .before-after-card {
        padding: 1rem;
    }
    
    .before-image, .after-image {
        height: 150px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* How It Works Small Mobile Styles */
    .step-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    /* Plans Small Mobile Styles */
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
}

/* Accessibility Button Styles */
.accessibility-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #df7c89, #df7c89);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(223, 124, 137, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(223, 124, 137, 0.4);
}

.accessibility-button i {
    color: white;
    font-size: 1.5rem;
}

/* Accessibility Menu Styles */
.accessibility-menu {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 9998;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.accessibility-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-menu h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.accessibility-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.accessibility-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.accessibility-option:hover {
    background: #df7c89;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(223, 124, 137, 0.3);
}

.accessibility-option i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.accessibility-option span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile responsiveness for accessibility menu */
@media (max-width: 768px) {
    .accessibility-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
    
    .accessibility-button i {
        font-size: 1.3rem;
    }
    
    .accessibility-menu {
        bottom: 80px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 1rem;
    }
    
    .accessibility-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .accessibility-option {
        padding: 0.6rem;
    }
    
    .accessibility-option i {
        font-size: 1rem;
    }
    
    .accessibility-option span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .accessibility-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .accessibility-menu {
        padding: 0.8rem;
    }
}

/* High contrast mode */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

.high-contrast .accessibility-button {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

.high-contrast .accessibility-button i {
    color: #000 !important;
}

/* Large text mode */
.large-text {
    font-size: 1.2em !important;
}

.large-text h1 { font-size: 2.5em !important; }
.large-text h2 { font-size: 2.2em !important; }
.large-text h3 { font-size: 1.8em !important; }
.large-text p { font-size: 1.3em !important; }

/* Focus indicators */
.focus-indicators *:focus {
    outline: 3px solid #df7c89 !important;
    outline-offset: 2px !important;
}

/* Reduced motion */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Increased spacing */
.increased-spacing * {
    letter-spacing: 0.1em !important;
    word-spacing: 0.2em !important;
    line-height: 2 !important;
}

/* Color blind mode */
.color-blind-mode {
    filter: grayscale(100%) !important;
}

/* Dyslexia font */
.dyslexia-font {
    font-family: 'OpenDyslexic', 'Comic Sans MS', 'Arial', sans-serif !important;
    line-height: 1.8 !important;
}

/* Large cursor */
.large-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="%23FC87BC" stroke="%23fff" stroke-width="2"/></svg>') 16 16, auto !important;
}

/* Link highlight */
.link-highlight a {
    background-color: #df7c89 !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    text-decoration: underline !important;
}

/* Reading mode */
.reading-mode {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    background: #f9f9f9 !important;
    font-size: 1.1em !important;
    line-height: 1.8 !important;
}

.reading-mode * {
    background: #f9f9f9 !important;
}

/* Large buttons */
.large-buttons .btn,
.large-buttons button,
.large-buttons input[type="submit"] {
    padding: 1rem 2rem !important;
    font-size: 1.2em !important;
    min-height: 50px !important;
}

/* Reduced brightness */
.reduced-brightness * {
    filter: brightness(0.8) !important;
}

/* Package Details Section Styles */
.package-details-section {
    padding: 4rem 0 !important;
    background: linear-gradient(135deg, #fefefe, #f8f9fa) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.package-details-section .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.package-details-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.package-details-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.package-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Hide mobile carousel on desktop */
.mobile-only {
    display: none;
}

.package-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #df7c89, #df7c89);
}

.package-detail-card.basic-detail::before {
    background: linear-gradient(90deg, #CD7F32, #B8860B); /* BRONZE */
}



.package-detail-card.personal-detail::before {
    background: linear-gradient(90deg, #FFD700, #FFA500); /* GOLD */
}

.package-detail-card.self-arrival-detail::before {
    background: linear-gradient(90deg, #B9F2FF, #87CEEB); /* DIAMOND */
}

.package-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.package-detail-header h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.package-type-badge {
    background: linear-gradient(135deg, #CD7F32, #B8860B); /* BRONZE - default for basic */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}



.package-type-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500); /* GOLD - for personal */
}

.package-type-badge.diamond {
    background: linear-gradient(135deg, #B9F2FF, #87CEEB); /* DIAMOND - for self-arrival */
}

.package-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.package-overview h4,
.package-process h4,
.package-suitable-for h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-overview h4::before {
    font-size: 1.1rem;
}

.package-process h4::before {
    font-size: 1.1rem;
}

.package-suitable-for h4::before {
    font-size: 1.1rem;
}

.package-features-detailed {
    list-style: none;
    padding: 0;
}

.package-features-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.package-features-detailed li:hover {
    background: #e9ecef;
}

.package-features-detailed i {
    color: #CD7F32; /* BRONZE - default */
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.package-features-detailed strong {
    color: #333;
    font-weight: 600;
}

.process-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-steps li:hover {
    transform: translateX(5px);
}

.process-steps li::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #CD7F32, #B8860B); /* BRONZE - default */
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.suitable-list {
    list-style: none;
    padding: 0;
}

.suitable-list li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: #555;
    transition: color 0.3s ease;
}

.suitable-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #CD7F32; /* BRONZE - default */
    font-weight: bold;
    font-size: 1.1rem;
}

.suitable-list li:hover {
    color: #333;
}

.package-comparison {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.package-comparison h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #df7c89, #df7c89); /* PINK - website color */
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: #e9ecef;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Package-specific color schemes for entire frames */
.package-detail-card.basic-detail .package-features-detailed i,
.package-detail-card.basic-detail .suitable-list li::before,
.package-detail-card.basic-detail .process-steps li::before {
    color: #CD7F32; /* BRONZE */
}

.package-detail-card.basic-detail .process-steps li::before {
    background: linear-gradient(135deg, #CD7F32, #B8860B); /* BRONZE */
    color: white; /* Ensure white text for visibility */
}



.package-detail-card.personal-detail .package-features-detailed i,
.package-detail-card.personal-detail .suitable-list li::before,
.package-detail-card.personal-detail .process-steps li::before {
    color: #FFD700; /* GOLD */
}

.package-detail-card.personal-detail .process-steps li::before {
    background: linear-gradient(135deg, #FFD700, #FFA500); /* GOLD */
    color: white; /* Ensure white text for visibility */
}

.package-detail-card.self-arrival-detail .package-features-detailed i,
.package-detail-card.self-arrival-detail .suitable-list li::before,
.package-detail-card.self-arrival-detail .process-steps li::before {
    color: #87CEEB; /* DIAMOND */
}

.package-detail-card.self-arrival-detail .process-steps li::before {
    background: linear-gradient(135deg, #B9F2FF, #87CEEB); /* DIAMOND */
    color: white; /* Ensure white text for visibility */
}

/* Responsive Design for Package Details */
@media (max-width: 768px) {
    .package-details-section {
        padding: 2rem 0;
    }
    
    .package-details-section .section-title {
        font-size: 2rem;
    }
    
    .package-details-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .package-details-grid {
        display: none; /* Hide desktop grid on mobile */
    }
    
    .mobile-only {
        display: block !important; /* Show mobile carousel on mobile */
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: auto !important;
        overflow: visible !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        pointer-events: auto !important;
        transform: scale(1) !important;
    }
    
    .package-detail-card {
        padding: 1.5rem;
    }
    
    .package-detail-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .package-detail-header h3 {
        font-size: 1.3rem;
    }
    
    .package-type-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .package-features-detailed li {
        padding: 0.6rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .process-steps li {
        padding: 0.8rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .suitable-list li {
        padding: 0.6rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .package-comparison {
        padding: 1.5rem;
    }
    
    .package-comparison h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile-friendly comparison table */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table table {
        min-width: 100%;
        font-size: 0.9rem;
        display: table;
        width: 100%;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* Mobile table text improvements */
    .comparison-table td {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .comparison-table th {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Hero section mobile improvements */
    .hero-content img {
        height: 250px !important;
        padding: 25px !important;
        max-width: 100% !important;
        width: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    /* Info grid mobile improvements */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-item h4 {
        font-size: 1.2rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    /* Contact section mobile improvements */
    .contact {
        padding: 2rem 1rem;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .beauty-highlight {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .package-details-section .section-title {
        font-size: 1.8rem;
    }
    
    .package-detail-card {
        padding: 1rem;
    }
    
    .package-detail-header h3 {
        font-size: 1.2rem;
    }
    
    .package-features-detailed li {
        padding: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .process-steps li {
        padding: 0.6rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .suitable-list li {
        padding: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .package-comparison {
        padding: 1rem;
    }
    
    .package-comparison h3 {
        font-size: 1.3rem;
    }
    
    /* Mobile table display - similar to web version */
    .comparison-table table {
        min-width: auto;
        display: table;
        width: 100%;
        font-size: 0.8rem;
    }
    
    .comparison-table thead {
        display: table-header-group;
    }
    
    .comparison-table tbody {
        display: table-row-group;
    }
    
    .comparison-table tr {
        display: table-row;
        margin-bottom: 0;
        border: none;
        border-radius: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .comparison-table td {
        display: table-cell;
        text-align: center;
        padding: 0.5rem 0.3rem;
        border: 1px solid #f0f0f0;
        position: static;
        padding-right: 0.3rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .comparison-table td:last-child {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .comparison-table td::before {
        display: none;
    }
    
    .comparison-table th {
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Hero section for very small screens */
    .hero {
        min-height: auto;
        padding: 0.75rem 0.5rem;
    }
    
    .hero-content img {
        height: 200px !important;
        padding: 20px !important;
        max-width: 100% !important;
        width: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Info items for very small screens */
    .info-item {
        padding: 1rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    /* Contact section for very small screens */
    .contact {
        padding: 1.5rem 0.5rem;
    }
    
    .contact-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
    
    .beauty-highlight {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    /* Package detail cards for very small screens */
    .package-detail-content h4 {
        font-size: 1.1rem;
    }
    
    .package-overview h4::before,
    .package-process h4::before,
    .package-suitable-for h4::before {
        font-size: 1rem;
    }
} 

/* Package Action Buttons */
.package-action {
    margin-top: 2rem;
    text-align: center;
}

.choose-package-btn {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(223, 124, 137, 0.3);
    min-width: 200px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.choose-package-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: left 0.5s ease;
}

.choose-package-btn:hover::before {
    left: 100%;
}

.choose-package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(223, 124, 137, 0.4);
    background: linear-gradient(135deg, #df7c89, #df7c89);
}

.choose-package-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(252, 135, 188, 0.3);
}

       /* Specific button styles for each package */
       .choose-package-btn.basic-btn {
           background: linear-gradient(135deg, #CD7F32, #B8860B);
           box-shadow: 0 5px 15px rgba(205, 127, 50, 0.3);
       }

       .choose-package-btn.basic-btn:hover {
           background: linear-gradient(135deg, #B8860B, #CD7F32);
           box-shadow: 0 10px 25px rgba(205, 127, 50, 0.4);
       }

       

       .choose-package-btn.personal-btn {
           background: linear-gradient(135deg, #FFD700, #FFA500);
           box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
       }

       .choose-package-btn.personal-btn:hover {
           background: linear-gradient(135deg, #FFA500, #FFD700);
           box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
       }

       .choose-package-btn.self-arrival-btn {
           background: linear-gradient(135deg, #B9F2FF, #87CEEB);
           box-shadow: 0 5px 15px rgba(185, 242, 255, 0.3);
       }

       .choose-package-btn.self-arrival-btn:hover {
           background: linear-gradient(135deg, #87CEEB, #B9F2FF);
           box-shadow: 0 10px 25px rgba(185, 242, 255, 0.4);
       }

/* Responsive design for package buttons */
@media (max-width: 768px) {
    .choose-package-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .package-action {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .choose-package-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .package-action {
        margin-top: 1rem;
    }
} 

/* Mobile/Desktop Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile visibility override */
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* Packages Swiper Styles */
.packages-swiper {
    width: 100%;
    padding: 20px 0;
}

.packages-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.packages-swiper .package-detail-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile Swiper Specific Styles */
@media (max-width: 768px) {
    .packages-swiper {
        width: 100% !important;
        padding: 10px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .packages-swiper .swiper-wrapper {
        display: flex !important;
        width: 100% !important;
    }
    
    .packages-swiper .swiper-slide {
        display: flex !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }
    
    .packages-swiper .package-detail-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Ensure swiper navigation is visible on mobile */
    .packages-swiper .swiper-button-next,
    .packages-swiper .swiper-button-prev {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        color: #df7c89 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .packages-swiper .swiper-pagination {
        display: flex !important;
        margin-top: 15px !important;
    }
    
    .packages-swiper .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        background: #df7c89 !important;
        opacity: 0.5 !important;
    }
    
    .packages-swiper .swiper-pagination-bullet-active {
        opacity: 1 !important;
        background: #df7c89 !important;
    }
}

/* Web Carousel Styles for Desktop */
.packages-web-swiper {
    width: 100%;
    padding: 20px 0;
}

.packages-web-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.package-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.package-pair .package-detail-card {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Web Carousel Navigation Buttons */
.packages-web-swiper .swiper-button-next,
.packages-web-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #df7c89;
    transition: all 0.3s ease;
    display: flex !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
}

.packages-web-swiper .swiper-button-next {
    right: -80px;
}

.packages-web-swiper .swiper-button-prev {
    left: -80px;
}

.packages-web-swiper .swiper-button-next:hover,
.packages-web-swiper .swiper-button-prev:hover {
    background: #df7c89;
    color: white;
    transform: scale(1.1);
}

.packages-web-swiper .swiper-button-next::after,
.packages-web-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Web Carousel Pagination */
.packages-web-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

/* Web Read More Button */
.read-more-btn-web {
    background: linear-gradient(135deg, #df7c89, #c44569);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-right: 10px;
}

/* New Grid Layout for Web Packages */
.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
}

.packages-grid .package-detail-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Responsive adjustments for the grid */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

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

/* Web Package Cards - Natural expansion */
.package-detail-card {
    height: auto !important;
    min-height: fit-content !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.package-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-overview {
    flex-shrink: 0;
}

.package-process,
.package-suitable-for {
    flex-shrink: 0;
}

.package-action {
    margin-top: auto;
    flex-shrink: 0;
}

/* Package pair container */
.package-pair {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.read-more-btn-web:hover {
    background: linear-gradient(135deg, #c44569, #df7c89);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 124, 137, 0.4);
}

.read-more-btn-web.expanded {
    background: linear-gradient(135deg, #636e72, #2d3436);
}

.read-more-btn-web.expanded:hover {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.packages-web-swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: rgba(223, 124, 137, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.packages-web-swiper .swiper-pagination-bullet-active {
    background: rgba(223, 124, 137, 1);
    transform: scale(1.3);
}

/* Packages Swiper Navigation Buttons */
.packages-swiper .swiper-button-next,
.packages-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(223, 124, 137, 0.9);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.packages-swiper .swiper-button-next:hover,
.packages-swiper .swiper-button-prev:hover {
    background: rgba(223, 124, 137, 1);
    transform: scale(1.1);
}

.packages-swiper .swiper-button-next::after,
.packages-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Packages Swiper Pagination */
.packages-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.packages-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(223, 124, 137, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.packages-swiper .swiper-pagination-bullet-active {
    background: rgba(223, 124, 137, 1);
    transform: scale(1.2);
}

/* Desktop Only Styles */
.desktop-only {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.desktop-only .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile Styles for Packages Swiper */
@media (max-width: 768px) {
    .desktop-only,
    .desktop-only *,
    .packages-grid,
    .packages-grid * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
        pointer-events: none !important;
    }
    
    .mobile-only {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: auto !important;
        overflow: visible !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        pointer-events: auto !important;
    }
}

/* Additional mobile-specific overrides */
@media (max-width: 768px) {
    .package-details-section .desktop-only,
    .package-details-section .packages-grid {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
        pointer-events: none !important;
        transform: scale(0) !important;
    }
}

/* Extra mobile-specific overrides */
@media (max-width: 768px) {
    .desktop-only,
    .desktop-only *,
    .packages-grid,
    .packages-grid *,
    .package-detail-card {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
        pointer-events: none !important;
        transform: scale(0) !important;
    }
}
    
    .packages-swiper {
        padding: 10px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        pointer-events: auto !important;
        transform: scale(1) !important;
    }
    
    .packages-swiper .swiper-wrapper {
        display: flex !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .packages-swiper .swiper-slide {
        display: flex !important;
        width: 100% !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }
    
    .packages-swiper .swiper-button-next,
    .packages-swiper .swiper-button-prev {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        color: #df7c89 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .packages-swiper .swiper-button-next::after,
    .packages-swiper .swiper-button-prev::after {
        display: block !important;
        font-size: 16px !important;
        font-weight: bold !important;
    }
    
    .packages-swiper .swiper-pagination {
        display: flex !important;
        margin-top: 15px !important;
        position: relative !important;
    }
    
    .packages-swiper .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        background: #df7c89 !important;
        opacity: 0.5 !important;
        margin: 0 5px !important;
    }
    
    .packages-swiper .swiper-pagination-bullet-active {
        opacity: 1 !important;
        background: #df7c89 !important;
    }
    
    /* Hide web carousel on mobile */
    .packages-web-swiper {
        display: none !important;
    }
}

/* Tablet Styles for Web Carousel */
@media (min-width: 769px) and (max-width: 1024px) {
    .package-pair {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .packages-web-swiper .swiper-button-next,
    .packages-web-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .packages-web-swiper .swiper-button-next::after,
    .packages-web-swiper .swiper-button-prev::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .packages-swiper {
        padding: 5px 0;
    }
    
    .packages-swiper .swiper-button-next,
    .packages-swiper .swiper-button-prev {
        display: none !important;
    }
    
    .packages-swiper .swiper-button-next::after,
    .packages-swiper .swiper-button-prev::after {
        display: none !important;
    }
    
    .packages-swiper .swiper-pagination {
        margin-top: 10px;
    }
    
    .packages-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
} 

/* Mobile Package Details Styles */
.mobile-read-more {
    display: none;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem 0;
}

.read-more-btn {
    background: linear-gradient(135deg, #df7c89, #df7c89);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 124, 137, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-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: left 0.5s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 124, 137, 0.4);
}

.read-more-btn:active {
    transform: translateY(0);
}

.read-more-btn.expanded {
    background: linear-gradient(135deg, #df7c89, #df7c89);
}

/* Mobile-specific package card styles */
@media (max-width: 768px) {
    .package-detail-card {
        position: relative;
        overflow: hidden;
    }
    
    .package-detail-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        opacity: 0;
    }
    
    .package-detail-content.expanded {
        max-height: 2000px;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .mobile-read-more {
        display: block;
    }
    
    /* Show only header on mobile initially */
    .package-detail-card .package-detail-header {
        margin-bottom: 0;
    }
    
    .package-detail-card .package-detail-content {
        margin-top: 0;
    }
}

/* Desktop styles - show full content */
@media (min-width: 769px) {
    .package-detail-content {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 1rem !important;
    }
    
    .mobile-read-more {
        display: none !important;
    }
}

/* FAQ Styles */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-category {
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(223, 124, 137, 0.1);
}

.faq-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--secondary-lighter);
    padding-bottom: 1rem;
}

.faq-category h3 i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(223, 124, 137, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(223, 124, 137, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    background: linear-gradient(135deg, #fefefe, #f8f9fa);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: right;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--secondary-lighter), #f8f9fa);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-right: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    border-top: 1px solid rgba(223, 124, 137, 0.1);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

.faq-answer p br {
    margin-bottom: 0.5rem;
}

/* FAQ Animation */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem 0;
    }
    
    .faq-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
}

/* FAQ Accessibility */
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.faq-question:focus-visible {
    background: var(--secondary-lighter);
}

/* FAQ High Contrast Mode */
.high-contrast .faq-category {
    border: 2px solid #000;
    background: #fff;
}

.high-contrast .faq-question {
    background: #f0f0f0;
    border-bottom: 1px solid #000;
}

.high-contrast .faq-answer {
    background: #fff;
    border-top: 1px solid #000;
}

/* FAQ Large Text Mode */
.large-text .faq-question h4 {
    font-size: 1.3rem;
}

.large-text .faq-answer p {
    font-size: 1.2rem;
}

/* FAQ Reduced Motion */
.reduced-motion .faq-item {
    animation: none;
    opacity: 1;
    transform: none;
}

.reduced-motion .faq-question i {
    transition: none;
}

.reduced-motion .faq-answer {
    transition: none;
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha > div {
    margin: 0 auto;
}

/* Hide reCAPTCHA badge on small screens */


/* reCAPTCHA form integration */
.contact-form .g-recaptcha {
    margin-bottom: 1rem;
}

/* reCAPTCHA loading state */
.recaptcha-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* reCAPTCHA error state */
.recaptcha-error {
    border: 2px solid #e74c3c;
    border-radius: 5px;
    padding: 0.5rem;
    margin: 0.5rem 0;
    background: #fdf2f2;
    color: #e74c3c;
    font-size: 0.9rem;
    text-align: center;
}

/* Custom Checkbox Styles - Enhanced Design */
.form-group input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background: white !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.form-group input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--primary-color), #c96a77) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(223, 124, 137, 0.3) !important;
}

.form-group input[type="checkbox"]:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.form-group input[type="checkbox"]:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(223, 124, 137, 0.2) !important;
    transform: translateY(-1px) !important;
}

.form-group input[type="checkbox"]:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(223, 124, 137, 0.2), 0 2px 8px rgba(223, 124, 137, 0.2) !important;
}

.form-group input[type="checkbox"]:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #f5f5f5 !important;
}

/* Terms checkbox specific styles - Enhanced */
.form-group .terms-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.form-group .terms-checkbox-container:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group .terms-checkbox-container label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
    user-select: none;
    color: #333;
    font-size: 0.95rem;
    flex: 1;
}

.form-group .terms-checkbox-container a {
    color: #8e44ad;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 3px;
}

.form-group .terms-checkbox-container a:hover {
    color: #6c3483;
    text-decoration: none;
    background: rgba(142, 68, 173, 0.1);
    transform: translateY(-1px);
}

.form-group .terms-checkbox-container a:focus {
    outline: 2px solid #8e44ad;
    outline-offset: 2px;
    border-radius: 3px;
    background: rgba(142, 68, 173, 0.1);
}

/* Animation for checkbox */
.form-group input[type="checkbox"]:checked {
    animation: checkboxPop 0.3s ease !important;
}

@keyframes checkboxPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Additional checkbox overrides for production */
input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

/* Force checkbox styles in all contexts */
.form-group input[type="checkbox"],
.terms-checkbox-container input[type="checkbox"],
#termsCheckbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background: white !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.form-group input[type="checkbox"]:checked,
.terms-checkbox-container input[type="checkbox"]:checked,
#termsCheckbox:checked {
    background: linear-gradient(135deg, var(--primary-color), #c96a77) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(223, 124, 137, 0.3) !important;
}

.form-group input[type="checkbox"]:checked::after,
.terms-checkbox-container input[type="checkbox"]:checked::after,
#termsCheckbox:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Browser-specific overrides */
@supports (-webkit-appearance: none) {
    .form-group input[type="checkbox"],
    .terms-checkbox-container input[type="checkbox"],
    #termsCheckbox {
        -webkit-appearance: none !important;
        appearance: none !important;
    }
}

@supports (-moz-appearance: none) {
    .form-group input[type="checkbox"],
    .terms-checkbox-container input[type="checkbox"],
    #termsCheckbox {
        -moz-appearance: none !important;
        appearance: none !important;
    }
}

/* Ensure checkbox styles work in all browsers */
.form-group input[type="checkbox"]::-ms-check,
.terms-checkbox-container input[type="checkbox"]::-ms-check,
#termsCheckbox::-ms-check {
    display: none !important;
}

/* Production Overrides for Packages Grid - Ensure it works after deploy */
.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.packages-grid .package-detail-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

/* Force grid layout in all contexts */
.desktop-only .packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.desktop-only .packages-grid .package-detail-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

/* Override any conflicting styles */
.package-details-section .desktop-only .packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.package-details-section .desktop-only .packages-grid .package-detail-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}