/* ===== BODY & GENERAL ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg,#f1f5f9,#ffffff);
    color: #1e293b;
}

/* ===== BANNER ===== */
.banner {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-bottom: 8px solid #2563eb;
}

/* TITLURI */
.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin: 0;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #0f172a;
}

/* ===== BUTOANE ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    margin: 10px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s;
    font-weight: 600;
}

/* Buton principal */
.call {
    background: #2563eb;
}
.call:hover {
    background: #1d4ed8;
}

/* WhatsApp – adaptat premium */
.whatsapp {
    background: #0f172a;
}
.whatsapp:hover {
    background: #1e293b;
}

/* BENEFIT BOX */
.benefit-box {
    display: inline-block;
    width: 280px;
    margin: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}
.benefit-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.15);
}

.benefit-box h3 {
    font-family: 'Playfair Display', serif;
    color: #2563eb;
}

/* HIGHLIGHT */
.highlight {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 25px;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    padding: 35px;
    text-align: center;
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

header {
    background: #0f172a;
    color: white;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #38bdf8;
}

.hero {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
}

section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px 0;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background: #38bdf8;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
}

/* COLOANE */
.column {
    background: white;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

.column p {
    color: #1e293b;
}

/* SECȚIUNI */
.section.bg-light {
    background: linear-gradient(135deg,#f8fafc,#e2e8f0);
}