:root {
    --primary-color: #3a86ff;
    --secondary-color: #00bfa6;
    --accent-color: #ffbe0b;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --medium-text: #495057;
    --section-padding: 5rem 0;
}
html {
overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}


.navbar {
transition: all 0.4s ease;
padding: 1rem 2rem;
background-color: transparent;
backdrop-filter: none;
box-shadow: none;
z-index: 1000;
border-radius: 0; /* curat */
}

/* Navbar glassmorphic când dai scroll */
.navbar-scrolled {
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
border-radius: 0.75rem;
margin: 0.5rem 1rem;
transition: all 0.4s ease;
}

/* Brand */
.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: var(--primary-color);
}
.navbar-brand span {
color: var(--secondary-color);
}

/* Linkuri */
.nav-link {
font-weight: 500;
margin: 0 0.5rem;
position: relative;
transition: all 0.3s;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
transition: width 0.3s;
}
.nav-link:hover:after {
width: 100%;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,242,245,0.8) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-text);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.03;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondary-color);
    bottom: -50px;
    left: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 30%;
    right: 20%;
    transform: rotate(45deg);
}

.btn-primary-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.2);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

.btn-outline-dark {
border: 2px solid var(--dark-color, #212529);
background: transparent;
color: var(--dark-color, #212529);
border-radius: 30px;
padding: 0.8rem 2rem;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
text-decoration: none;
display: inline-block;
box-shadow: none;
}

.btn-outline-dark:hover {
background: var(--dark-color, #212529);
color: white;
box-shadow: 0 4px 15px rgba(33, 37, 41, 0.4);
transform: translateY(-3px);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.glass-card:hover .feature-icon {
    transform: rotate(360deg);
}

.services-section,
.benefits-section,
.pricing-section,
.process-section,
.about-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.services-section,
.benefits-section,
.process-section,
.about-section,
.contact-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,242,245,0.8) 100%);
}

.pricing-section {
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.testimonials-section,
.faq-section {
    background-color: white;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.pricing-card {
    border-radius: 15px;
    padding: 3rem 2rem;
    background: white;
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 60%);
    border-radius: 0 0 0 100%;
    opacity: 0.2;
}

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

.price-period {
    font-size: 1rem;
    color: var(--medium-text);
}

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

.benefit-item i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin: 1rem 0;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Arial, sans-serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(58, 134, 255, 0.1);
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.contact-info {
    padding: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Contact Form Styles */
.contact-form {
    position: relative;
}

.contact-input {
    border: 2px solid rgba(58, 134, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.contact-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.15);
    background: white;
    outline: none;
}

.contact-input::placeholder {
    color: var(--medium-text);
    opacity: 0.8;
}

/* Success Modal Styles */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s ease;
}

.success-overlay.show .success-modal {
    transform: scale(1) translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 191, 166, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 191, 166, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 166, 0);
    }
}

.success-modal h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-modal p {
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer {
    background: #212529;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-title {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

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

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991.98px) {
.navbar {
padding: 0.8rem 1rem;
background-color: transparent;
backdrop-filter: none;
box-shadow: none;
transition: all 0.4s ease;
}

.navbar-scrolled {
background-color: rgba(255, 255, 255, 0.9) !important;
backdrop-filter: blur(10px) !important;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
border-radius: 0.75rem;
margin: 0.5rem 1rem;
}

.navbar-collapse {
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(14px);
border-radius: 0.75rem;
margin-top: 0.5rem;
padding: 1rem;
transition: all 0.3s ease;
}

.image-mobile-space {
margin-bottom: 1.5rem;
}

.hero-title {
font-size: 2.5rem;
}

.section-title {
font-size: 2rem;
}
}

@media (max-width: 767.98px) {
.hero-section {
padding: 4rem 1rem;
text-align: center;
}

.hero-content {
margin-bottom: 2rem;
}

.hero-title {
font-size: 2rem;
line-height: 1.3;
}

.hero-subtitle {
font-size: 1rem;
}

.hero-section .row {
flex-direction: column-reverse;
}



.hero-shapes {
display: none;
}

.btn {
width: 100%;
justify-content: center;
}

.image-mobile-space {
margin-bottom: 1.5rem;
}

.success-modal {
margin: 1rem;
padding: 2rem 1.5rem;
}

.success-modal h3 {
font-size: 1.3rem;
}

.portfolio-card {
height: 220px;
padding: 2rem 1.5rem;
}

.portfolio-logo {
max-width: 160px;
max-height: 100px;
}


.logo-text {
font-size: 2.2rem;
}

/* Mobile responsive sizes */
.portfolio-logo.logo-small {
max-width: 100px;
max-height: 60px;
}

.portfolio-logo.logo-medium {
max-width: 140px;
max-height: 80px;
}

.portfolio-logo.logo-large {
max-width: 180px;
max-height: 100px;
}

.portfolio-logo.logo-xl {
max-width: 220px;
max-height: 120px;
}

.logo-text.text-small {
font-size: 1.6rem !important;
}

.logo-text.text-medium {
font-size: 2.2rem !important;
}

.logo-text.text-large {
font-size: 2.8rem !important;
}

.logo-text.text-xl {
font-size: 3.2rem !important;
}
}
.whatsapp-button {
display: inline-flex;
align-items: center;
gap: 10px;
background-color: #25D366;
color: white;
text-decoration: none;
padding: 12px 20px;
border-radius: 9999px; /* full rounded */
font-size: 0.6rem;
font-weight: 600;
transition: background-color 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
background-color: #1ebc59;
transform: translateY(-2px);
}

.whatsapp-button i {
font-size: 1.2rem;
}

@media (max-width: 480px) {
.whatsapp-button {
width: 100%;
justify-content: center;
font-size: 0.65rem;       /* Larger text */
line-height: 2rem;        /* Prevent tall lines */
padding-top: 0.25rem;  /* Adjust padding to maintain button height */
padding-bottom: 0.25rem;
}
}
/* Cookie Consent Styles */
.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(58, 134, 255, 0.2);
box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease-in-out;
border-radius: 15px 15px 0 0;
}

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

.cookie-consent-content {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.cookie-icon {
font-size: 2.5rem;
color: var(--primary-color);
flex-shrink: 0;
}

.cookie-text {
flex: 1;
}

.cookie-text h4 {
margin: 0 0 0.5rem 0;
color: var(--dark-text);
font-size: 1.1rem;
}

.cookie-text p {
margin: 0;
color: var(--medium-text);
font-size: 0.9rem;
line-height: 1.4;
}

.cookie-buttons {
display: flex;
gap: 0.8rem;
flex-shrink: 0;
}

.btn-cookie {
padding: 0.7rem 1.2rem;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
white-space: nowrap;
}

.btn-cookie.accept {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}

.btn-cookie.accept:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.btn-cookie.necessary {
background: #6c757d;
color: white;
}

.btn-cookie.necessary:hover {
background: #5a6268;
transform: translateY(-2px);
}

.btn-cookie.settings {
background: transparent;
color: var(--dark-text);
border: 2px solid #e0e0e0;
}

.btn-cookie.settings:hover {
border-color: var(--primary-color);
color: var(--primary-color);
}

/* Cookie Modal Styles */
.cookie-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(10px);
z-index: 10001;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.4s ease;
}

.cookie-modal.show {
opacity: 1;
visibility: visible;
}

.cookie-modal-content {
background: white;
border-radius: 15px;
max-width: 500px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
transform: scale(0.8) translateY(50px);
transition: all 0.4s ease;
}

.cookie-modal.show .cookie-modal-content {
transform: scale(1) translateY(0);
}

.cookie-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h3 {
margin: 0;
color: var(--dark-text);
display: flex;
align-items: center;
gap: 0.5rem;
}

.close-modal {
background: none;
border: none;
font-size: 1.2rem;
color: #6c757d;
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
transition: all 0.3s ease;
}

.close-modal:hover {
background: #f8f9fa;
color: var(--primary-color);
}

.cookie-modal-body {
padding: 1.5rem;
}

.cookie-category {
margin-bottom: 1.5rem;
}

.cookie-category-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}

.cookie-category h4 {
margin: 0;
color: var(--dark-text);
font-size: 1rem;
}

.cookie-category p {
margin: 0;
color: var(--medium-text);
font-size: 0.85rem;
line-height: 1.4;
}

/* Toggle Switch Styles */
.toggle-switch {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
}

.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}

.toggle-switch label {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: 0.3s;
border-radius: 24px;
margin: 0;
}

.toggle-switch label:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 3px;
bottom: 3px;
background-color: white;
transition: 0.3s;
border-radius: 50%;
}

.toggle-switch input:checked + label {
background-color: var(--primary-color);
}

.toggle-switch input:checked + label:before {
transform: translateX(26px);
}

.toggle-switch input:disabled + label {
background-color: var(--secondary-color);
cursor: not-allowed;
}

.cookie-modal-footer {
padding: 1.5rem;
border-top: 1px solid #e0e0e0;
text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
.cookie-consent-content {
flex-direction: column;
text-align: center;
gap: 1rem;
padding: 1.5rem 1rem;
}

.cookie-buttons {
flex-direction: column;
width: 100%;
}

.btn-cookie {
justify-content: center;
width: 100%;
}

.cookie-modal-content {
width: 95%;
margin: 1rem;
}
}

@media (max-width: 480px) {
.cookie-text h4 {
font-size: 1rem;
}

.cookie-text p {
font-size: 0.8rem;
}

.btn-cookie {
font-size: 0.8rem;
padding: 0.6rem 1rem;
}
}





/* Portfolio Section Styles */
.portfolio-section {
padding: var(--section-padding);
background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,242,245,0.8) 100%);
}

.portfolio-card {
position: relative;
border-radius: 20px;
padding: 3rem 2rem;
height: 280px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-logo {
position: relative;
z-index: 2;
max-width: 200px;
max-height: 120px;
transition: all 0.4s ease;
}







/* Portfolio Logo Text Styles */


.logo-text {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 2.8rem;
color: white !important;
letter-spacing: -0.5px;
text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
display: block;
white-space: nowrap;
}

.logo-accent {
color: #4CD964 !important;
}
.logo-accent2 {
color: #4652ff !important;
}


/* Text Logo Size Classes */
.logo-text.text-small {
font-size: 2.2rem !important;
}

.logo-text.text-medium {
font-size: 2.8rem !important;
}

.logo-text.text-large {
font-size: 3.4rem !important;
}

.logo-text.text-xl {
font-size: 4rem !important;
}

/* New Pricing Styles */
.pricing-card.popular {
border-color: var(--primary-color);
transform: scale(1.02);
}

.popular-badge {
position: absolute;
top: -1px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 0.5rem 2rem;
border-radius: 0 0 15px 15px;
font-size: 0.85rem;
font-weight: 600;
z-index: 10;
}

.card-header {
padding: 2rem 2rem 1rem;
}

.card-body {
padding: 0 2rem;
}

.card-footer {
padding: 1rem 2rem 2rem;
}

.plan-name {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: var(--dark-text);
}

.plan-description {
color: var(--medium-text);
margin-bottom: 1.5rem;
}

.price-container {
margin-bottom: 1rem;
}

.product-limit {
background: rgba(58, 134, 255, 0.1);
color: var(--primary-color);
padding: 0.5rem 1rem;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 1rem;
}

.benefit-item.missing {
opacity: 0.5;
}

.benefit-item.missing i {
color: #dc3545;
}

/* Pricing Switches */
.pricing-switches {
max-width: 600px;
margin: 0 auto;
}

.switch-container, .period-switch-container {
position: relative;
display: inline-block;
background: white;
border-radius: 50px;
padding: 4px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border: 2px solid rgba(58, 134, 255, 0.1);
}

.switch-wrapper, .period-wrapper {
position: relative;
display: flex;
}

.switch-option, .period-option {
position: relative;
padding: 1rem 2rem;
cursor: pointer;
border-radius: 50px;
transition: all 0.3s ease;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
flex-direction: column;
text-align: center;
min-width: 140px;
}

.switch-container input[type="radio"],
.period-switch-container input[type="radio"] {
display: none;
}

.switch-container input[name="service-type"]:nth-of-type(1):checked ~ .switch-wrapper .switch-option:nth-of-type(1),
.switch-container input[name="service-type"]:nth-of-type(2):checked ~ .switch-wrapper .switch-option:nth-of-type(2) {
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
color: white;
box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.period-switch-container input[name="billing-period"]:nth-of-type(1):checked ~ .period-wrapper .period-option:nth-of-type(1),
.period-switch-container input[name="billing-period"]:nth-of-type(2):checked ~ .period-wrapper .period-option:nth-of-type(2) {
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
color: white;
box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.discount-badge {
background: var(--accent-color);
color: white;
padding: 0.2rem 0.6rem;
border-radius: 20px;
font-size: 0.7rem;
font-weight: 700;
display: block !important;
margin-top: 0.2rem;
}

.annual-note {
margin-top: 0.5rem;
}

/* Make billing period switch smaller */
.period-option {
padding: 0.6rem 1.2rem !important;
min-width: 100px !important;
font-size: 0.9rem;
}

.period-switch-container {
transform: scale(0.85);
}



.price small {
font-size: 1.2rem;
font-weight: 500;
vertical-align: middle;
margin-left: 0.3em;
opacity: 0.85;
color: var(--medium-text);
}

/* Stilizare specială pentru partea cu decimale */
.decimal-part {
font-size: 1.8rem;
font-weight: 400;
opacity: 0.8;
text-decoration: underline;
text-decoration-color: var(--accent-color);
text-decoration-thickness: 2px;
text-underline-offset: 3px;
position: relative;
}

.decimal-part::before {
content: "";
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: rgba(255, 190, 11, 0.1);
border-radius: 4px;
z-index: -1;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}



/* Portfolio Cards */
.portfolio-card {
    min-width: 350px;
    height: 280px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}






.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-accent {
    color: #ffd700;
}

.logo-accent2 {
    color: white;
    font-size: 2rem;
}

/* Overlay Effect */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}



/* Animation pentru scroll infinit */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 6)); /* 350px width + 30px gap per card */
    }
}


/* Responsive */
@media (max-width: 768px) {
    .portfolio-card {
        min-width: 280px;
        height: 220px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .portfolio-logo {
        width: 150px;
    }

    .portfolio-logo.logo-medium {
        width: 140px;
    }

    .portfolio-logo.logo-large {
        width: 180px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-310px * 6));
        }
    }
}

.mobile-img {
  display: none !important;
}

.desktop-img {
  display: block !important;
}

@media (max-width: 767px) {
  .mobile-img {
    display: block !important;
  }

  .desktop-img {
    display: none !important;
  }
}