/* ===============================
RESET
=============================== */

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

html{
scroll-behavior:smooth;
}

body{
background:#f7f7f7;
color:#1e1e1e;
line-height:1.6;
}

/* ===============================
BRAND COLORS
=============================== */

:root{

--primary:#2f5d2f;
--secondary:#f2b01e;
--accent:#4f8f3a;

--light:#f7f7f7;
--dark:#1e1e1e;

}

/* ===============================
NAVBAR
=============================== */
/* ================= LOGO WITH SLOGAN ================= */

.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-text span{
  font-weight:700;
  color:var(--primary);
  font-size:18px;
}

.logo-slogan{
  font-size:11px;
  font-weight:500;
  color:#777;
}
.navbar{
background:white;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 10px rgba(0,0,0,0.06);
border-bottom:3px solid var(--primary);
}

.nav-container{
max-width:1200px;
margin:auto;
padding:15px 5%;
display:flex;
align-items:center;
justify-content:space-between;
}

/* LOGO */

.logo-wrap{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
}

.logo-wrap img{
height:36px;
}

.logo-wrap span{
font-weight:700;
color:var(--primary);
font-size:18px;
white-space:nowrap;
}

/* MENU */

.nav-menu{
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

.nav-menu li a{
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
}

.nav-menu li a:hover{
color:var(--primary);
}

.nav-menu li a:hover::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:100%;
height:3px;
background:var(--secondary);
border-radius:3px;
}

/* CTA */

.nav-btn{
padding:10px 20px;
font-size:14px;
}

/* MOBILE NAV */

.nav-toggle{
display:none;
font-size:26px;
cursor:pointer;
}



/* ===============================
BUTTONS
=============================== */

.btn{
padding:14px 28px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:0.3s;
display:inline-block;
}

.btn-primary{
background:var(--secondary);
color:#1e1e1e;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,0.15);
}

.btn-outline{
border:2px solid white;
color:white;
}

.btn-outline:hover{
background:white;
color:var(--primary);
}

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

.hero{
background:linear-gradient(135deg,var(--primary),var(--accent));
padding:90px 0;
color:white;
}

.hero-container{
width:90%;
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

/* HERO TEXT */

.hero h1{
font-size:48px;
line-height:1.2;
letter-spacing:-0.5px;
margin-bottom:20px;
}

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

.hero p{
font-size:18px;
margin-bottom:30px;
}

/* BUTTONS */

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:25px;
}

/* CONTACTS */

.hero-contact p{
font-size:14px;
margin-bottom:6px;
opacity:0.95;
}

/* HERO IMAGE */

.hero-image{
position:relative;
overflow:hidden;
border-radius:26px;
}

.hero-image img{
width:100%;
height:100%;
max-height:520px;
object-fit:cover;
border-radius:22px;
border:6px solid var(--secondary);
box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.hero-slogan{
  margin-top: 10px;

  font-size: 12px;
  font-weight: 500;

  color: rgba(255,255,255,0.85);

  display: inline-block;
  position: relative;
}

/* subtle underline accent */
.hero-slogan::after{
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background: var(--secondary);
  margin-top: 4px;
  border-radius: 2px;
}
@media (max-width: 600px) {

  .hero-buttons{
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-buttons a{
    width: 100%;
    text-align: center;
  }

}
/* ===============================
SECTION WRAPPER
=============================== */

.section-container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ===============================
WHY CHOOSE
=============================== */

.why-choose{
padding:80px 0;
background:white;
}

.why-choose h2{
text-align:center;
font-size:32px;
margin-bottom:50px;
color:var(--primary);
}

.why-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card{
background:#f9fbff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

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

.why-card h3{
margin-bottom:15px;
color:var(--primary);
font-size:20px;
}

.why-card ul{
list-style:none;
}

.why-card li{
margin-bottom:10px;
font-size:15px;
}

.section-cta{
text-align:center;
margin-top:50px;
}

/* ===============================
PROCESS
=============================== */

.process{
background:#eef1f7;
padding:80px 0;
}

.process h2{
text-align:center;
font-size:32px;
margin-bottom:50px;
color:var(--primary);
}

.process-steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.process-step{
background:white;
padding:30px 20px;
border-radius:18px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.step-number{
display:inline-block;
width:45px;
height:45px;
background:var(--secondary);
color:black;
border-radius:50%;
line-height:45px;
font-weight:bold;
margin-bottom:15px;
}

.process-step h3{
margin-bottom:10px;
color:var(--primary);
}

.process-step p{
color:#555;
}

/* ===============================
WHY GERMANY
=============================== */

.why-germany{
padding:80px 0;
background:white;
}

.why-germany-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.why-germany-text h2{
font-size:32px;
color:var(--primary);
margin-bottom:25px;
}

.why-germany-text ul{
list-style:none;
}

.why-germany-text li{
font-size:18px;
margin-bottom:15px;
}

/* TESTIMONIAL */

.testimonial-card{
background:#f9fbff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stars{
color:var(--secondary);
font-size:20px;
margin-bottom:15px;
}

.testimonial-text{
font-size:18px;
font-style:italic;
margin-bottom:20px;
}

.testimonial-author{
font-weight:bold;
color:var(--primary);
}

/* ===============================
APPLY FORM
=============================== */

.apply{
padding:80px 0;
background:#eef1f7;
}

.apply h2{
text-align:center;
font-size:32px;
color:var(--primary);
margin-bottom:10px;
}

.apply-intro{
text-align:center;
margin-bottom:40px;
color:#555;
}

.apply-form{
max-width:600px;
margin:auto;
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
font-weight:600;
margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
outline:none;
border-color:var(--primary);
}

.form-btn{
width:100%;
margin-top:10px;
}

/* SUCCESS MESSAGE */

.success-message{
max-width:600px;
margin:30px auto 0;
background:#e6f7ec;
border-left:5px solid #2ecc71;
padding:20px;
border-radius:10px;
text-align:center;
}

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

.site-footer{
background:var(--primary);
color:white;
padding:60px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-bottom:30px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
}

.footer-col a{
display:block;
color:white;
font-size:14px;
margin-bottom:10px;
text-decoration:none;
}

.footer-col a:hover{
text-decoration:underline;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
padding-top:15px;
text-align:center;
font-size:13px;
}

/* ===============================
FLOATING WHATSAPP
=============================== */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25d366;
color:white;
padding:14px 20px;
border-radius:40px;
font-weight:600;
text-decoration:none;
box-shadow:0 10px 20px rgba(0,0,0,.2);
z-index:999;
}

/* ===============================
FLOATING CALL
=============================== */

.call-float{
position:fixed;
bottom:95px;
right:25px;
background:var(--secondary);
color:#000;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
text-decoration:none;
box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* ===============================
MOBILE CONTACT BAR
=============================== */

.mobile-contact-bar{
display:none;
position:fixed;
bottom:0;
left:0;
width:100%;
background:white;
border-top:1px solid #eee;
}

.mobile-contact-bar a{
flex:1;
text-align:center;
padding:14px;
text-decoration:none;
color:#333;
font-weight:600;
}

/* ===============================
RESPONSIVE
=============================== */

@media(max-width:1000px){

.why-cards{
grid-template-columns:repeat(2,1fr);
}

.process-steps{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:900px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-buttons{
justify-content:center;
}

.hero-image{
margin-top:40px;
}

.nav-toggle{
display:block;
}

.nav-menu{
position:absolute;
top:65px;
right:0;
background:white;
width:100%;
flex-direction:column;
gap:20px;
padding:30px 0;
display:none;
}

.nav-menu.active{
display:flex;
}

}

@media(max-width:600px){

.why-cards{
grid-template-columns:1fr;
}

.process-steps{
grid-template-columns:1fr;
}

.why-germany-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.mobile-contact-bar{
display:flex;
}

.whatsapp-float,
.call-float{
display:none;
}


/* ================= HIDE MOBILE CONTACT BAR ================= */
@media (max-width: 768px) {
  .mobile-contact-bar {
    display: none !important;
  }
}


}