:root {
    --primary-color: #4AAB3D;
    --secondary-color: #3d8a32;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --accent-color: #4AAB3D;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo img {
    height: 50px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.background-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.background-image {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}

.hero-text-container {
    text-align: center;
    color: white;
    z-index: 3;
    padding: 1rem;
}

.hero-logo {
    width: 200px;
    margin-bottom: 20px;
}

.hero-text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text-container p {
    font-size: 1.2rem;
}

/* CTA Buttons */
.cta-button, .primary-cta, .secondary-cta {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    background: linear-gradient(45deg, #27ae60, #219a52);
}

.cta-button .lottie-animation {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.cta-button span {
    white-space: nowrap;
}

.primary-cta {
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.secondary-cta {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover, .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 5rem 5%;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--dark-color);
    margin: 0.5rem 0;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Casa Verde Section */
.casa-verde {
    background: var(--light-color);
    padding: 5rem 5%;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Offers Section */
.offers {
    padding: 5rem 0;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.offers-container {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.offers-container h3 {
    text-align: center;
    color: var(--dark-color);
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    opacity: 0;
}

.offers-container h3.visible {
    animation: titleFadeIn 0.8s forwards ease-out;
    opacity: 1;
    transform: translateY(0);
}

.offers-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: underlineGrow 0.8s ease-out;
}

.offers-container h3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.offers-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    width: 100%;
}

.offers-container img {
    width: 80%;
    max-width: 1000px;
    height: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    opacity: 0;
}

.offers-container img:nth-child(odd).visible {
    animation: slideFromLeft 0.8s forwards ease-out;
}

.offers-container img:nth-child(even).visible {
    animation: slideFromRight 0.8s forwards ease-out;
}

.offers-container img:hover {
    transform: scale(1.02);
    z-index: 1;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .offers-container {
        padding: 0 1rem;
    }
    
    .offers-container h3 {
        font-size: 1.6rem;
        margin: 2rem 0 1.5rem;
        padding: 0.8rem 1.5rem;
        width: 90%;
    }
    
    .offers-row {
        gap: 1rem;
    }
    
    .offers-container img[data-device="phone"] {
        width: 100%;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateX(-100px);
    }
    
    .offers-container img[data-device="phone"]:nth-child(odd).visible {
        animation: slideFromLeft 0.8s forwards ease-out;
    }
    
    .offers-container img[data-device="phone"]:nth-child(even).visible {
        animation: slideFromRight 0.8s forwards ease-out;
    }
}

/* Desktop Layout */
@media (min-width: 769px) {
    .offers-container img[data-device="web"] {
        display: block;
    }

    .offers-container img[data-device="phone"] {
        display: none;
    }
}

.lottie-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

/* Overlay Styles */
.offer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 90%;
    width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.overlay-text {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 60px;
}

.overlay-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.package-contents {
    font-size: 0.9rem;
    margin: 0.8rem 0;
}

.upgrade-options {
    margin-top: 0.6rem;
    padding: 0.4rem;
}

.cta-button.overlay-cta {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
}

@media (max-width: 768px) {
    .overlay-content {
        padding: 1rem;
        max-width: 95%;
        max-height: 85vh;
    }

    .overlay-text {
        font-size: 0.9rem;
    }

    .overlay-text h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .package-contents {
        margin: 0.5rem 0;
    }

    .item-content {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .spec-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .upgrade-options {
        margin-top: 1rem;
    }

    .upgrade-option {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .overlay-cta {
        margin-top: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

.fade-in-item {
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.package-header {
    margin: 0.8rem 0;
}

.item-content {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.spec-button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.spec-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.spec-button i {
    font-size: 0.8rem;
}

.close-overlay {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: white;
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.contact-card {
    padding: 2rem;
    border-radius: 10px;
    background: var(--light-color);
    text-decoration: none;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card .lottie-animation {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-logo {
    width: auto;
    height: 60px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-link i {
    width: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .background-gif {
        width: 100%;
        height: 100%;
        object-position: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .benefits-grid, .info-grid, .contact-options {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        align-items: center;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
}

.about-us {
    position: relative;
    min-height: 100vh;
    background: var(--light-color);
    overflow: hidden;
}

#threejs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-text-container {
    position: relative;
    z-index: 2;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    opacity: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text[data-section="1"].visible {
    animation: slideFromLeft 0.8s ease forwards;
}

.about-text[data-section="2"].visible {
    animation: slideFromRight 0.8s ease forwards;
}

.about-text[data-section="3"].visible {
    animation: fadeInZoom 0.8s ease forwards;
}

.about-text[data-section="4"].visible {
    animation: slideFromBottom 0.8s ease forwards;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.package-contents {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.package-contents li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.package-contents li:last-child {
    border-bottom: none;
}

.docs-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.docs-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.docs-link i {
    font-size: 1.2rem;
}

.spec-button {
    background: #f8f9fa;
    border: 2px solid var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.spec-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.spec-button:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.spec-button:hover i {
    transform: rotate(360deg);
}

.spec-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

.site-button .lottie-animation {
    width: 64px;
    height: 64px;
}

.site-button:hover {
    transform: translateY(-2px);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lottie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottie-popup-container {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ascundem imaginile pentru telefon pe desktop */
@media (min-width: 769px) {
    img[data-device="phone"] {
        display: none !important;
    }
}

/* Ascundem imaginile pentru desktop pe telefon */
@media (max-width: 768px) {
    img[data-device="web"] {
        display: none !important;
    }

    .site-button, .cta-button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .site-button i, .cta-button i {
        font-size: 0.9rem;
    }

    nav {
        padding: 1rem;
    }

    .background-gif {
        display: none;
    }
    
    .background-image {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
}

.cta-button .lottie-animation {
    width: 24px;
    height: 24px;
}

.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 90%;
    width: 800px;
    position: relative;
}

.contact-popup .contact-options {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.contact-popup .contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-popup .contact-card .lottie-animation {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.contact-popup .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    color: #333;
}

@media (max-width: 768px) {
    .contact-popup .contact-options {
        flex-direction: row;
        gap: 1rem;
    }
    
    .contact-popup-content {
        width: 95%;
        padding: 1rem;
    }
    
    .contact-popup .contact-card {
        padding: 1rem;
    }
    
    .contact-popup .contact-card .lottie-animation {
        width: 48px;
        height: 48px;
    }
}

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

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

@keyframes softFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.footer-content .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.footer-content .social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-content .social-links a:hover {
    color: var(--accent-color);
}

.promo-message {
    background: #ffebee;
    padding: 0.8rem;
    border-radius: 6px;
    margin: 0.8rem 0;
}

.promo-message i {
    font-size: 1.2rem;
}

.upgrade-options {
    margin-top: 0.8rem;
    padding: 0.5rem;
}

.upgrade-options h4 {
    margin-bottom: 0.5rem;
}

.upgrade-option {
    padding: 0.2rem 0;
    font-size: 0.8rem;
}

.upgrade-option i {
    color: #2e7d32;
}

.specs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.spec-button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.spec-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.spec-button i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .spec-button {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

.spec-button.inline {
    background: #f8f9fa;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    margin-left: auto;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-button.inline i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.spec-button.inline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-button.inline:hover i {
    transform: rotate(360deg);
}

.spec-button.inline:active {
    transform: translateY(0);
    box-shadow: none;
}

@media (max-width: 768px) {
    .spec-button.inline {
        padding: 0.2rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .spec-button.inline i {
        font-size: 0.7rem;
    }
}

.pdf-download-container {
    text-align: center;
    padding: 2rem 0;
    margin-top: -2rem;
}

.pdf-download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pdf-download-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pdf-download-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pdf-download-button:hover i {
    transform: rotate(360deg);
}

@media (max-width: 768px) {
    .pdf-download-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .about-logo {
        width: 100px;
        margin-bottom: 1rem;
    }
}

.installation-zones {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.installation-zones h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.zones-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: none;
    display: block;
}

.zones-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.zone-item {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.zone-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.zone-item:hover::before {
    opacity: 0.1;
}

.zone-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    z-index: 2;
}

.zone-item span {
    font-weight: 600;
    color: var(--dark-color);
    flex: 1;
    z-index: 2;
}

.zone-item .call-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.zone-item:hover .call-icon {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .zones-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .zone-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .zone-item i {
        font-size: 1rem;
    }

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

    .zone-item:active {
        transform: scale(0.95);
    }
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 1rem;
    z-index: 9999;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(74, 171, 61, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
}

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

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-cookies {
    background: var(--primary-color);
    color: white;
}

.accept-cookies:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.reject-cookies {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.reject-cookies:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .cookie-bar {
        bottom: 10px;
        width: 95%;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .cookie-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .cookie-text {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .cookie-text i {
        font-size: 1rem;
        padding: 0.4rem;
        border-radius: 8px;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .cookie-buttons {
        gap: 0.4rem;
    }
    
    .cookie-buttons button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

.cookie-text p {
    color: #000;
    line-height: 1.5;
}

.whatsapp-button {
    background-color: #25D366 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E !important;
}

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

/* Footer FAQ Styles */
.footer-content .faq-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: #fff;
}

.footer-content .faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.footer-content .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content .faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-content .faq-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-content .faq-header:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-content .faq-header h4 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    flex: 1;
}

.footer-content .faq-header i {
    transition: transform 0.3s ease;
}

.footer-content .faq-header.active i {
    transform: rotate(180deg);
}

.footer-content .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.footer-content .faq-content.active {
    max-height: 1000px;
    padding: 1rem;
}

.footer-content .faq-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-content .faq-content ul,
.footer-content .faq-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.footer-content .faq-content li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-content .faq-guide {
    margin-top: 2rem;
    text-align: center;
}

.footer-content .guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-content .guide-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-content .guide-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 768px) {
    .footer-content .faq-section {
        padding: 1rem;
    }

    .footer-content .faq-section h3 {
        font-size: 1.5rem;
    }

    .footer-content .faq-header h4 {
        font-size: 0.9rem;
    }

    .footer-content .faq-content p,
    .footer-content .faq-content li {
        font-size: 0.85rem;
    }
}

/* Stiluri pentru informațiile companiei din footer */
.company-info {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-info:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.company-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.company-info strong {
    color: var(--primary-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.company-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.company-info a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.company-info a:hover {
    color: var(--primary-color);
}

.company-info p:last-child {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.company-info p:last-child a {
    display: inline-flex;
    align-items: center;
    color: var(--light-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.company-info p:last-child a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .company-info {
        text-align: center;
        padding: 15px 10px;
    }
    
    .company-info p {
        justify-content: center;
        margin: 10px 0;
    }
    
    .company-info p:last-child {
        margin-top: 15px;
        padding-top: 10px;
    }
}