/* Reset baz */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header */
header {
    background: #023e8a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

header .logo h1 {
    font-size: 28px;
    color: #ffd60a;
}

header .logo p {
    font-size: 14px;
    color: #ffffff;
}

nav a {
    color: #ffffff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd60a;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(2,62,138,0.8), rgba(2,62,138,0.8)), url('hero-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    border-bottom: 5px solid #ffd60a;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffd60a;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 20px;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.hero button {
    padding: 18px 40px;
    font-size: 18px;
    color: #023e8a;
    background: #ffd60a;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero button:hover {
    background: #ffea00;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 70px 20px;
    text-align: center;
    background: #ffffff;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 45px;
    color: #023e8a;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: #f9f9f9;
    padding: 35px;
    width: 270px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* Pricing Section */
.pricing {
    padding: 70px 20px;
    text-align: center;
    background: #e0f7fa;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 45px;
    color: #023e8a;
}

/* AMELYORASYON GRID RESPONSIVE */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.price-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border-top: 5px solid #ffd60a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #023e8a;
}

.price-card p {
    font-size: 24px;
    color: #ffd60a;
}

/* NOTE / N.B SECTION */
.note {
    margin-top: 25px;
    padding: 18px;
    background: #fff3cd;
    border-left: 6px solid #ffd60a;
    font-size: 16px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
}

/* Entreprises Section */
.entreprises {
    padding: 70px 20px;
    text-align: center;
    background: #ffffff;
}

.entreprises h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #023e8a;
}

.entreprise-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.entreprise-card {
    display: block;
    padding: 18px 28px;
    background: #023e8a;
    color: #ffd60a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.entreprise-card:hover {
    background: #0077b6;
    transform: translateY(-3px);
}

/* Register Section */
.register {
    padding: 70px 20px;
    text-align: center;
    background: #f9f9f9;
}

.register h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #023e8a;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 450px;
    margin: 0 auto;
}

input, select, button {
    padding: 14px;
    font-size: 17px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

input:focus, select:focus {
    outline: none;
    border: 2px solid #ffd60a;
}

button {
    background: #ffd60a;
    color: #023e8a;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #ffea00;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #023e8a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-links a {
    color: #ffd60a;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive amélioré */
@media (max-width: 768px) {

    header{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .cards, .entreprise-list {
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .pricing-container{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px){

.hero{
padding:90px 15px;
}

.hero h2{
font-size:26px;
}

.hero p{
font-size:16px;
}

}











/* ============================= */
/* SERVICE WEB FOBAS */
/* ============================= */

.web-service-fobas{
padding:70px 20px;
background:#f5f7fb;
text-align:center;
}

.web-service-fobas h2{
color:#023e8a;
font-size:34px;
margin-bottom:40px;
}

.web-service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.web-service-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
text-align:left;
border-top:6px solid #ffd60a;
transition:transform .3s;
}

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

.web-service-card h3{
color:#023e8a;
margin-bottom:15px;
}

.web-service-card h4{
margin-top:18px;
color:#333;
}

.web-service-card ul{
margin-top:10px;
padding-left:20px;
}

.web-service-card li{
margin-bottom:6px;
}

.web-service-card .price{
font-size:20px;
font-weight:bold;
color:#ffd60a;
}

.not-included li{
color:#555;
}
