/* =========================================
   BALALEM v2 — Modern Clean Design
   Style inspired by Lovable UI
========================================= */

/* ---------- Google Fonts ----------
Fraunces (headings) + Nunito (text)
------------------------------------- */

:root{

    --bg:#ffffff;
    --section:#F8F5EF;

    --primary:#7FA37C;
    --primary-dark:#6B8F69;

    --accent:#D97A5A;
    --accent-dark:#C96849;

    --text:#2E2E2E;
    --muted:#6B7280;

    --border:#E9E3DA;

    --shadow:0 18px 45px rgba(0,0,0,.07);

    --radius:22px;
}

/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Nunito", sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* ---------- HEADINGS ---------- */

h1,h2,h3{
    font-family:"Fraunces", serif;
    letter-spacing:-0.02em;
}

/* =========================================
   HEADER
========================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid var(--border);
}

.header .container{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:22px;
    color:var(--primary);
}

.logo img{
    width:42px;
}

/* MENU */

.menu{
    display:flex;
    gap:28px;
    list-style:none;
}

.menu a{
    font-weight:600;
    color:var(--text);
    transition:.3s;
}

.menu a:hover{
    color:var(--accent);
}

/* RIGHT */

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.language button{
    border:1px solid var(--border);
    background:#fff;
    padding:6px 12px;
    border-radius:999px;
    font-weight:700;
}

.language .active{
    background:var(--primary);
    color:#fff;
    border:none;
}

.whatsapp-btn{
    background:var(--primary);
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
}

/* BURGER */

.burger{
    display:none;
    flex-direction:column;
    gap:5px;
}

.burger span{
    width:26px;
    height:3px;
    background:#333;
    border-radius:5px;
}

/* =========================================
   HERO
========================================= */

.hero{
    padding:160px 0 90px;
    background:linear-gradient(180deg,#fff,#F8F5EF);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:18px;
}

.hero h1 span{
    color:var(--accent);
}

.hero p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:25px;
}

/* BUTTON */

.main-button{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    padding:14px 26px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 15px 30px rgba(217,122,90,.25);
    transition:.3s;
}

.main-button:hover{
    background:var(--accent-dark);
    transform:translateY(-2px);
}

/* HERO IMAGE */

.hero-image img{
    border-radius:28px;
    box-shadow:var(--shadow);
}

/* =========================================
   SECTIONS
========================================= */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:44px;
    margin-bottom:12px;
}

.section-title p{
    color:var(--muted);
    max-width:700px;
    margin:auto;
}

/* =========================================
   CARDS (WHY CHOOSE)
========================================= */

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:28px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

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

.icon{
    font-size:38px;
    margin-bottom:15px;
}

/* =========================================
   REVIEWS
========================================= */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.review{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.review p{
    margin:12px 0;
    color:var(--muted);
}

/* =========================================
   CONTACTS
========================================= */

.contacts-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    background:var(--section);
    padding:30px;
    border-radius:26px;
}

.map iframe{
    width:100%;
    height:350px;
    border-radius:26px;
}

/* =========================================
   FOOTER
========================================= */

footer{
    text-align:center;
    padding:30px;
    background:#1f1f1f;
    color:#fff;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

.container{width:90%;}

.header .container{height:70px;}

.logo img{width:36px;}

.hero{padding:120px 0 60px;}

.hero-grid{grid-template-columns:1fr;gap:35px;text-align:center;}

.hero h1{font-size:36px;}

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

.section-title h2{font-size:32px;}

section{padding:60px 0;}

.advantages-grid,
.reviews-grid,
.contacts-grid{grid-template-columns:1fr;}

.card,
.review,
.contact-info{padding:22px;}

.menu{display:none;}

.burger{display:flex;}

.header-right{display:none;}

}

@media(max-width:430px){

.hero h1{font-size:30px;}

.section-title h2{font-size:28px;}

.container{width:92%;}

}
