/* CSS Variables */
:root {
    --primary-color: #383e42;
    --primary-light: #4a5256;
    --primary-dark: #2c3235;
    --accent-color: #ff6b35;
    --accent-light: #ff8659;
    --accent-dark: #e55a2b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Top Contact Bar Styles */
.top-contact-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
}

.top-contact-bar .contact-info {
    color: var(--white);
}

.top-contact-bar .contact-info i {
    color: var(--accent-color);
}

.top-contact-bar .phone-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-contact-bar .phone-link:hover {
    color: var(--accent-color);
}

.top-contact-bar .phone-link i {
    color: var(--accent-color);
}

/* Mobile responsive adjustments for top bar */
@media (max-width: 767.98px) {
    .top-contact-bar {
        padding: 10px 0;
    }
    
    body {
        padding-top: 120px !important; /* Adjusted for mobile */
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 140px; /* Combined height of both bars */
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
    padding: 1rem 0;
    top: 60px; /* Height of top contact bar */
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-brand i {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Button Styles */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.btn-secondary-custom {
    background: transparent;
    /* border: 2px solid var(--primary-color);
    color: var(--primary-color); */
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(56, 62, 66, 0.9), rgba(44, 50, 53, 0.9)), 
                url('images/lazerna-epilatsiya-elyson-pro-laserpro-1.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 55px;
    padding-top: 20px;
}

.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Promotions Section */
.promotions-section {
    padding: 5rem 0;
    background: #fff;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow);
    text-align: center;
}

.stat-item h3,
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    margin: 0;
}

/* Laser Procedures Section */
.procedures-section-white {
    padding: 5rem 0;
    background: white;
}

/* Biorepeel Procedures Section */
.procedures-section-light {
    padding: 5rem 0;
    background: var(--bg-light);
}




/* Procedure Sections Common Styles */
.procedure-section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.procedure-description-large {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.procedure-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.procedure-benefits {
    margin-top: 2rem;
}

.procedure-buttons {
    margin-top: 2rem;
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.procedure-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: white;
}

.review-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer strong {
    color: var(--primary-color);
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction:column;
    align-items: center;
    gap: 2rem;
}

.review-container {
    position: relative;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.reviews-carousel .review-card {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    margin: 0;
    width: 100%;
}

.reviews-carousel .review-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.carousel-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    bottom:80px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Mobile responsiveness for carousel */
@media (max-width: 768px) {
    .reviews-carousel {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-phone a{
        width:auto;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-container {
        min-height: 250px;
    }
    
    .reviews-carousel .review-card {
        padding: 1.5rem;
    }
    .carousel-indicators {
       display: none;
    }
    .navbar{
        top:70px;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.appointment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.appointment-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    height: 100%;
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand h3 {
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color) !important;
}

.social-link {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}
.fixed-top{
    max-width: 100vw;
}
/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7) !important;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.btn-back-top {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-back-top:hover {
    background: var(--primary-light) !important;
    transform: translateY(-3px) !important;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.w-100 {
    width: 100%;
}
/* .container{
    max-width:1260px;
} */
/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-stats {
        padding: 2rem;
    }
    
    .stat-item h3,
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px var(--shadow);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .appointment-form {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .contact-methods {
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-stats {
        margin-top: 2rem;
    }
    
    .laser-benefits {
        margin-top: 1.5rem;
    }
    
    .laser-buttons {
        margin-top: 1.5rem;
    }
    
    .biorepeel-benefits {
        margin-top: 1.5rem;
    }
    
    .biorepeel-buttons {
        margin-top: 1.5rem;
    }
    
    .microneedling-benefits {
        margin-top: 1.5rem;
    }
    
    .microneedling-buttons {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 1rem;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    
    }
    .reverse-row > .container > .row{
      
        flex-direction: column-reverse;
        gap: 50px;
    }
    .regular-row > .container > .row{
      
        gap: 50px;
    }
    
    section {
        padding: 3rem 0 !important;
    }
    
    .appointment-content h2,
    .about-section h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: 2rem !important;
    }
    
    .laser-procedures-section h2,
    .biorepeel-procedures-section h2,
    .microneedling-procedures-section h2,
    .depigmentation-procedures-section h2,
    .facial-cleansing-procedures-section h2,
    .hydrating-therapy-procedures-section h2,
    .procedure-section-title {
        font-size: 2rem !important;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-stats {
        padding: 1.5rem;
    }
    
    .stat-item h3,
    .stat-number {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .laser-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .laser-buttons .btn-primary-custom,
    .laser-buttons .btn-secondary-custom {
        width: 100%;
        margin-right: 0;
    }
    
    .biorepeel-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .biorepeel-buttons .btn-primary-custom,
    .biorepeel-buttons .btn-secondary-custom {
        width: 100%;
        margin-right: 0;
    }
    
    .microneedling-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .microneedling-buttons .btn-primary-custom,
    .microneedling-buttons .btn-secondary-custom {
        width: 100%;
        margin-right: 0;
    }
    
    .procedure-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .procedure-buttons .btn-primary-custom,
    .procedure-buttons .btn-secondary-custom {
        width: 100%;
        margin-right: 0;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 75px;
        right: 15px;
    }
    
    .btn-back-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-section {
        padding: 3rem 0 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
      
    }
    
    .appointment-content h2,
    .about-section h2,
    .reviews-section h2,
    .contact-section h2,
    .laser-procedures-section h2,
    .biorepeel-procedures-section h2,
    .microneedling-procedures-section h2,
    .depigmentation-procedures-section h2,
    .facial-cleansing-procedures-section h2,
    .hydrating-therapy-procedures-section h2,
    .procedure-section-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .contact-item h5 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand img {
        height: 50px !important;
        margin-right: 5px !important;
    }
}
.carousel-controls-wrapper{
    display:flex;
    gap:20px;
    justify-content:center;
}

/* Promotional Cards Styles */
.promo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.promo-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.promo-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-badge.featured-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.promo-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.promo-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-price {
    text-align: center;
    margin: 1.5rem 0;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
    display: block;
}

.new-price {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.regular-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promo-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.promo-features i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Horizontal Promo Cards */
.promo-card-horizontal {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.promo-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.promo-badge-small {
    position: absolute;
    top: -8px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.promo-content-horizontal h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-content-horizontal h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.promo-benefits {
    margin: 1rem 0;
}

.promo-benefits p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.promo-benefits i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 15px;
}

.promo-price-horizontal {
    margin: 1rem 0;
    text-align: center;
}

.promo-price-horizontal .old-price {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.promo-price-horizontal .new-price {
    font-size: 1.4rem;
}

/* Benefit Items for About Section */
.benefit-item-large {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}
.benefit-item-large i{
    width: 55px;
    height: 55px;
}

.benefit-icon-large {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 60px !important;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item-large h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item-large p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Promo Stats */
.promo-stats-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
}

.promo-stat {
    text-align: center;
}

/* Responsive adjustments for promo cards */
@media (max-width: 768px) {
    .promo-card {
        margin-bottom: 2rem;
    }
    
    .promo-card.featured {
        transform: none;
    }
    
    .promo-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .benefit-item-large {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon-large {
        align-self: center;
    }
}

/* Treatment Areas Cards */
.treatment-area-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.treatment-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.area-icon {
    margin-bottom: 1.5rem;
}

.treatment-area-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.area-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.area-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-light);
    position: relative;
    padding-left: 1.5rem;
}

.area-list li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.area-list li:last-child {
    border-bottom: none;
}

/* Technology Features */
.tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.tech-feature h4 {
    font-size: 1.1rem;
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question.active {
    background: var(--bg-light);
}

.faq-number {
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-light);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 1rem 1rem 1rem;
    }
    
    .treatment-area-card {
        margin-bottom: 2rem;
    }
    
    .tech-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Face Procedures Specific Styles */
.biorepeel-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.biorepeel-feature h4 {
    font-size: 1.1rem;
}

.biorepeel-features {
    margin-top: 1.5rem;
}

/* Care Cards */
.care-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.care-icon {
    margin-bottom: 1.5rem;
}

.care-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.care-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.care-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-light);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.care-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.care-list li:last-child {
    border-bottom: none;
}

/* Face Procedures Info Styles */
.face-procedures-info {
    padding-right: 1rem;
}

.face-procedures-info h3 {
    line-height: 1.3;
}

.face-procedures-info p {
    font-size: 1rem;
}

/* Benefits List for Face Procedures */
.benefits-list {
    padding-left: 1rem;
}

.benefits-list .benefit-item-large {
    margin-bottom: 1.5rem;
}

.benefits-list .benefit-item-large h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.benefits-list .benefit-item-large p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments for face procedures */
@media (max-width: 768px) {
    .biorepeel-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .care-card {
        margin-bottom: 2rem;
    }
    
    .care-list li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .face-procedures-info,
    .benefits-list {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .benefits-list .benefit-item-large {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}