/*
Theme Name: Cocoa Lux Imp
Description: Custom premium landing page theme for Cocoa Lux Imp - organic cocoa beans from São Tomé & Príncipe. Features responsive design, contact forms, and modern styling for chocolate manufacturers and suppliers.
Author: Ilie Stavenschi
Version: 1.0

This theme is designed specifically for Cocoa Lux Imp business landing page.
*/

/* Reset și stiluri de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(40, 30%, 97%);
    --foreground: hsl(25, 30%, 15%);
    --primary: hsl(25, 45%, 28%);
    --primary-foreground: hsl(40, 30%, 97%);
    --secondary: hsl(35, 25%, 85%);
    --accent: hsl(45, 85%, 55%);
    --accent-foreground: hsl(25, 30%, 15%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
    padding: 24px 0;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo {
    height: 48px;
    width: 48px;
}

.nav-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-foreground);
    transition: color 0.3s ease;
}

.main-nav.scrolled .nav-title {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.main-nav.scrolled .nav-link {
    color: var(--foreground);
}

.nav-contact-btn {
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--accent);
    color: var(--accent-foreground);
}

.nav-contact-btn:hover {
    background: hsl(45, 85%, 50%);
}

.main-nav.scrolled .nav-contact-btn {
    background: var(--primary);
    color: var(--primary-foreground);
}

.main-nav.scrolled .nav-contact-btn:hover {
    background: hsl(25, 45%, 25%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        hsla(25, 45%, 28%, 0.95) 0%, 
        hsla(25, 45%, 28%, 0.8) 50%, 
        hsla(25, 45%, 28%, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.15s both;
}

.hero-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

/* Asigură-te că butonul păstrează styling-ul chiar dacă are și clasa nav-link */
.hero-cta-btn.nav-link {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.hero-cta-btn:hover,
.hero-cta-btn.nav-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* About Section */
.about-section {
    padding: 96px 0;
    background-color: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    margin-bottom: 80px;
}

.about-text {
    space-y: 24px;
    animation: fadeInLeft 1s ease-out;
}

.about-grid.reverse .about-text {
    animation: fadeInRight 1s ease-out;
}

.about-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 24px;
}

.about-paragraph {
    font-size: 18px;
    color: hsl(25, 15%, 45%);
    line-height: 1.75;
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

.brand-name {
    font-weight: 600;
    color: var(--foreground);
}

.about-image {
    position: relative;
    height: 384px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInRight 1s ease-out;
}

.about-grid.reverse .about-image {
    animation: fadeInLeft 1s ease-out;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Cocoa Info Card */
.cocoa-info-card {
    max-width: 1024px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        hsla(25, 45%, 28%, 0.1) 0%, 
        hsla(45, 85%, 55%, 0.1) 100%);
    border-radius: 16px;
    padding: 48px;
    border: 2px solid hsla(45, 85%, 55%, 0.2);
    animation: fadeInUp 1s ease-out;
}

.cocoa-card-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 24px;
    text-align: center;
}

.cocoa-card-subtitle {
    font-size: 18px;
    color: hsl(25, 15%, 45%);
    line-height: 1.75;
    margin-bottom: 32px;
    text-align: center;
}

.cocoa-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid hsla(45, 85%, 55%, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.spec-title {
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 8px;
    font-size: 16px;
}

.spec-text {
    color: hsl(25, 15%, 45%);
    font-size: 14px;
}

/* Animations pentru About */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive pentru About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 64px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 64px;
    }
    
    .about-grid.reverse {
        margin-bottom: 64px;
    }
    
    /* MODIFICARE: Schimbă ordinea pentru mobil */
    .about-grid.reverse .about-image {
        order: 2; /* Imaginea va fi a doua */
    }
    
    .about-grid.reverse .about-text {
        order: 1; /* Textul va fi primul */
    }
    
    .about-image {
        height: 300px;
    }
    
    .cocoa-info-card {
        padding: 32px 24px;
    }
    
    .cocoa-specs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .spec-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-paragraph {
        font-size: 16px;
    }
    
    .cocoa-card-subtitle {
        font-size: 16px;
    }
}

/* Features Section */
.features-section {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--background) 0%, hsl(35, 20%, 96%) 100%);
}

.features-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 64px;
    color: var(--foreground);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 2px solid hsl(35, 20%, 88%);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: hsla(45, 85%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: hsla(45, 85%, 55%, 0.2);
    transform: scale(1.1);
}

.feature-icon .icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    color: hsl(25, 15%, 45%);
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive pentru Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 64px 0;
    }
    
    .features-title {
        margin-bottom: 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .feature-icon .icon {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
}
/* Product Showcase Section */
.product-showcase-section {
    padding: 96px 0;
    background: linear-gradient(180deg, hsl(35, 20%, 96%) 0%, hsl(35, 20%, 94%) 100%);
}

.showcase-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: var(--foreground);
}

.showcase-subtitle {
    text-align: center;
    font-size: 18px;
    color: hsl(25, 15%, 45%);
    line-height: 1.75;
    margin-bottom: 64px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-highlight {
    font-weight: 600;
    color: var(--accent);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    animation: fadeInUp 0.6s ease-out both;
}

.showcase-item:nth-child(1) { animation-delay: 0ms; }
.showcase-item:nth-child(2) { animation-delay: 150ms; }
.showcase-item:nth-child(3) { animation-delay: 300ms; }

.showcase-image-container {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    group: hover;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image-container:hover .showcase-image {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        hsla(25, 45%, 28%, 0.8) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
}

.showcase-image-container:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay-text {
    color: var(--primary-foreground);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

/* Responsive pentru Product Showcase */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .showcase-grid .showcase-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-showcase-section {
        padding: 64px 0;
    }
    
    .showcase-subtitle {
        margin-bottom: 48px;
        font-size: 16px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-grid .showcase-item:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
    
    .showcase-image-container {
        height: 280px;
    }
    
    .showcase-overlay-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .showcase-image-container {
        height: 240px;
    }
    
    .showcase-overlay {
        padding: 16px;
    }
    
    .showcase-overlay-text {
        font-size: 14px;
    }
}

/* Container global */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Supply Chain Section - actualizează */
.supply-chain-section {
    padding: 96px 0;
    background: hsl(35, 20%, 94%);
}

.supply-chain-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.supply-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: var(--foreground);
}

.supply-subtitle {
    text-align: center;
    font-size: 18px;
    color: hsl(25, 15%, 45%);
    line-height: 1.75;
    margin-bottom: 64px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
}

.supply-image-container {
    margin: 0 0 64px 0;
    animation: fadeInUp 1s ease-out;
}

.supply-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.supply-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.supply-option-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid hsl(35, 20%, 88%);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.supply-option-card:nth-child(1) {
    animation-delay: 0.2s;
}

.supply-option-card:nth-child(2) {
    animation-delay: 0.4s;
}

.supply-option-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.supply-option-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 16px;
}

.supply-option-subtitle {
    color: hsl(25, 15%, 45%);
    margin-bottom: 16px;
    font-size: 16px;
}

.supply-option-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supply-option-list li {
    color: hsl(25, 15%, 45%);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive pentru Supply Chain */
@media (max-width: 768px) {
    .supply-chain-section {
        padding: 64px 0;
    }
    
    .supply-subtitle {
        margin-bottom: 48px;
        font-size: 16px;
    }
    
    .supply-image-container {
        margin-bottom: 48px;
        padding: 0 20px;
    }
    
    .supply-options-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .supply-option-card {
        padding: 24px;
    }
    
    .supply-option-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .supply-option-subtitle {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .supply-option-list li {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .supply-image-container {
        padding: 0 16px;
    }
    
    .supply-options-grid {
        padding: 0 16px;
    }
    
    .supply-option-card {
        padding: 20px;
    }
    
    .supply-option-title {
        font-size: 18px;
    }
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background: linear-gradient(180deg, hsl(35, 20%, 94%) 0%, var(--background) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--foreground);
}

.contact-subtitle {
    font-size: 18px;
    color: hsl(25, 15%, 45%);
    line-height: 1.75;
    max-width: 512px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1536px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border: 2px solid hsl(35, 20%, 88%);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid hsl(35, 20%, 90%);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    color: var(--foreground);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit-btn {
    padding: 16px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: hsl(25, 45%, 25%);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 24px;
}

.contact-info-description {
    color: hsl(25, 15%, 45%);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background: hsl(35, 20%, 96%);
    transition: background-color 0.3s ease;
}

.contact-detail-item:hover {
    background: hsl(35, 20%, 94%);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsla(45, 85%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.contact-detail-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.contact-detail-link {
    color: hsl(25, 15%, 45%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px; /* Spațiu între număr și limbi */
    display: block; /* Forțează să fie pe linie separată */
}

.contact-detail-link:hover {
    color: var(--accent);
}

.contact-detail-text {
    color: hsl(25, 15%, 45%);
}

.phone-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.phone-item {
    display: flex;
    flex-direction: column; /* Forțează coloana verticală */
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid hsl(35, 20%, 90%);
    transition: all 0.3s ease;
}

.phone-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-item:last-child {
    border-bottom: none;
}

.phone-languages {
    font-size: 11px;
    color: hsl(25, 15%, 60%);
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 4px; /* Spațiu suplimentar de la număr */
}

/* Minimum Order Card */
.minimum-order-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
}

.minimum-order-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
}

.minimum-order-amount {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1;
}

.minimum-order-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsive pentru Contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 64px 0;
    }
    
    .contact-header {
        margin-bottom: 48px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .form-submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .contact-info-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .minimum-order-amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-detail-item {
        padding: 12px;
    }
    
    .minimum-order-card {
        padding: 20px;
    }
    
    .minimum-order-amount {
        font-size: 32px;
    }
}

/* Responsive pentru telefoane */
@media (max-width: 768px) {
    .phone-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .phone-item {
        padding: 12px;
    }
    
    .contact-detail-link {
        font-size: 15px;
    }
    
    .phone-languages {
        font-size: 12px;
    }
}

/* Actualizare Contact Details pentru înălțime consistentă */
.contact-detail-item {
    display: flex;
    align-items: center; /* Schimbat din flex-start în center */
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background: hsl(35, 20%, 96%);
    transition: background-color 0.3s ease;
    min-height: 72px; /* Adăugat pentru înălțime consistentă */
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 16px;
    max-width: 400px;
    z-index: 1000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-weight: 600;
    color: var(--foreground);
    font-size: 14px;
}

.toast-message {
    color: hsl(25, 15%, 45%);
    font-size: 13px;
    line-height: 1.4;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: hsl(25, 15%, 45%);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.toast-close:hover {
    color: var(--foreground);
}

/* Loading state pentru submit button */
.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form validation styles */
.form-input:invalid,
.form-textarea:invalid {
    border-color: #ef4444;
}

.form-input:valid,
.form-textarea:valid {
    border-color: #10b981;
}

/* Responsive pentru toast */
@media (max-width: 480px) {
    .toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}

/* Footer Section */
.footer-section {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 40px;
    width: 40px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

.footer-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-cert-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Responsive pentru Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 32px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-logo-img {
        height: 32px;
        width: 32px;
    }
    
    .footer-brand-name {
        font-size: 18px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .footer-copyright {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 24px 0;
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-description,
    .footer-link,
    .footer-cert-list li {
        font-size: 13px;
    }
}
