
 :root {
      --primary: #0a6ed1;
      --secondary: #00aeef;
      --dark: #1f2937;
      --light: #ffffff;
      --gray: #f5f7fa;
      --text: #4b5563;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius: 18px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
    padding-top: 0;

}

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.94)),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
      z-index: -2;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(10,110,209,0.05),
        rgba(0,174,239,0.04)
      );
      z-index: -1;
    }

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

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.92);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }
 .nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

   .logo img {
  height: 85px;
  width: auto;
  display: block;
}

    nav {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: 0.3s;
      font-size:1rem;

    }

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

    .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
  transition:0.3s;
  cursor:pointer;
}

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: #095cb0;
    }

   .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 850px;
      margin: auto;
    }

    .hero-badge {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(10,110,209,0.1);
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--text);
      max-width: 700px;
      margin: auto;
    }

    .hero-buttons {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    section {
      padding: 70px 0;
    }

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

    .section-title span {
      color: var(--primary);
      font-weight: 700;
     
      letter-spacing: 1px;
      font-size: 1.5rem;
    }

    .section-title h2 {
      font-size: clamp(1.5rem, 4vw, 3rem);
      margin-top: 14px;
      margin-bottom: 18px;
    }

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

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

  .card {
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  height: 100%;
}

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

    .card-icon {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: rgba(10,110,209,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 22px;
    }

    .card h3,
.article-card h3,
.price-card h3{
  font-size:1.45rem;
  line-height:1.3;
}

    .card p {
      color: var(--text);
    }

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

.about img {
  width: 80%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

    .about-content h2 {
      font-size: 2.7rem;
      margin-bottom: 24px;
    }

    .about-content p {
      margin-bottom: 18px;
      color: var(--text);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 35px;
    }

    .stat {
      background: white;
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .stat h3 {
      color: var(--primary);
      font-size: 2rem;
    }

    .testimonial {
      background: white;
      padding: 32px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .testimonial-stars {
      color: #f7b500;
      margin-bottom: 14px;
      font-size: 1.2rem;
    }

    .testimonial p {
      color: var(--text);
      margin-bottom: 18px;
    }

    .testimonial strong {
      color: var(--dark);
    }

 
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.contact-card,
.contact-form{
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(14px);
  padding:42px;
  border-radius:28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.contact-card{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.contact-item strong{
  display:block;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--primary);
  margin-bottom:10px;
}

.contact-item p{
  font-size:1.5rem;
  line-height:1.5;
  color:var(--dark);
  font-weight:600;
}

.contact-form label{
  display:block;
  margin-bottom:10px;
  font-weight:600;
  color:var(--dark);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(255,255,255,0.7);
  font-family:inherit;
  font-size:1.05rem;
  transition:0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(10,110,209,0.08);
}

.contact-form textarea{
  min-height:180px;
  resize:vertical;
}

.contact-form .btn{
  margin-top:10px;
  width:100%;
  padding:18px;
  border:none;
  border-radius:18px;
  font-size:1.05rem;
  font-weight:700;
  cursor:pointer;
  transition:0.25s;
}

.contact-form .btn:hover{
  transform:translateY(-3px);
}

@media(max-width:900px){

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-item p{
    font-size:1.5rem;
  }

}
@media(max-width:900px){

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-item p{
    font-size:1.5rem;
  }

}

    footer {
      background: #111827;
      color: rgba(255,255,255,0.8);
      padding: 50px 0;
      text-align: center;
      font-size:0.95rem;
    }

    .floating-btn {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 999;
      padding: 16px 22px;
      border-radius: 999px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .fade {
  opacity: 1;
  transform: none;
}

  @media (max-width: 900px) {

  .about,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
  }

 

}
    .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.price-card {
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

.price-card h3 {
  color: #0a6ed1;

  margin-bottom: 25px;
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.1rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row strong {
  font-size: 1.3rem;
  color: #111827;
}

.price-note {
  text-align: center;
  margin-top: 40px;
  color: #d89b00;
  font-weight: 600;
  font-size: 1rem;
}
.booking-btn {

  padding: 20px 42px;
  border-radius: 16px;
}
.section-title span{
  color:var(--primary);
  font-weight:700;
  letter-spacing:2px;
  font-size:1.5rem;
  text-transform:uppercase;
}

.card-image {
  margin-bottom: 24px;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.grid {
  align-items: stretch;
}

.card p,
.about-content p,
.testimonial p,
.section-title p,
.article-card p,
.faq-answer p{
  font-size:1.25rem;
  line-height:1.8;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.article-card {
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.article-card h3 {

  margin-bottom: 18px;
  color: var(--primary);
}

.article-card p {
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 24px;
}

.article-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
}

.archive-card {
  background: linear-gradient(
    135deg,
    rgba(10,110,209,0.08),
    rgba(0,174,239,0.08)
  );
  border: 2px dashed rgba(10,110,209,0.25);
}

.archive-list {
  list-style: none;
  margin-top: 10px;
}

.archive-list li {
  margin-bottom: 12px;
}

.archive-list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.archive-list a:hover {
  color: var(--primary);
}

@media(max-width:1100px){

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

}

@media(max-width:700px){

.article-grid{
  grid-template-columns:1fr;
}

}
#success-message {
  padding: 20px;
  border-radius: 10px;
  background: #e8fff0;
  color: #1a7f37;
  font-weight: bold;
}
.author-box{
  margin-top:5rem;
  padding:2rem;
  display:flex;
  align-items:center;
  gap:2rem;
  background:#fff;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.author-box img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
}

.author-info h3{
  margin-bottom:0.5rem;
}

.author-info span{
  display:block;
  margin-bottom:1rem;
  color:#666;
  font-size:0.95rem;
}

.author-info p{
  margin:0;
  line-height:1.8;
  color:#444;
}

@media(max-width:768px){

  .author-box{
    flex-direction:column;
    text-align:center;
  }
  }
 
.article-hero{
  padding:35px 0 10px;
}

.back-buttons {
  position: fixed;
  top: 20px;
  right: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  z-index: 9999;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 14px;

  background: rgba(10,110,209,0.08);
  text-decoration: none;

  font-weight: 700;
  font-size: 1.1rem;

  color: var(--primary);

  transition: 0.25s;
}


.article-hero h1{
  font-size:clamp(3rem,5vw,5.5rem);
  line-height:0.95;
  margin-bottom:1rem;
  max-width:850px;
  letter-spacing:-2px;
}

.article-lead{
  font-size:1.25rem;
  line-height:1.7;
  max-width:1000px;
  color:var(--dark);
}

.article-page{
  padding:0 0 50px;
}

.article-container{
  max-width:760px;
  margin:auto;
}

.article-container p{
  margin-bottom:1.3rem;
  line-height:1.9;
  color:var(--dark);
  font-size:1.1rem;
}
.article-container blockquote{
  border-left:5px solid var(--primary);
  padding-left:1.5rem;
  margin:2.5rem 0;
  font-size:1.6rem;
  line-height:1.45;
  font-weight:700;
  color:var(--dark);
}

.source-box{
  margin-top:2.5rem;
  padding:1.7rem;
  background:#f7f7f7;
  border-radius:20px;
}

.author-box{
  margin-top:2rem;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
}

/* MOBIILI */

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
    z-index: 2001;
  }

   .logo img {
    height: 85px;
  }
 nav {
  max-height: calc(100vh - 120px);
  overflow-y: auto;

  position: fixed;
  top: 80px;
  right: -100%;

  width: 260px;
  height: auto;

  background: #ffffff;

  padding: 28px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
  gap: 18px;

  transition: right 0.3s ease;

  z-index: 2000;
}

  nav.active {
    right: 20px;
  }

  nav a {
    font-size: 1rem;
      padding: 10px 0;

  }

  .navbar {
    position: relative;
  }

}