/* Medical Pedicure Salon Styles */

/* CSS Variables */
:root {
    --primary-pink: #FF69B4;
    --light-pink: #FFB6C1;
    --soft-pink: #FFC0CB;
    --pale-pink: #FFE4E1;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    --gradient-pink: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    --gradient-overlay: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(255, 182, 193, 0.8));
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-pink) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1));
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 182, 193, 0.2));
    transform: translateY(-2px);
}

.navbar-brand i {
    font-size: 2rem;
    animation: heartbeat 2s infinite;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0.75rem;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink) !important;
    background: var(--pale-pink);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-pink) !important;
    background: var(--pale-pink);
}

.navbar-nav .nav-link::after {
    display: none;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    background: var(--gradient-pink);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-body {
    padding: 2rem 1.5rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-list a:hover {
    background: var(--pale-pink);
    color: var(--primary-pink);
    transform: translateX(5px);
}

.mobile-nav-list a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.mobile-book-btn {
    background: var(--gradient-pink) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

.mobile-book-btn:hover {
    transform: translateX(5px) scale(1.02);
}

.mobile-menu-footer {
    border-top: 1px solid var(--pale-pink);
    padding-top: 1.5rem;
}

.mobile-contact-info {
    margin-bottom: 1.5rem;
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.mobile-contact-info i {
    color: var(--primary-pink);
    width: 16px;
}

.mobile-social {
    display: flex;
    gap: 1rem;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--pale-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/seed/medical-office/1920/1080.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Google Rating */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.rating-label {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.rating-reviews {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    min-width: 200px;
}

.btn-pink {
    background: var(--gradient-pink);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    border: 3px solid transparent;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--primary-pink);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--pale-pink);
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-pink {
    background: transparent;
    color: var(--primary-pink);
    border: 3px solid var(--primary-pink);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.btn-outline-pink:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.btn-pink-outline {
    background: transparent;
    color: var(--primary-pink);
    border: 3px solid var(--primary-pink);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.btn-pink-outline:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

/* Features Section */
.features {
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--pale-pink);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.1);
    border-color: var(--light-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Services Section */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    position: relative;
}

.service-icon {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-content h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

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

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--pale-pink);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.1);
}

.testimonial-card .stars {
    color: #FFD700;
}

.testimonial-card .stars i {
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h6 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author small {
    color: var(--primary-pink);
}

/* CTA Section */
.cta {
    background: var(--gradient-pink);
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
/* Footer */
.footer {
    background: linear-gradient(135deg, var(--pale-pink) 0%, var(--white) 50%, var(--pale-pink) 100%);
    color: var(--dark-gray);
    border-top: 4px solid var(--primary-pink);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF69B4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: var(--primary-pink);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer .text-muted {
    color: var(--medium-gray) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-pink);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.contact-info i {
    color: var(--primary-pink);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--pale-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

.contact-info i {
    color: var(--primary-pink);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Animations */
@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .service-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 100%;
        font-weight: 700;
    }
    
    .btn-lg {
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.service-hero .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.service-hero .row {
    min-height: auto !important;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.service-badge i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.meta-item i {
    font-size: 1.3rem;
}

.included-card {
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--pale-pink);
    height: 100%;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    border-color: var(--primary-pink);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.included-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.included-card h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.included-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--pale-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.benefit-item h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.process-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid var(--pale-pink);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    border-color: var(--primary-pink);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--pale-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
}

.process-icon i {
    font-size: 1.8rem;
    color: var(--primary-pink);
}

.process-card h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.issue-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--pale-pink);
    transition: all 0.3s ease;
    height: 100%;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    border-color: var(--primary-pink);
}

.issue-card i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.issue-card h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.issue-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.pricing-cta-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
    border: 3px solid var(--light-pink);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-pink);
    border-radius: 50%;
}

.pricing-badge i {
    font-size: 2rem;
    color: var(--white);
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
}

.price-label {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.level-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 3px solid var(--pale-pink);
    transition: all 0.3s ease;
    height: 100%;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
    border-color: var(--primary-pink);
}

.level-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-pink);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.level-card h3 {
    color: var(--dark-gray);
    font-weight: 800;
    margin-bottom: 1rem;
}

.level-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.level-duration {
    color: var(--medium-gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.level-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.level-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.level-features i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--pale-pink);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--light-pink);
}

/* Контейнер слайдера */
.compare-container {
    position: relative;
    overflow: hidden;
    line-height: 0; /* Убирает отступы под картинками */
    width: 100%;
}

/* Изображение "После" (нижний слой) */
.compare-container > img {
    display: block;
    width: 100%;
    height: auto;
}

/* Слой с изображением "До" (верхний слой) */
.compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Начальная ширина */
    height: 100%;
    overflow: hidden;
    border-right: 2px solid #fff; /* Белая разделительная линия */
    z-index: 2;
}

/* Картинка внутри слоя "До" */
.compare-overlay img {
    height: 100%;
    /* Важно: ширина должна быть равна ширине контейнера, 
       чтобы картинка не сжималась при движении слайдера */
    width: auto; 
    max-width: none; 
}

/* Невидимый input range для управления */
.compare-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: e-resize;
    z-index: 10; /* Должен быть поверх всего */
    margin: 0;
}

/* Визуальная кнопка слайдера */
.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Начальная позиция */
    width: 0;
    z-index: 5;
    pointer-events: none; /* Пропускаем клики сквозь кнопку к input */
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333; /* Цвет иконки */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Метки Before/After */
.label-badge {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
    pointer-events: none;
    text-transform: uppercase;
}
.label-before { left: 20px; }
.label-after { right: 20px; }