body {
    background-color: #f4f7f6;
    color: #444;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-color {
    background-color: #26a69a;
}

.main-text-color {
    color: #26a69a;
}

.btn-search {
    background-color: #0099cc;
    color: #ffffff;
    border-color: #008bb8;
}

.btn-search:hover {
    background-color: #007fad;
    color: #ffffff;
    border-color: #007fad;
}

/* Features Section */
.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(0,0,0,0.05) !important;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #eef3f3;
}

.testimonials-section .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s ease-in-out;
}

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

.testimonials-section .testimonial-img {
    width: 80px !important; /* Forțează lățimea */
    height: 80px !important; /* Forțează înălțimea */
    border: 3px solid #fff;
    object-fit: cover; /* Asigură că imaginea acoperă zona fără a fi distorsionată */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Adaugă o umbră subtilă */
}

/* Styles from comanda.php */
.package-card {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-color: #dee2e6;
}
.package-card.selected {
    border-color: #0d6efd !important;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25) !important;
    background-color: #f8f9fa;
    transform: translateY(-5px);
}
.package-description {
    min-height: 110px;
}
.ribbon {
    position: absolute;
    top: 25px;
    right: -45px;
    transform: rotate(45deg);
    background-color: #ffc107;
    color: #212529;
    width: 160px;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
    text-transform: uppercase;
}

/* Styles from index.php */
@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 84, 166, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 84, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 84, 166, 0); }
}
.btn-pulse { animation: pulse-blue 2s infinite; }
.btn-hover-scale { transition: transform 0.3s ease; }
.btn-hover-scale:hover { transform: scale(1.05); }

/* Styles from menu.php */
.firmeo-brand-link { transition: all 0.3s ease; }
.firmeo-brand-link:hover {
    color: #e2e6ea !important;
    text-decoration: underline !important;
}

/* Styles from footer.php */
.bi-twitter-x::before {
    content: "\F662"; /* Codul pentru iconița X de la Bootstrap Icons */
}
