/* ==========================================
   PRASINO NEO - Main Styles
   Temă: Pădure / Sci-Fi Buttons
   ========================================== */

/* CSS Variables */
:root {
    --culoare-primara: #2d5a27;
    --culoare-secundara: #8fbc8f;
    --culoare-accent: #1a3d17;
    --culoare-text: #333333;
    --culoare-fundal: #f5f9f5;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Open Sans', sans-serif;
    --gradient-forest: linear-gradient(135deg, #1a3d17 0%, #2d5a27 50%, #3d7a37 100%);
    --gradient-light: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    --shadow-soft: 0 5px 20px rgba(45, 90, 39, 0.15);
    --shadow-hover: 0 10px 40px rgba(45, 90, 39, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--culoare-fundal);
    color: var(--culoare-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--culoare-accent);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--gradient-forest);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .contact-info a,
.top-bar .social-links a {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 20px;
}

.top-bar .contact-info a:hover,
.top-bar .social-links a:hover {
    color: white;
}

.top-bar .contact-info i,
.top-bar .social-links i {
    margin-right: 8px;
}

.top-bar .social-links a {
    margin-right: 0;
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.top-bar .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 5px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    transition: var(--transition);
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--culoare-accent);
    background: var(--gradient-forest);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--culoare-text);
    font-weight: 500;
    padding: 10px 18px !important;
    margin: 0 3px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link i {
    margin-right: 6px;
    font-size: 14px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--culoare-primara);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--culoare-primara);
}

/* ==========================================
   SCI-FI BUTTONS
   ========================================== */
.btn-cta,
.btn-hero-primary,
.btn-primary-custom,
.btn-cta-primary {
    background: var(--gradient-forest);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.4);
    transition: var(--transition);
}

.btn-cta::before,
.btn-hero-primary::before,
.btn-primary-custom::before,
.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
    transition: 0.5s;
}

.btn-cta:hover::before,
.btn-hero-primary:hover::before,
.btn-primary-custom:hover::before,
.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta:hover,
.btn-hero-primary:hover,
.btn-primary-custom:hover,
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.5);
    color: white;
}

/* Sci-Fi Glow Effect */
.btn-cta::after,
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(143, 188, 143, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -2;
}

.btn-cta:hover::after,
.btn-hero-primary:hover::after {
    opacity: 1;
    animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.btn-hero-secondary,
.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-hero-secondary:hover,
.btn-cta-secondary:hover {
    background: white;
    color: var(--culoare-primara);
    border-color: white;
    transform: translateY(-3px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-forest);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25 0 Q30 25 25 50 Q20 25 25 0" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23leaves)" width="100" height="100"/></svg>');
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 50px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, #8fbc8f, #c8e6c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.hero-feature i {
    color: #8fbc8f;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-contact {
    margin-top: 30px;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
}

.phone-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: phone-ring 2s infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

.phone-info span {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}

.phone-info strong {
    font-size: 20px;
}

/* Hero Image & Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 28px;
    color: var(--culoare-primara);
}

.floating-card span {
    font-weight: 600;
    color: var(--culoare-accent);
}

.floating-card.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    left: 5%;
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1s;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    background: var(--gradient-forest);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-light);
    color: var(--culoare-primara);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    color: var(--culoare-accent);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    color: #555;
    line-height: 1.8;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-image-container {
    position: relative;
}

.about-image {
    background: var(--gradient-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    max-width: 300px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--culoare-primara);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.experience-badge .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--gradient-light);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--culoare-primara);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 36px;
    color: var(--culoare-primara);
    position: relative;
    z-index: 2;
    line-height: 80px;
}

.service-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    border-radius: 50%;
    transform: scale(1);
    transition: var(--transition);
}

.service-card:hover .icon-bg {
    transform: scale(1.2);
    background: var(--culoare-primara);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--culoare-accent);
}

.service-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.service-hover {
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-hover {
    opacity: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--culoare-primara);
    color: white;
    border-radius: 50%;
    font-size: 18px;
}

.service-link:hover {
    background: var(--culoare-accent);
    color: white;
    transform: rotate(45deg);
}

/* Service Card Large */
.service-card-large {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card-large:hover {
    box-shadow: var(--shadow-hover);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--culoare-primara);
    flex-shrink: 0;
}

.service-card-large:hover .service-card-icon {
    background: var(--culoare-primara);
    color: white;
}

.service-card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card-text {
    color: #666;
    margin-bottom: 15px;
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f7f0;
    color: var(--culoare-primara);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.service-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(45, 90, 39, 0.1);
    line-height: 1;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: var(--gradient-forest);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/><circle cx="50" cy="50" r="30" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin: 0;
}

.cta-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ==========================================
   DELIVERY SECTION
   ========================================== */
.delivery-section {
    background: white;
}

.delivery-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.delivery-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-light);
    color: var(--culoare-primara);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
}

.location-badge i {
    color: var(--culoare-accent);
}

.delivery-note {
    background: #fff8e1;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-bottom: 25px;
    font-size: 14px;
}

.delivery-note i {
    color: #ff9800;
    margin-right: 8px;
}

.delivery-features {
    background: var(--gradient-light);
    border-radius: 20px;
    padding: 30px;
}

.delivery-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.delivery-feature:last-child {
    margin-bottom: 0;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--culoare-primara);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.product-card:hover {
    border-color: var(--culoare-primara);
    transform: translateY(-5px);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--culoare-primara);
}

.product-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--culoare-primara);
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us-list {
    margin-top: 30px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--culoare-primara);
    flex-shrink: 0;
}

.why-us-item:hover .why-us-icon {
    background: var(--culoare-primara);
    color: white;
}

.why-us-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.why-us-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--culoare-primara);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--culoare-accent);
    display: block;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.value-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--culoare-primara);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--culoare-primara);
    color: white;
    transform: rotateY(180deg);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* ==========================================
   MISSION VISION CARDS
   ========================================== */
.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--culoare-primara);
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   COMPANY INFO CARD
   ========================================== */
.company-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.company-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 150px;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-label i {
    color: var(--culoare-primara);
    width: 20px;
}

.detail-value {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.certificate-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-light);
    color: var(--culoare-primara);
    padding: 5px 15px;
    border-radius: 20px;
}

/* ==========================================
   ABOUT PAGE SECTION
   ========================================== */
.about-image-wrapper {
    position: relative;
}

.about-main-image {
    background: var(--gradient-light);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.about-main-image img {
    max-width: 250px;
}

.about-badge-wrapper {
    position: absolute;
    bottom: -20px;
    right: 30px;
}

.about-year-badge {
    background: var(--culoare-primara);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.about-year-badge .year {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.about-year-badge .text {
    font-size: 12px;
    opacity: 0.9;
}

.about-highlights {
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.highlight-item i {
    color: var(--culoare-primara);
    font-size: 18px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--culoare-primara);
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--culoare-primara);
    color: white;
}

.contact-info-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 10px;
}

.contact-link {
    color: var(--culoare-primara);
    font-weight: 600;
    font-size: 18px;
}

.contact-link:hover {
    color: var(--culoare-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--culoare-primara);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.contact-form .input-group-text {
    background: var(--gradient-light);
    border: 2px solid #e0e0e0;
    border-right: none;
    color: var(--culoare-primara);
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h4 i {
    color: var(--culoare-primara);
}

.delivery-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.zone-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-light);
    color: var(--culoare-primara);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.btn-call {
    display: block;
    background: var(--culoare-primara);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-call:hover {
    background: var(--culoare-accent);
    color: white;
}

.btn-facebook {
    display: block;
    background: #1877f2;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.btn-facebook:hover {
    background: #166fe5;
    color: white;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gradient-forest);
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h5 {
    color: white;
    margin: 0;
    font-size: 22px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

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

.footer-social a:hover {
    background: white;
    color: var(--culoare-primara);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--culoare-secundara);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links a i {
    font-size: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--culoare-secundara);
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.designed-by {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.designed-by a {
    color: #8fbc8f;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.designed-by a:hover {
    color: white;
    text-decoration: underline;
}

.designed-by i {
    margin-right: 5px;
    color: #8fbc8f;
}

.certificate-badge {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.certificate-badge i {
    color: #8fbc8f;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--culoare-primara);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-hover);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--culoare-accent);
    color: white;
    transform: translateY(-5px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 36px;
    }

    .navbar-custom .navbar-nav {
        padding: 20px 0;
    }

    .navbar-custom .nav-link {
        padding: 12px 15px !important;
    }

    .btn-cta {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-title {
        margin-top: 30px;
    }

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

    .top-bar .contact-info,
    .top-bar .social-links {
        text-align: center !important;
    }

    .top-bar .contact-info a {
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .company-card {
        padding: 25px;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .detail-label {
        width: 100%;
    }
}

/* ==========================================
   SERVICE CARD WITH IMAGE
   ========================================== */
.service-card-large.has-image {
    flex-direction: column;
}

.service-card-large.has-image .service-card-image {
    width: 100%;
    height: 200px;
    margin: -30px -30px 20px -30px;
    width: calc(100% + 60px);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.service-card-large.has-image .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-large.has-image .service-card-icon {
    position: absolute;
    top: 170px;
    left: 30px;
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.service-card-text ul {
    padding-left: 20px;
    margin: 10px 0;
}

.service-card-text ul li {
    margin-bottom: 8px;
    color: #555;
}

.service-card-text p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-card-text strong {
    color: var(--culoare-accent);
}

.service-card-document {
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0;
}

/* ==========================================
   CERTIFICATES SECTION
   ========================================== */
.certificates-section {
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f5e9 100%);
}

.certificate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.certificate-preview {
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.certificate-card:hover .certificate-preview img {
    transform: scale(1.05);
}

.certificate-preview.pdf {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    flex-direction: column;
    gap: 15px;
}

.certificate-preview.pdf a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #dc3545;
    text-decoration: none;
    transition: var(--transition);
}

.certificate-preview.pdf a:hover {
    transform: scale(1.05);
}

.certificate-preview.pdf i {
    font-size: 60px;
}

.certificate-preview.pdf span {
    font-weight: 600;
    font-size: 14px;
}

.certificate-info {
    padding: 20px;
    text-align: center;
}

.certificate-info h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--culoare-accent);
}

.certificate-info .btn {
    border-radius: 50px;
}

/* ==========================================
   SERVICE DESCRIPTION HTML STYLING
   ========================================== */
.service-card-text h4,
.service-card-text h5 {
    color: var(--culoare-primara);
    margin: 15px 0 10px;
    font-size: 16px;
}

.service-card-text ol {
    padding-left: 20px;
    margin: 10px 0;
}

.service-card-text ol li {
    margin-bottom: 8px;
    color: #555;
}

.service-card-text a {
    color: var(--culoare-primara);
    text-decoration: underline;
}

.service-card-text a:hover {
    color: var(--culoare-accent);
}

.service-card-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.service-card-text table th,
.service-card-text table td {
    padding: 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.service-card-text table th {
    background: var(--gradient-light);
    color: var(--culoare-primara);
    font-weight: 600;
}

.service-card-text blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--culoare-primara);
    padding: 15px 20px;
    margin: 15px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}
