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

html{
  scroll-behavior:smooth;
}

body{
  background:#fff;
  overflow-x:hidden;
}

section{
  width:100%;
}

/* NAVBAR */

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 60px;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #eee;
  box-shadow:0 4px 18px rgba(0,0,0,0.04);
}

.logo{
  font-size:22px;
  font-weight:600;
  color:#6a8cff;
  text-decoration:none;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  font-weight:500;
  transition:color .25s ease;
}

.nav-links a:hover{
  color:#6a8cff;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
}

.phone{
  font-size:15px;
  color:#333;
  text-decoration:none;
  font-weight:500;
  transition:color .25s ease;
}

.phone:hover{
  color:#6a8cff;
}

.start-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ff6b7c;
  color:white;
  text-decoration:none;
  padding:11px 18px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:.25s ease;
  box-shadow:0 8px 18px rgba(255,107,124,0.18);
}

.start-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(255,107,124,0.28);
}

.hamburger{
  display:none;
  width:42px;
  height:42px;
  border:none;
  background:none;
  cursor:pointer;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
}

.hamburger span{
  display:block;
  width:24px;
  height:2px;
  background:#222;
  border-radius:999px;
  transition:.25s ease;
}

/* HERO */

.hero{
  min-height:85vh;
  background:url("https://images.unsplash.com/photo-1584515933487-779824d29309") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(to right, rgba(0,0,0,0.62), rgba(0,0,0,0.35), rgba(0,0,0,0.12));
}

.hero-content{
  position:relative;
  color:white;
  max-width:650px;
  padding-left:80px;
  z-index:2;
}

.badge{
  display:inline-block;
  background:#ff6b7c;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing:.5px;
  box-shadow:0 10px 25px rgba(255,107,124,0.22);
}

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

.hero p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
  color:rgba(255,255,255,0.92);
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.25s ease;
}

.primary-btn{
  background:#ff6b7c;
  border:none;
  padding:14px 28px;
  color:white;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(255,107,124,0.18);
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.8);
  padding:14px 28px;
  color:white;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(255,107,124,0.3);
}

.secondary-btn:hover{
  background:#fff;
  color:#222;
}

/* SERVICES */

.services-section{
  padding:110px 60px;
  background:#f8f9fc;
}

.section-intro{
  max-width:760px;
  margin:0 auto 60px;
  text-align:center;
}

.section-intro.narrow{
  max-width:680px;
}

.eyebrow{
  color:#6f8ef7;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.section-intro h2,
.about-left h2,
.why-title h2,
.faq-wrap h2,
.cta-inner h2,
.contact-card h2{
  font-size:48px;
  line-height:1.15;
  color:#171717;
  margin-bottom:18px;
}

.section-desc{
  color:#748093;
  font-size:18px;
  line-height:1.7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1200px;
  margin:0 auto;
}

.service-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

.service-image{
  position:relative;
  height:260px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:24px;
}

.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
}

.service-image h3{
  position:relative;
  color:#fff;
  font-size:28px;
  line-height:1.2;
  z-index:2;
}

.service-body{
  padding:28px 24px;
}

.service-body p{
  color:#6f7886;
  line-height:1.7;
  margin-bottom:20px;
}

.service-body span{
  color:#6a8cff;
  font-weight:700;
}

/* ABOUT */

.about-section{
  padding:120px 60px;
  background:#fff;
}

.about-wrap{
  max-width:1250px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}

.about-label{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}

.about-label span{
  width:42px;
  height:2px;
  background:#6a8cff;
}

.about-label p{
  color:#6a8cff;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.about-left p{
  color:#6f7886;
  line-height:1.8;
  font-size:18px;
  margin-bottom:20px;
  max-width:650px;
}

.values-block{
  margin-top:36px;
}

.values-block h3{
  font-size:28px;
  margin-bottom:20px;
  color:#171717;
}

.values-list{
  list-style:none;
  padding:0;
  margin:0;
}

.values-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:16px;
  color:#5f6b7c;
  line-height:1.7;
}

.values-list li span{
  color:#ff6b7c;
  font-weight:700;
  margin-top:2px;
}

.values-list li strong{
  color:#1d1d1d;
  margin-right:4px;
}

.about-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  margin-top:28px;
  background:#6a8cff;
  color:#fff;
  border:none;
  padding:14px 28px;
  border-radius:999px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.25s ease;
}

.about-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(106,140,255,0.26);
}

.about-right{
  position:relative;
}

.photo-grid{
  background:#fff;
  border-radius:28px;
  padding:16px;
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  transform:rotate(3deg);
  transition:transform .3s ease;
}

.photo-grid:hover{
  transform:rotate(0deg);
}

.photo-card,
.photo-logo-card{
  aspect-ratio:1/1;
  border-radius:18px;
}

.photo-card{
  background-size:cover;
  background-position:center;
}

.photo-logo-card{
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 0 12px rgba(0,0,0,0.06);
}

.heart-icon{
  color:#6a8cff;
  font-size:38px;
  line-height:1;
  margin-bottom:6px;
}

.photo-logo-card p{
  text-align:center;
  color:#6a8cff;
  font-weight:700;
  font-size:14px;
  line-height:1.2;
}

/* WHY */

.why-section{
  padding:90px 0 120px;
  background:#fafafa;
}

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

.why-cards{
  max-width:1220px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.why-card{
  border-radius:20px;
  padding:34px 26px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:transform .25s ease;
}

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

.why-card h3{
  font-size:28px;
  margin-bottom:12px;
}

.why-card p{
  line-height:1.7;
  font-size:17px;
}

.why-card.blue{background:#5B7FD9;color:#fff;}
.why-card.pink{background:#E85D75;color:#fff;}
.why-card.green{background:#48C774;color:#111;}
.why-card.yellow{background:#FFDD57;color:#111;}

/* TESTIMONIALS */

.testimonials-section{
  padding:120px 60px;
  background:#f7f9fd;
}

.testimonials-grid{
  max-width:1220px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.testimonial-card{
  background:#fff;
  border-radius:18px;
  padding:34px;
  box-shadow:0 8px 28px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  min-height:300px;
}

.stars{
  color:#f6c335;
  font-size:18px;
  margin-bottom:22px;
  letter-spacing:2px;
}

.testimonial-card p{
  color:#6f7886;
  line-height:1.8;
  font-style:italic;
  margin-bottom:28px;
  flex:1;
}

.person{
  display:flex;
  align-items:center;
  gap:14px;
}

.person img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
}

.person h4{
  font-size:17px;
  color:#171717;
  margin-bottom:4px;
}

.person span{
  color:#7c8797;
  font-size:14px;
}

/* FAQ */

.faq-section{
  padding:110px 24px;
  background:#fff;
}

.faq-wrap{
  max-width:900px;
  margin:0 auto;
}

.faq-wrap h2{
  text-align:center;
  margin-bottom:38px;
}

.faq-item{
  border:1px solid #e3e8f0;
  border-radius:16px;
  margin-bottom:16px;
  background:#fbfcfe;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:24px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  font-size:18px;
  font-weight:600;
  color:#1d1d1d;
  cursor:pointer;
}

.faq-question span{
  font-size:20px;
  transition:transform .25s ease;
}

.faq-item.active .faq-question span{
  transform:rotate(180deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  background:#fff;
}

.faq-answer p{
  padding:0 26px 24px;
  color:#6f7886;
  line-height:1.7;
}

/* CTA */

.cta-section{
  padding:90px 24px;
  background:#eef3ff;
}

.cta-inner{
  max-width:950px;
  margin:0 auto;
  text-align:center;
  background:#fff;
  border-radius:28px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  padding:60px 30px;
}

.cta-inner p{
  max-width:720px;
  margin:0 auto 28px;
  color:#6f7886;
  font-size:18px;
  line-height:1.8;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.cta-primary,
.cta-secondary{
  text-decoration:none;
  padding:15px 28px;
  border-radius:999px;
  font-weight:600;
  display:inline-block;
  transition:.25s ease;
}

.cta-primary{
  background:#ff6b7c;
  color:#fff;
}

.cta-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(255,107,124,0.25);
}

.cta-secondary{
  background:#fff;
  color:#222;
  border:1px solid #d8dfea;
}

.cta-secondary:hover{
  background:#f7f9fc;
}

/* CONTACT */

.contact-section{
  padding:100px 60px 80px;
  background:#f8f9fc;
}

.contact-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.contact-card{
  background:#fff;
  border-radius:28px;
  padding:36px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.contact-card h2{
  color:#6a8cff;
  font-size:34px;
  margin-bottom:10px;
}

.contact-sub{
  color:#7a8596;
  line-height:1.7;
  margin-bottom:28px;
}

.contact-row{
  display:flex;
  gap:16px;
  margin-bottom:24px;
}

.icon-circle{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(106,140,255,0.12);
  color:#6a8cff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:21px;
  flex-shrink:0;
}

.contact-row h4{
  color:#171717;
  margin-bottom:6px;
  font-size:18px;
}

.contact-row p,
.contact-row a{
  color:#6f7886;
  text-decoration:none;
  line-height:1.7;
}

.contact-form{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #dde3ee;
  background:#fff;
  border-radius:14px;
  padding:15px 16px;
  font-size:15px;
  color:#222;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#6a8cff;
  box-shadow:0 0 0 4px rgba(106,140,255,0.12);
}

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

.send-btn{
  display:block;
  width:100%;
  text-align:center;
  background:#6a8cff;
  color:#fff;
  text-decoration:none;
  padding:16px 20px;
  border-radius:14px;
  font-weight:600;
  margin-top:4px;
  border:none;
  cursor:pointer;
  transition:.25s ease;
}

.send-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(106,140,255,0.28);
}

.map-card{
  min-height:460px;
  border-radius:28px;
  overflow:hidden;
  border:4px solid #fff;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

/* FOOTER */

.site-footer{
  background:#111c32;
  color:#fff;
  padding:60px 60px 28px;
}

.footer-grid{
  max-width:1180px;
  margin:0 auto 30px;
  display:grid;
  grid-template-columns:1.1fr .8fr 1fr;
  gap:40px;
}

.site-footer h3{
  font-size:24px;
  margin-bottom:18px;
}

.site-footer h4{
  font-size:20px;
  margin-bottom:18px;
}

.site-footer p,
.site-footer a{
  color:rgba(255,255,255,0.78);
  line-height:1.8;
  text-decoration:none;
}

.site-footer a:hover{
  color:#fff;
}

.footer-extra{
  margin-top:12px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-bottom{
  max-width:1180px;
  margin:0 auto;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.15);
  text-align:center;
}

.footer-bottom p{
  color:rgba(255,255,255,0.6);
}

/* tablet */

@media (max-width:1100px){
  .services-grid,
  .testimonials-grid,
  .why-cards{
    grid-template-columns:repeat(2,1fr);
  }

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

  .about-right{
    max-width:640px;
  }
}

/* mobile */

@media (max-width:768px){
  .navbar{
    padding:16px 20px;
    position:sticky;
    flex-wrap:wrap;
    gap:14px;
  }

  .logo{
    font-size:18px;
    max-width:70%;
    line-height:1.3;
  }

  .nav-right{
    display:none;
  }

  .hamburger{
    display:flex;
    margin-left:auto;
  }

  .nav-links{
    display:none;
    flex-direction:column;
    width:100%;
    background:#fff;
    padding:18px 0 8px;
    gap:16px;
  }

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

  .nav-links a{
    font-size:16px;
    padding:4px 0;
  }

  .hero{
    min-height:72vh;
  }

  .hero-content{
    padding:20px;
    max-width:100%;
  }

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

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

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    max-width:240px;
  }

  .services-section,
  .about-section,
  .testimonials-section,
  .contact-section,
  .site-footer{
    padding-left:20px;
    padding-right:20px;
  }

  .services-section,
  .about-section,
  .testimonials-section,
  .faq-section,
  .contact-section{
    padding-top:70px;
    padding-bottom:70px;
  }

  .section-intro h2,
  .about-left h2,
  .why-title h2,
  .faq-wrap h2,
  .cta-inner h2,
  .contact-card h2{
    font-size:34px;
  }

  .services-grid,
  .testimonials-grid,
  .why-cards,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .service-image{
    height:220px;
  }

  .service-image h3{
    font-size:23px;
  }

  .photo-grid{
    transform:none;
  }

  .why-card h3{
    font-size:24px;
  }

  .cta-inner{
    padding:40px 22px;
  }

  .contact-card{
    padding:26px 22px;
  }

  .map-card{
    min-height:320px;
  }

  .site-footer{
    padding-top:44px;
  }
}