
:root {
    --primary-color: #8b9d83;
    --secondary-color: #d4c5b9;
    --dark-gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --overlay-bg: rgba(74, 74, 74, 0.95);
    --transition: all 0.3s ease;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #e5a8db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    column-gap: 5px;
}

.logo > *:first-child img {
    height: 75px;
}

.logo > *:nth-child(1) img {
    margin-top: 6px;
    height: 70px;
}

.logo img {
    width: auto;
    height: 70px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: var(--dark-gray);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

.contact-phone a {
    color: #ff6b9d!important;
}

/* Menu Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: var(--transition);
}

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

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

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

/* Vertical Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--overlay-bg);
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

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

.vertical-menu {
    padding: 100px 40px 40px;
    max-width: 500px;
    margin-left: auto;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    margin-bottom: 2px;
    position: relative;
}

.menu-list li.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-link {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.menu-link:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.submenu-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
    transition: var(--transition);
}

.submenu-toggle:hover {
    color: var(--secondary-color);
}

.menu-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-social a {
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}

.menu-social a:hover {
    color: var(--secondary-color);
}

/* Main Content */
main {
    margin-top: var(--header-height);
}

.section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.hero-section p {
    font-size: 24px;
    color: var(--primary-color);
}

.hero-section h2 {
    font-size: 30px;
    color: #9056b3;
}

#home {
    background-image: url('../images/salon_pmu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

#home .container {
    position: relative;
    z-index: 2;
}

#micropigmentare {
    background-image: url('../images/micropigmentare_section.jpg');
}


#micropigmentare, 
#stilizare-sprancene, 
#makeup,
#tratament-facial,
#epilare-ceara,
#cursuri,
#preturi-servicii,
#oferte-speciale,
#contact {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#micropigmentare::before, 
#stilizare-sprancene::before, 
#makeup::before, 
#tratament-facial::before,
#epilare-ceara::before,
#cursuri::before,
#preturi-servicii::before,
#oferte-speciale::before,
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

#micropigmentare .container, 
#stilizare-sprancene .container, 
#makeup .container,
#tratament-facial .container,
#epilare-ceara .container,
#cursuri .container,
#preturi-servicii .container,
#oferte-speciale .container,
#contact .container{
    position: relative;
    z-index: 2;
}


#stilizare-sprancene {
    background-image: url('../images/stilizare_sprancene_section.jpg');
}

#makeup {
    background-image: url('../images/makeup_section.jpg');
}

#tratament-facial {
    background-image: url('../images/tratament_facial_section.jpg');
}

#epilare-ceara {
    background-image: url('../images/epilare_ceara_section.jpg');
}

#cursuri {
    background-image: url('../images/salon_pmu.jpg');
}

#preturi-servicii {
    background-image: url('../images/preturi_section.jpg');
}

#oferte-speciale {
    background-image: url('../images/oferte_section.jpg');
}

#contact {
    background-image: url('../images/salon_pmu.jpg');
}




/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    text-align: justify;
}


.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    font-weight: bold;
}

.content-text h2,
.content-text h3 {
    
    margin-bottom: 20px;
    color: var(--dark-gray);
}



.content-text h2 {
    font-size: 36px;
}

.content-text h3 {
    font-size: 28px;
}

.content-text h4 {
    color: #a52a2a
}

.content-text p {
    
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    display: grid;
    text-align: -webkit-center;
    overflow: hidden;
    align-content: baseline;
    row-gap: 41px;
    }


.content-image img {
    width: 80%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    justify-items: center;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 27px;
    right: 104px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

/* Oferte Speciale Styles */
#oferte-speciale {
    background-color: #f8f4ff; /* Fundal deschis pentru contrast */
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4a4a4a;
}

.offer-card {
    background: linear-gradient(135deg, #fdbbff 0%, #fff295 100%);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 80%);
    transform: rotate(30deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.offer-card:hover::before {
    transform: rotate(0deg);
}

.offer-card h3 {
    color: #8e44ad;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.offer-description {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.offer-price {
    display: grid;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.offer-savings {
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-block;
    background-color: #8e44ad;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background-color: #6c3483;
    transform: scale(1.05);
}

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


.offer-note {
    text-align: center;
    margin-top: 2rem;
    color: #7f8c8d;
    font-style: italic;
}

.offer-note i {
    margin-right: 0.5rem;
}

/* Contact Section Styles */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Unde suntem - Left Side */
.contact-location h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #ff6b9d;
    min-width: 20px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b9d;
}

/* Contact Form - Right Side */
.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-section h2 {
    color: #333;
}

.contact-form .form-row {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 2px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

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

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #ff6b9d;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #ff4081;
}

.captcha-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.captcha-group input {
    max-width: 200px;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

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

.btn-submit i {
    font-size: 1.1rem;
}

./* Animație shake pentru erori captcha */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.captcha-group {
    position: relative;
    margin-bottom: 20px;
}

.captcha-group label {
    font-weight: 600;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 8px;
}

#captchaText {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1em;
    padding: 5px 10px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 5px;
    display: inline-block;
}

.captcha-error {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
    padding: 8px 12px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
}

.captcha-error.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

#captcha {
    border: 2px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
}

#captcha:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

#captcha.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .content-grid {
        gap: 40px;
    }
    
    .hero-section h1 {
        font-size: 40px;
    }
    
    .hero-section p {
        font-size: 20px;
    }
    
    .content-text h2 {
        font-size: 32px;
    }
    
    .content-text h3 {
        font-size: 24px;
    }

    .pricing-table {
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
    }
    
    .pricing-table h3 {
        font-size: 24px;
    }
    
    .pricing-table thead th {
        padding: 15px;
        font-size: 14px;
    }
    
    .pricing-table tbody td {
        padding: 15px;
        font-size: 14px;
    }
    
    .pricing-table tbody td.price,
    .pricing-table tbody td.special-price {
        font-size: 18px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Enhanced Section Title */
.section h2 {
    background: linear-gradient(135deg, #8B5CF6 0%, #c33b3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.1);
}



/* Before/After Grid for Images */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.before-after-item {
    position: relative;
    overflow: hidden;
}

.before-after-item img {
    width: 48%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0 0 20px 20px;
}

.before-after-label {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px 25px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0;
    width:48%;
}


/* Pricing Section Styles */
.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.pricing-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-table h3 i {
    font-size: 32px;
}

.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
}

.pricing-table thead {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-bottom: 2px solid #6d28d9;
}

.pricing-table thead th {
    padding: 15px 20px;
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table tbody tr {
    background-color: #f8f5ff;
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(5px);
}

.pricing-table tbody tr.highlight-row {
    background: rgba(138, 43, 226, 0.05);
}

.pricing-table tbody tr.highlight-row:hover {
    background: rgba(138, 43, 226, 0.15);
}

.pricing-table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-light);
    font-size: 15px;
}

.pricing-table tbody td:first-child {
    font-weight: 500;
}

.pricing-table tbody td.price {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.pricing-table tbody td.special-price {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.old-price {
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    text-decoration: line-through;
}

.offer-price label {
    color: #ff6b6b;
    font-size: 16px;
}


.pricing-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(138, 43, 226, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.pricing-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 18px;
}

.pricing-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-footer p {
    margin: 10px 0;
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-footer i {
    color: var(--accent-color);
    font-size: 18px;
}

/* Privacy Policy Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
    margin: 20px;
    padding: 0;
    border: none;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    text-shadow: none;
}

.modal-header h2 i {
    font-size: 28px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    color: #333;
}

.modal-body h3 {
    color: #8b5cf6;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.modal-body ul {
    margin: 10px 0 20px 20px;
    line-height: 1.8;
}

.modal-body ul li {
    margin-bottom: 8px;
    color: #4a4a4a;
}

.modal-footer-text {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
    font-size: 14px;
    color: #7f8c8d;
}

.modal-footer {
    padding: 20px 30px;
    background: rgba(139, 92, 246, 0.05);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: center;
    border-radius: 0 0 20px 20px;
}

.btn-modal-close {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-modal-close:active {
    transform: translateY(0);
}

/* Scrollbar styling for modal body */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}


@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header-content {
        height: var(--header-height);
    }

    .logo img {
        width: auto;
        height: 55px;
    }
    
    .social-icons {
        display: none;
    }
    
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .content-text {
        width: 100%;
        max-width: 100%;
    }

    .content-image {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .content-text h3 {
        font-size: 22px;
    }
    
    .section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .vertical-menu {
        padding: 80px 30px 30px;
    }
    
    .menu-link {
        font-size: 18px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 78px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    #micropigmentare h2 {
        font-size: 28px;
    }
    
    .benefits-list ul {
        padding-left: 15px;
        padding-right: 15px;
    }

    .benefits-list li {
        font-size: 15px;
    }
    
    .benefits-list li i {
        font-size: 18px;
    }
    
    .cta-box {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .before-after-item img {
        width: 75%;
    }
    
    .before-after-label {
        width: 75%;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .pricing-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .pricing-table thead {
        display: none;
    }
    
    .pricing-table table {
        display: block;
        width: 100%;
    }

    .pricing-table tbody {
        display: block;
        width: 100%;
    }

    .pricing-table tbody tr {
        display: block;
        margin-bottom: 15px;
        background: #f8f5ff;
        border-radius: 8px;
        padding: 10px 0;
    }

    .pricing-table tbody tr:hover {
        background: rgba(138, 43, 226, 0.1);
        transform: none;
    }

    .pricing-table tbody td {
        display: block;
        text-align: right;
        padding: 8px 15px;
        position: relative;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        border: none;
    }

    .pricing-table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        font-weight: bold;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .pricing-table tbody td.price,
    .pricing-table tbody td.special-price {
        font-size: 16px;
        font-weight: 700;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .old-price {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .pricing-note {
        padding: 15px;
    }
    
    .pricing-note p {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pricing-footer {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .pricing-footer p {
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }
    
    .pricing-table table {
        width: 100%;
    }

    .pricing-table th,
    .pricing-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-table th {
        text-align: center;
        background-color: #f0f0f0;
    }

    .pricing-table td {
        text-align: left;
        padding-left: 50%;
        position: relative;
    }

    .pricing-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }
    
    .pricing-footer {
        text-align: left;
        padding: 15px;
    }

    .pricing-footer p {
        margin-bottom: 10px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-location h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        margin: 10px;
        width: 95%;
        max-height: 90vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-header h2 i {
        font-size: 24px;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h3 {
        font-size: 16px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .btn-modal-close {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }
    
    .container {
        padding: 0 15px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-text {
        width: 100%;
        max-width: 100%;
    }

    .content-image {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .content-text h3 {
        font-size: 20px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .vertical-menu {
        padding: 70px 20px 20px;
    }
    
    .menu-link {
        font-size: 16px;
        font-weight: 700;
    }
    
    .menu-social a {
        font-size: 20px;
    }

    .pricing-table {
        padding: 15px 10px;
        border-radius: 15px;
    }
    
    .pricing-table h3 {
        font-size: 18px;
    }
    
    .pricing-table h3 i {
        font-size: 24px;
    }
    
    .pricing-table thead {
        display: none;
    }

    .pricing-table table {
        display: block;
        width: 100%;
    }

    .pricing-table tbody {
        display: block;
        width: 100%;
    }

    .pricing-table tbody tr {
        display: block;
        margin-bottom: 12px;
        background: #f8f5ff;
        border-radius: 6px;
        padding: 8px 0;
    }

    .pricing-table tbody td {
        display: block;
        text-align: right;
        padding: 6px 12px;
        position: relative;
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        border: none;
    }

    .pricing-table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        width: 45%;
        font-weight: bold;
        text-align: left;
        font-size: 11px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .pricing-table tbody td.price,
    .pricing-table tbody td.special-price {
        font-size: 16px;
        font-weight: 700;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .pricing-note {
        padding: 12px;
    }
    
    .pricing-note p {
        font-size: 13px;
    }
    
    .pricing-footer {
        padding: 15px 10px;
    }
    
    .pricing-footer p {
        font-size: 13px;
    }

    .modal-header h2 {
        font-size: 18px;
        gap: 8px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-body h3 {
        font-size: 15px;
    }
    
    .modal-body p,
    .modal-body ul li {
        font-size: 14px;
    }

    .cta-box {
        width: 100%;
        max-width: 100%;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .menu-overlay,
    .whatsapp-float,
    .footer {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    .section {
        page-break-inside: avoid;
    }
}


/* Benefits List with Purple Checkboxes */
.benefits-list {
    text-align: justify;
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.benefits-list li {
    margin-bottom: 6px;
    gap: 12px;
    line-height: 1.8;
}

.benefits-list li i {
    color: #f17777;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list li strong {
    padding: 0 9px;
    color: #040c00;
}

/* CTA Box Styling */
.cta-box {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
    border-left: 4px solid #8B5CF6;
    padding: 25px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.1);
    text-align: left;
}

.cta-box p:first-child {
    font-size: 20px;
    color: #8B5CF6;
    margin-bottom: 10px;
}

.cta-box .btn-primary {
    margin-top: 15px;
    background: #8B5CF6;
    border-color: #8B5CF6;
}

.cta-box .btn-primary:hover {
    background: #7C3AED;
    border-color: #7C3AED;
    transform: translateY(-2px);
}

/* Animation for pricing tables on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-table {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-table:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-table:nth-child(3) {
    animation-delay: 0.4s;
}

.pricing-table:nth-child(4) {
    animation-delay: 0.6s;
}
