* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(4, 56, 104, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header .container {
    max-width: 100%;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 100%;
    max-height: 80px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
}

.highlight { 
    color: #de540a; 
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin: 0 35px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active { 
    color: #de540a; 
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../poze/fundal.jpg') center/cover no-repeat;
    transform: scale(1.1);
    filter: brightness(0.6);
    animation: zoomHero 12s ease-in-out infinite alternate;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(44, 44, 44, 0.7));
    z-index: -1;
}

@keyframes zoomHero {
    from { transform: scale(1.1); }
    to { transform: scale(1.18); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeUp 1.2s ease forwards;
}

.booking-bar {
    background-color: #003366;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: left;
}

.booking-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.booking-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-left, 
.booking-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.row .input-group {
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.input-group div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-group div label,
.duration-group label {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.input-group input[type="radio"] {
    margin: 0;
}

.duration-group div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#count-group {
    grid-column: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #de540a, #ff7a1a);
    color: white;
    border: none;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 5px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(222, 84, 10, 0.4);
}

.btn-secondary {
    background-color: #de540a;
    color: white;
    border: none;
    padding: 10px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
}

.services {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.1);
}

.price-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    transform: translateY(0);
    transition: 0.4s ease;
}

.card:hover .price-overlay {
    background: rgba(255,255,255,0.9);
}

.price-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.price-overlay .price {
    margin: 3px 0 0;
    color: #333;
}

.price-overlay .price span,
.price span {
    color: #de540a;
    font-weight: 700;
}

footer {
    background-color: #001a33;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #113355;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

footer a {
    display: block;
    margin-bottom: 5px;
    color: white;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-inputs {
        grid-template-columns: 1fr;
    }
    
    .row, 
    .btn-primary {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #001a33;
        display: none;
        flex-direction: column;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .nav-right {
        display: none;
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .booking-inputs {
        grid-template-columns: 1fr;
    }

    .booking-bar {
        padding: 20px;
    }

    .card-img {
        height: 180px;
    }
}