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

/* VARIABLES */
:root {
  --primary: #1f2a6d;
  --secondary: #f5b301;
  --light: #f5f7fb;
  --dark: #1c1c1c;
}

body {
  background: var(--light);
  color: var(--dark);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary), #2f3fa0);
  padding: 80px 0;
  color: white;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

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

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

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

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

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

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--secondary);
  color: black;
}

.btn-primary:hover {
  opacity: 0.85;
}

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

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

/* IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
}

/* CONTACT */
.hero-contact p {
  margin-bottom: 5px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

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

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

/* WHY CHOOSE */
.why-choose {
  padding: 80px 0;
  background: #ffffff;
}

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

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

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

.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;
}

/* CTA */
.section-cta {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-choose h2 {
    font-size: 26px;
  }
}

/* PROCESS SECTION */
.process {
  background: #eef1f7;
  padding: 80px 0;
}

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

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

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

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

/* STEP NUMBER */
.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;
}

/* STEP TEXT */
.process-step h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 20px;
}

.process-step p {
  font-size: 15px;
  color: #555;
}


@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* WHY GERMANY SECTION */
.why-germany {
  padding: 80px 0;
  background: #ffffff;
}

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

/* LEFT TEXT */
.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);
}

@media (max-width: 900px) {
  .why-germany-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-germany-text ul {
    padding-left: 0;
  }
}


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

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

/* COLUMNS */
.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;
}

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

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* APPLY SECTION */
.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;
}

/* FORM */
.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: bold;
  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);
}

/* SUBMIT BUTTON */
.form-btn {
  width: 100%;
  margin-top: 10px;
}


/* APPLY SECTION */
.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;
}

/* FORM */
.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: bold;
  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);
}

/* SUBMIT BUTTON */
.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;
}

.success-message h3 {
  margin-bottom: 10px;
  color: #2ecc71;
}

html {
  scroll-behavior: smooth;
}

/* =======================
   NAVBAR
   ======================= */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

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

/* LOGO */
.nav-logo a {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

/* 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;
}

/* HOVER */
.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;
}

/* TEMP CLICK (JS controls this) */
.nav-menu li a.active {
  color: var(--primary);
}

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

/* CTA BUTTON */
.nav-btn {
  padding: 10px 20px;
  font-size: 14px;
}

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

@media (max-width: 900px) {
  .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;
  }
}

/* LOGO IMAGE */
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* LOGO + TEXT WRAP */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* LOGO IMAGE */
.logo-wrap img {
  height: 36px;
  width: auto;
}

/* BRAND TEXT */
.logo-wrap span {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .logo-wrap img {
    height: 32px;
  }

  .logo-wrap span {
    font-size: 16px;
  }
}
