/* 
==============================================
BASE STYLES
==============================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f5;
    padding-top: 80px; /* Spațiu pentru header fix */
}

a {
    text-decoration: none;
    color: #05332B;
    transition: 0.3s;
}

a:hover {
    color: #042420;
}

img {
    max-width: 100%;
}

/* 
==============================================
UTILITY CLASSES
==============================================
*/
.cta-button {
    background-color: #05332B;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
}

.cta-button:hover {
    background-color: #042420;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #05332B;
    margin-bottom: 1rem;
}

.section-title p {
    color: #333;
    font-size: 1.1rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0A5F50;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* 
==============================================
HEADER
==============================================
*/
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
}

.desktop-menu ul li {
    margin-left: 2rem;
}

.desktop-menu ul li a {
    font-weight: 500;
    position: relative;
}

.desktop-menu ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #05332B;
    transition: width 0.3s;
}

.desktop-menu ul li a:hover:after {
    width: 100%;
}

/* Phone Button */
.phone-button {
    display: none;
    background-color: #05332B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.phone-button:hover {
    background-color: #042420;
    color: white !important;
}

/* Phone icon pentru mobil */
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05332B;
    font-size: 1.5rem;
    transition: 0.3s;
    background-color: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
}

.phone-icon:hover {
    color: #042420;
    background-color: transparent;
}

/* 
==============================================
LANGUAGE SWITCHER
==============================================
*/
.language-selector {
    position: relative;
    margin-right: 15px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #05332B;
    padding: 5px 8px;
    border: 1px solid #05332B;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    min-width: 45px;
}

.toggle-arrow {
    font-size: 8px;
    margin-left: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100%;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
    margin-top: 5px;
}

.language-dropdown.show {
    display: block;
}

.lang-option {
    display: block;
    padding: 8px 12px;
    text-align: center;
    color: #05332B;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background-color: #f5f5f5;
}

.lang-option.active {
    background-color: #05332B;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .language-selector {
        display: none; /* Hide desktop language selector on mobile */
    }
}

/* Mobile menu language options */
.menu-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 10px 0;
    list-style: none;
}

.menu-language {
    padding: 15px 20px;
}

.menu-language-label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #05332B;
}

.menu-language-options {
    display: flex;
    gap: 15px;
}

.menu-lang-option {
    padding: 6px 12px;
    border: 1px solid #05332B;
    border-radius: 4px;
    color: #05332B;
}

.menu-lang-option.active {
    background-color: #05332B;
    color: white;
}

/* 
==============================================
HAMBURGER MENU (MOBILE)
==============================================
*/
.hamburger-icon {
    cursor: pointer;
    font-size: 1.5rem;
    color: #05332B;
    z-index: 1100;
    display: block;
}

.menu-toggle {
    display: none;
}

.menu-toggle:checked ~ .hamburger-icon {
    display: none;
}

.menu-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1050;
    padding-top: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.menu-toggle:checked ~ .menu-sidebar {
    left: 0;
}

.menu-items {
    list-style: none;
    padding: 0;
    flex: 0 1 auto;
    overflow-y: auto;
}

.menu-items li {
    border-bottom: 1px solid #f0f0f0;
}

.menu-items li a {
    padding: 15px 20px;
    display: block;
    color: #05332B;
    font-weight: 500;
}

.menu-items li a:hover {
    background-color: #f9f9f9;
}

/* Menu Header and Close Icon */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.close-icon {
    cursor: pointer;
    font-size: 1.5rem;
    color: #05332B;
    z-index: 1100;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1040;
    cursor: pointer;
}

.menu-toggle:checked ~ .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Social icons at bottom of mobile menu */
.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.mobile-social-icons a {
    color: #05332B;
    font-size: 1.5rem;
    transition: 0.3s;
}

.mobile-social-icons a:hover {
    color: #042420;
}

/* Menu social icons */
.menu-social-icons {
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-bottom: auto;
    border-bottom: none;
}

/* Phone button in mobile menu */
.mobile-menu-phone {
    font-weight: 600;
    color: #05332B;
    padding-right: 15px;
}

.mobile-menu-phone i {
    margin-right: 8px;
}

.mobile-menu-phone-button {
    background-color: #05332B;
    color: white !important;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s;
}

.mobile-menu-phone-button:hover {
    background-color: #042420;
}

.mobile-menu-phone-button i {
    margin-right: 8px;
}

/* 
==============================================
HERO SECTION
==============================================
*/
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../images/hero.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/*
==============================================
DESPRE SECTION
==============================================
*/
.despre-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.despre-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.despre-text {
    flex: 1;
    min-width: 300px;
}

.despre-text p {
    margin-bottom: 1rem;
}

.despre-text p:nth-child(2) {
    margin: 1rem 0;
}

.despre-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.despre-image img {
    width: 100%;
    display: block;
}

/*
==============================================
SERVICII SECTION
==============================================
*/
.servicii-section {
    padding: 5rem 5%;
    background-color: #f0f5f0;
}

.servicii-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.serviciu-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.serviciu-image {
    height: 200px;
    overflow: hidden;
}

.serviciu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.serviciu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.serviciu-content h3 {
    color: #05332B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.serviciu-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.serviciu-content .cta-button {
    align-self: flex-start;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .servicii-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .servicii-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .servicii-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .serviciu-image {
        height: 180px;
    }
}

/*
==============================================
BENEFICII SECTION
==============================================
*/
.beneficii-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.beneficii-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.beneficiu-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.beneficiu-card h3 {
    color: #05332B;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* 
==============================================
AFECȚIUNI SECTION
==============================================
*/
.afectiuni-section {
    padding: 5rem 5%;
    background-color: #f0f5f0;
}

.afectiuni-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.afectiune-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.afectiune-image {
    height: 220px;
    overflow: hidden;
}

.afectiune-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.afectiune-content {
    padding: 2rem;
}

.afectiune-content h3 {
    color: #05332B;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.afectiune-content ul {
    list-style-type: none;
    padding-left: 0;
}

.afectiune-content ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.afectiune-content ul li span {
    position: absolute;
    left: 0;
    color: #05332B;
}

.afectiuni-cta {
    text-align: center;
    margin-top: 3rem;
}

.afectiuni-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.afectiuni-cta .cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* 
==============================================
CLIENTI SECTION
==============================================
*/
.clienti-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
}

.clients-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.client-types-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client-type-card {
    background-color: #f8f8f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.client-type-icon {
    font-size: 2.5rem;
    color: #05332B;
    margin-bottom: 1.5rem;
    text-align: center;
}

.client-type-content h3 {
    color: #05332B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.client-type-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.client-cta {
    text-align: center;
    margin-top: 3rem;
}

.client-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* 
==============================================
TEAM SECTION / SWIPER
==============================================
*/
.team-section {
    padding: 5rem 5%;
    overflow: hidden;
}

.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Space for navigation buttons outside */
}

.team-swiper {
    overflow: hidden;
    padding: 20px 0; /* Add padding to show box shadow */
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-img {
    height: 300px;
    overflow: hidden;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 1.5rem;
}

.team-member-info h3 {
    color: #05332B;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-member-info .position {
    color: #0A5F50;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Navigation Controls */
.team-carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    left: 0;
    pointer-events: none; /* Important - allows clicks to pass through to buttons */
}

.nav-btn {
    background-color: rgba(5, 51, 43, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    pointer-events: auto; /* Re-enable clicks on buttons */
}

.nav-btn:hover {
    background-color: rgba(5, 51, 43, 0.9);
}

.prev-btn {
    margin-left: 0;
}

.next-btn {
    margin-right: 0;
}

/* 
==============================================
TESTIMONIALE / SWIPER
==============================================
*/
.testimonials {
    background-color: #f0f5f0;
    padding: 5rem 5%;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-slider {
    margin-top: 3rem;
    position: relative;
}

.testimonial-swiper {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.client-info h4 {
    color: #05332B;
    margin-bottom: 0.3rem;
}

.client-info span {
    color: #666;
}

/* Swiper pagination styles */
.swiper-pagination {
    position: static;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #05332B;
}

.testimonial-pagination {
    position: static !important;
}

/* 
==============================================
CONTACT
==============================================
*/
.contact {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.form-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    margin: 0 auto;
}

.form-card h3 {
    color: #05332B;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #05332B;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #042420;
}

.form-toggle {
    text-align: center;
    margin-top: 20px;
}

.form-toggle p {
    margin-bottom: 10px;
    color: #666;
}

.booking-link {
    color: #05332B;
    font-weight: bold;
    text-decoration: underline;
}

/* 
==============================================
BOOKING POPUP
==============================================
*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    z-index: 2001;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.popup-header h3 {
    margin: 0;
    color: #05332B;
}

.popup-close {
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.popup-close:hover {
    color: #05332B;
}

.popup-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

#bookingFrame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 
==============================================
FOOTER
==============================================
*/
footer {
    background-color: #05332B;
    color: white;
    padding: 3rem 0;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-main {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: space-between;
}

.footer-contact .contact-info {
    flex: 1;
    min-width: 300px;
    color: white;
    text-align: left;
}

.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
    text-align: left;
}

.footer-contact h4 {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 0.7rem;
}

.footer-contact a {
    color: white;
    text-decoration: underline;
}

.footer-contact .map {
    flex: 1;
    min-width: 300px;
    margin-top: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.hours-list li {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
    justify-content: flex-start;
}

.social-icons a {
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #f0f5f0;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 1rem;
    text-align: center;
}

/* 
==============================================
RESPONSIVE
==============================================
*/
@media (max-width: 1200px) {
    .beneficii-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .client-types-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-carousel-container {
        padding: 0 30px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 992px) {
    /* Header/Menu responsive */
    .desktop-menu {
        display: block;
    }
    
    .phone-button {
        display: inline-block;
    }
    
    .hamburger-menu {
        display: none;
    }
    
    .phone-icon {
        display: none;
    }
    
    .logo {
        margin-right: 2rem;
    }
    
    /* Beneficii grid */
    .beneficii-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Client types grid */
    .client-types-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .desktop-menu {
        display: block;
    }
    
    .phone-button {
        display: inline-block;
    }
    
    .hamburger-menu {
        display: none;
    }
    
    .phone-icon {
        display: none;
    }
    
    .logo {
        margin-right: 2rem;
    }
}


@media (max-width: 991px) {
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    
    .header-container {
        padding: 0.8rem 5%;
        justify-content: space-between;
    }
    
    /* Reverse header responsive behavior */
    .desktop-menu {
        display: none;
    }
    
    .phone-button {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .phone-icon {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Afectiuni Grid */
    .afectiuni-container {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive */
    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact .contact-info {
        width: 100%;
    }
    
    .footer-contact .map {
        width: 100%;
    }
    
    /* Team carousel adjustments */
    .team-carousel-container {
        padding: 0 25px;
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .team-member-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    /* Hero section */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    /* Beneficii grid */
    .beneficii-grid {
        grid-template-columns: 1fr;
    }
    
    /* Client types grid */
    .client-types-container {
        grid-template-columns: 1fr;
    }
    
    /* Team carousel */
    .team-carousel-container {
        padding: 0 20px;
    }
    
    .nav-btn {
        width: 30px;
        height: 30px;
    }
    
    .team-member-img {
        height: 200px;
    }
    
    /* Popup adjustments */
    .popup-container {
        width: 95%;
        height: 90vh;
    }
}