/* Reset și Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    padding-top: 80px; /* Space pentru fixed header */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    height: 80px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #2563eb;
}

.logo-link i {
    font-size: 1.5rem;
    color: #2563eb;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-header:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 0.25rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: #64748b;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .btn-header {
        padding: 0.675rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-container {
        height: 70px;
        padding: 1rem;
    }
    
    .logo-link {
        font-size: 1.125rem;
    }
    
    .logo-link i {
        font-size: 1.25rem;
    }
    
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #e2e8f0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-header {
        padding: 0.625rem 1.125rem;
        font-size: 0.8rem;
        gap: 0.375rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem;
    }
    
    .logo-link {
        font-size: 1rem;
    }
    
    .btn-header {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 1rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem;
        min-height: 90vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        max-width: none;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero {
        padding: 1rem 0.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .hero-image img {
        border-radius: 0.75rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 0.675rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .btn-primary,
    .hero-image img {
        transition: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .hero-image img:hover {
        transform: none;
    }
}

/* Focus States */
.btn-primary:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Introducere Section */
.introducere {
    padding: 6rem 1rem;
    background: #ffffff;
}

.introducere-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.introducere-content {
    max-width: 600px;
}

.introducere-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.introducere-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.beneficii-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.beneficiu {
    text-align: left;
}

.beneficiu-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.beneficiu-icon i {
    font-size: 1.5rem;
    color: white;
}

.beneficiu-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.beneficiu-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.introducere-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.introducere-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive pentru Introducere */
@media (max-width: 1024px) {
    .introducere {
        padding: 5rem 1rem;
    }
    
    .introducere-container {
        gap: 3rem;
    }
    
    .introducere-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .introducere {
        padding: 4rem 1rem;
    }
    
    .introducere-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .introducere-content {
        max-width: none;
    }
    
    .introducere-title {
        font-size: 2.25rem;
    }
    
    .introducere-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .beneficii-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .introducere {
        padding: 3rem 0.75rem;
    }
    
    .introducere-title {
        font-size: 2rem;
    }
    
    .introducere-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .beneficii-grid {
        gap: 2rem;
    }
    
    .beneficiu-icon {
        width: 3rem;
        height: 3rem;
        margin: 0 auto 1rem;
    }
    
    .beneficiu-icon i {
        font-size: 1.25rem;
    }
    
    .beneficiu-title {
        font-size: 1.125rem;
    }
    
    .beneficiu-text {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .hero-cta {
        gap: 0.75rem;
    }
}

@media (max-width: 360px) {
    .introducere-title {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.675rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Tutorial Section */
.tutorial {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tutorial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tutorial-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.tutorial-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step-left {
    grid-template-areas: "content image";
}

.step-right {
    grid-template-areas: "image content";
}

.step-content {
    grid-area: content;
    max-width: 500px;
}

.step-image {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number i {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.step-number span {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.step-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-image img:hover {
    transform: scale(1.05);
}

/* Responsive pentru Tutorial */
@media (max-width: 1024px) {
    .tutorial {
        padding: 5rem 1rem;
    }
    
    .tutorial-header {
        margin-bottom: 3rem;
    }
    
    .tutorial-title {
        font-size: 2.5rem;
    }
    
    .step {
        gap: 2.5rem;
    }
    
    .tutorial-steps {
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    .tutorial {
        padding: 4rem 1rem;
    }
    
    .tutorial-title {
        font-size: 2.25rem;
    }
    
    .tutorial-description {
        font-size: 1rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .step-left,
    .step-right {
        grid-template-areas: 
            "image"
            "content";
    }
    
    .step-content {
        max-width: none;
    }
    
    .step-number {
        justify-content: center;
    }
    
    .tutorial-steps {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .tutorial {
        padding: 3rem 0.75rem;
    }
    
    .tutorial-header {
        margin-bottom: 2.5rem;
    }
    
    .tutorial-title {
        font-size: 2rem;
    }
    
    .tutorial-description {
        font-size: 0.95rem;
    }
    
    .step {
        gap: 1.5rem;
    }
    
    .step-number i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .step-number span {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .tutorial-steps {
        gap: 2.5rem;
    }
}

@media (max-width: 360px) {
    .tutorial-title {
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.375rem;
    }
    
    .step-number span {
        font-size: 1.75rem;
    }
}

/* Blog Section */
.blog {
    padding: 6rem 1rem;
    background: #ffffff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.blog-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.blog-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.blog-slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.blog-slider-btn:hover:not(:disabled) {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.blog-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #94a3b8;
    color: #94a3b8;
}

.blog-slider-dots {
    display: flex;
    gap: 0.75rem;
}

.blog-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-slider-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.blog-slider-dot:hover {
    background: #64748b;
}

.blog-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f8fafc;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-time i {
    font-size: 0.75rem;
    color: #2563eb;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #1d4ed8;
    gap: 0.75rem;
}

.blog-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(2px);
}

/* Responsive pentru Blog */
@media (max-width: 1024px) {
    .blog {
        padding: 5rem 1rem;
    }
    
    .blog-header {
        margin-bottom: 3rem;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-slider-controls {
        gap: 1.5rem;
    }
    
    .blog-slider-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 4rem 1rem;
    }
    
    .blog-title {
        font-size: 2.25rem;
    }
    
    .blog-description {
        font-size: 1rem;
    }
    
    .blog-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-meta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 3rem 0.75rem;
    }
    
    .blog-header {
        margin-bottom: 2.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-description {
        font-size: 0.95rem;
    }
    
    .blog-slider {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-article-title {
        font-size: 1.125rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-article-title {
        font-size: 1rem;
    }
}

/* Galerie Section */
.galerie {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.galerie-container {
    max-width: 1200px;
    margin: 0 auto;
}

.galerie-header {
    text-align: center;
    margin-bottom: 4rem;
}

.galerie-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.galerie-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galerie-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.galerie-item a {
    display: block;
    text-decoration: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.galerie-item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galerie-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galerie-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.galerie-item a:hover .galerie-image img {
    transform: scale(1.05);
}

.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-item a:hover .galerie-overlay {
    opacity: 1;
}

.galerie-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-align: center;
}

.galerie-info i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.galerie-info span {
    font-size: 1.125rem;
    font-weight: 600;
}

.galerie-actions {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-load-more:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-load-more:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Responsive pentru Galerie */
@media (max-width: 1024px) {
    .galerie {
        padding: 5rem 1rem;
    }
    
    .galerie-header {
        margin-bottom: 3rem;
    }
    
    .galerie-title {
        font-size: 2.5rem;
    }
    
    .galerie-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .galerie {
        padding: 4rem 1rem;
    }
    
    .galerie-title {
        font-size: 2.25rem;
    }
    
    .galerie-description {
        font-size: 1rem;
    }
    
    .galerie-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .btn-load-more {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .galerie {
        padding: 3rem 0.75rem;
    }
    
    .galerie-header {
        margin-bottom: 2.5rem;
    }
    
    .galerie-title {
        font-size: 2rem;
    }
    
    .galerie-description {
        font-size: 0.95rem;
    }
    
    .galerie-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .galerie-info i {
        font-size: 1.5rem;
    }
    
    .galerie-info span {
        font-size: 1rem;
    }
    
    .btn-load-more {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .galerie-title {
        font-size: 1.75rem;
    }
    
    .btn-load-more {
        padding: 0.675rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    max-width: 600px;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.servicii-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.serviciu {
    text-align: left;
}

.serviciu-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.serviciu-icon i {
    font-size: 1.25rem;
    color: white;
}

.serviciu-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.serviciu-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.02);
}

/* Responsive pentru CTA */
@media (max-width: 1024px) {
    .cta {
        padding: 5rem 1rem;
    }
    
    .cta-content {
        gap: 3rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 1rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text {
        max-width: none;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .servicii-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .serviciu-icon {
        margin: 0 auto 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 3rem 0.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .servicii-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .serviciu-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .serviciu-icon i {
        font-size: 1rem;
    }
    
    .serviciu-title {
        font-size: 1rem;
    }
    
    .serviciu-text {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
}

@media (max-width: 360px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .servicii-grid {
        gap: 1.25rem;
    }
}

/* Testimoniale Section */
.testimoniale {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimoniale-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimoniale-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimoniale-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.testimoniale-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-btn:hover:not(:disabled) {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #94a3b8;
    color: #94a3b8;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #64748b;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 2rem;
    font-size: 4rem;
    color: #2563eb;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 2rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: #2563eb;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.author-position {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Responsive pentru Testimoniale */
@media (max-width: 1024px) {
    .testimoniale {
        padding: 5rem 1rem;
    }
    
    .testimoniale-header {
        margin-bottom: 3rem;
    }
    
    .testimoniale-title {
        font-size: 2.5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .slider-controls {
        gap: 1.5rem;
    }
    
    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimoniale {
        padding: 4rem 1rem;
    }
    
    .testimoniale-title {
        font-size: 2.25rem;
    }
    
    .testimoniale-description {
        font-size: 1rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-position {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimoniale {
        padding: 3rem 0.75rem;
    }
    
    .testimoniale-header {
        margin-bottom: 2.5rem;
    }
    
    .testimoniale-title {
        font-size: 2rem;
    }
    
    .testimoniale-description {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 360px) {
    .testimoniale-title {
        font-size: 1.75rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 4rem 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo i {
    color: #2563eb;
    font-size: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    margin-top: 1.5rem;
}

.slogan-text {
    font-family: 'Dancing Script', cursive, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-style: italic;
    color: #94a3b8;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
    position: relative;
}

.slogan-text::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 0.125rem;
}

.footer-seo-section {
    border-top: 1px solid #334155;
    padding: 2rem 0;
}

.footer-seo {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-seo-text {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.anpc-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
}

.anpc-link {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.anpc-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.anpc-logo {
    height: 37px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.anpc-link:hover .anpc-logo {
    filter: brightness(1);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.contact-item i {
    width: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-credit i {
    color: #94a3b8;
    font-size: 0.75rem;
}

.qos-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.qos-link:hover {
    color: #e2e8f0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #2563eb;
}

/* Responsive pentru Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 3rem 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-slogan {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0.75rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 0;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-seo-section {
        padding: 1.5rem 0.75rem;
    }
    
    .footer-seo-title {
        font-size: 1.25rem;
    }
    
    .footer-seo-text {
        font-size: 0.9rem;
    }
    
    .anpc-logos {
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .anpc-logo {
        height: 31px;
    }
}

@media (max-width: 360px) {
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .slogan-text {
        font-size: 1rem;
    }
    
    .anpc-logos {
        gap: 1rem;
        flex-direction: column;
    }
    
    .anpc-logo {
        height: 27px;
    }
}

/* Print Styles */
@media print {
    .hero {
        min-height: auto;
        background: white;
        padding: 1rem;
    }
    
    .introducere {
        padding: 2rem 1rem;
    }
    
    .tutorial {
        padding: 2rem 1rem;
        background: white;
    }
    
    .blog {
        padding: 2rem 1rem;
    }
    
    .galerie {
        padding: 2rem 1rem;
    }
    
    .cta {
        padding: 2rem 1rem;
        background: white;
    }
    
    .testimoniale {
        padding: 2rem 1rem;
        background: white;
    }
    
    .footer {
        background: white;
        color: black;
        padding: 1rem;
        border-top: 1px solid #ccc;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-load-more {
        display: none;
    }
    
    .step-image img {
        max-width: 200px;
    }
    
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .galerie-overlay {
        display: none;
    }
    
    .servicii-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slogan-text::before {
        display: none;
    }
    
    .anpc-logos {
        display: none;
    }
}
