  /* =========================
    GLOBAL STYLES
  ========================= */

  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
  }

  body{
    font-family:'Outfit', sans-serif;
    background:#fff9fc;
    color:#3b2d36;
    line-height:1.7;
    overflow-x:hidden;
  }

  img{
    width:100%;
    display:block;
  }

  a{
    text-decoration:none;
  }

  .container{
    width:90%;
    max-width:1200px;
    margin:auto;
  }

  /* =========================
    HEADER
  ========================= */

  .header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #ffe3ef;
  }

  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
  }

  .logo{
    font-size:28px;
    font-weight:800;
    color:#ff4ca0;
  }

  .logo span{
    color:#ff94c2;
  }

  nav{
    display:flex;
    gap:35px;
  }

  nav a{
    color:#444;
    font-weight:500;
    transition:.3s;
    position:relative;
  }

  nav a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-5px;
    background:#ff4ca0;
    transition:.3s;
  }

  nav a:hover::after{
    width:100%;
  }

  nav a:hover{
    color:#ff4ca0;
  }

  /* =========================
    BUTTONS
  ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 30px;
  border-radius:50px;
  background:linear-gradient(135deg,#ff4ca0,#ff7ab9);
  color:white;
  font-weight:600;
  transition:.3s;
  box-shadow:0 10px 25px rgba(255,76,160,.25);
}

  .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(255,76,160,.35);
  }

  .btn-outline{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    border:2px solid #ff4ca0;
    color:#ff4ca0;
    font-weight:600;
    transition:.3s;
  }

  .btn-outline:hover{
    background:#ff4ca0;
    color:white;
  }

  .white-btn{
    background:white;
    color:#ff4ca0;
  }

  /* =========================
    HERO
  ========================= */

  .hero{
    padding:170px 0 120px;
    background:
    radial-gradient(circle at top left,#ffd6e8 0%,transparent 35%),
    radial-gradient(circle at bottom right,#ffe4f1 0%,transparent 35%),
    #fff9fc;
  }

  .hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
  }

  .tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:100px;
    background:#ffe8f3;
    color:#ff4ca0;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
  }

  .hero-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    color:#2d1b25;
  }

  .hero-content h1 span{
    color:#ff4ca0;
  }

  .hero-content p{
    font-size:18px;
    color:#666;
    margin-bottom:35px;
  }

  .hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:40px;
  }

  .mission-box{
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(255,76,160,.08);
    border:1px solid #ffe5f1;
  }

  .mission-box h3{
    margin-bottom:10px;
    color:#ff4ca0;
  }

  .hero-image{
    position:relative;
  }

  .hero-image img{
    border-radius:35px;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
  }

  .floating-card{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:white;
    padding:20px 25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid #ffe3ef;
  }

  .floating-card h4{
    color:#ff4ca0;
    margin-bottom:5px;
  }

  /* =========================
    SECTION TITLE
  ========================= */

  .section-title{
    text-align:center;
    margin-bottom:70px;
  }

  .section-title span{
    color:#ff4ca0;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
  }

  .section-title h2{
    font-size:46px;
    margin-top:15px;
    color:#2d1b25;
  }

/* =========================
   SERVICES SLIDER
========================= */

.services{
  padding:120px 0;
  background:#fff9fc;
}

.services-slider{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:15px;
}

.services-slider::-webkit-scrollbar{
  height:10px;
}

.services-slider::-webkit-scrollbar-track{
  background:#ffe5f1;
  border-radius:100px;
}

.services-slider::-webkit-scrollbar-thumb{
  background:linear-gradient(135deg,#ff4ca0,#ff94c2);
  border-radius:100px;
}

.service-card{
  min-width:350px;
  background:white;
  border-radius:30px;
  overflow:hidden;
  border:1px solid #ffe4f0;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.4s;
  scroll-snap-align:start;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(255,76,160,.15);
}

.service-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.service-content{
  padding:30px;
}

.service-content h3{
  font-size:26px;
  margin-bottom:15px;
  color:#ff4ca0;
}

.service-content p{
  color:#666;
  line-height:1.7;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .service-card{
    min-width:280px;
  }

  .service-card img{
    height:200px;
  }

}

  /* =========================
    ABOUT
  ========================= */

  .about{
    padding:120px 0;
    background:#fff1f7;
  }

  .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
  }

  .about-image img{
    border-radius:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
  }

  .about-content span{
    color:#ff4ca0;
    font-weight:700;
    text-transform:uppercase;
  }

  .about-content h2{
    font-size:48px;
    margin:20px 0;
    color:#2d1b25;
  }

  .about-content p{
    margin-bottom:20px;
    color:#555;
  }

  .values{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
  }

  .values div{
    background:white;
    padding:14px 24px;
    border-radius:100px;
    color:#ff4ca0;
    font-weight:600;
    border:1px solid #ffd7e9;
  }
/* =========================
   TEAM SECTION
========================= */

.team{
  padding:120px 0;
  background:#fff1f7;
}

.team-slider{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:15px;
}

.team-slider::-webkit-scrollbar{
  height:10px;
}

.team-slider::-webkit-scrollbar-track{
  background:#ffdce9;
  border-radius:100px;
}

.team-slider::-webkit-scrollbar-thumb{
  background:linear-gradient(135deg,#ff4ca0,#ff94c2);
  border-radius:100px;
}

.team-card{
  min-width:320px;
  height:420px;
  border-radius:30px;
  overflow:hidden;
  position:relative;
  scroll-snap-align:start;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  transition:.4s;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(255,76,160,.18);
}

.team-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .team-card{
    min-width:260px;
    height:350px;
  }

}
  /* =========================
    PRICING
  ========================= */

  .pricing{
    padding:120px 0;
  }

  .pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
  }

  .price-card{
    background:white;
    padding:50px 40px;
    border-radius:30px;
    text-align:center;
    position:relative;
    border:1px solid #ffe4f0;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
  }

  .price-card:hover{
    transform:translateY(-10px);
  }

  .price-card h3{
    font-size:28px;
    margin-bottom:20px;
  }

  .price{
    font-size:58px;
    color:#ff4ca0;
    font-weight:800;
    margin-bottom:25px;
  }

  .price span{
    font-size:18px;
    color:#777;
  }

  .price-card ul{
    list-style:none;
    margin-bottom:35px;
  }

  .price-card ul li{
    margin:14px 0;
    color:#555;
  }

  .featured{
    background:linear-gradient(135deg,#ff4ca0,#ff8ec4);
    color:white;
    transform:scale(1.05);
  }

  .featured h3,
  .featured .price,
  .featured ul li{
    color:white;
  }

  .badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#2d1b25;
    color:white;
    padding:8px 20px;
    border-radius:100px;
    font-size:14px;
  }

  /* =========================
    CONTACT
  ========================= */

  .contact{
    padding:120px 0;
    background:#fff1f7;
  }

  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
  }

  .contact-info span{
    color:#ff4ca0;
    font-weight:700;
    text-transform:uppercase;
  }

  .contact-info h2{
    font-size:48px;
    margin:20px 0;
  }

  .contact-info p{
    color:#555;
  }

  .details{
    margin-top:30px;
  }

  .details p{
    margin-bottom:15px;
  }

  .contact-form{
    background:white;
    padding:45px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
  }

  .contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:none;
    background:#fff6fa;
    border-radius:16px;
    font-family:'Outfit',sans-serif;
    font-size:16px;
    outline:none;
    border:1px solid transparent;
    transition:.3s;
  }

  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus{
    border-color:#ff4ca0;
    background:white;
  }

  /* =========================
    FOOTER
  ========================= */

  footer{
    background:#2d1b25;
    color:white;
    text-align:center;
    padding:60px 20px;
  }

  .footer-content h2{
    font-size:34px;
    margin-bottom:10px;
  }

  .footer-content p{
    color:#d8c8d1;
    margin-top:8px;
  }

  /* =========================
    RESPONSIVE
  ========================= */

  @media(max-width:991px){

    .hero-grid,
    .about-grid,
    .contact-grid{
      grid-template-columns:1fr;
    }

    .hero-content h1{
      font-size:52px;
    }

    .section-title h2,
    .about-content h2,
    .contact-info h2{
      font-size:38px;
    }

    nav{
      display:none;
    }

  }

  @media(max-width:768px){

    .hero{
      padding-top:140px;
    }

    .hero-content h1{
      font-size:42px;
    }

    .hero-buttons{
      flex-direction:column;
    }

    .floating-card{
      position:relative;
      left:0;
      bottom:0;
      margin-top:20px;
    }

    .contact-form{
      padding:30px;
    }
/* SOCIAL SECTION */
.social-section{
    margin-top:30px;
}

.social-section h3{
    font-size:22px;
    margin-bottom:18px;
    color:#222;
    font-weight:700;
}

.social-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.social-btn{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
    padding:14px 22px;
    border-radius:14px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.social-btn i{
    font-size:20px;
}

.social-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

/* FACEBOOK */
.facebook{
    background:linear-gradient(
        135deg,
        #1877F2,
        #0D5FD7
    );
}

/* MESSENGER */
.messenger{
    background:linear-gradient(
        135deg,
        #00B2FF,
        #006AFF,
        #A033FF
    );
}

/* INSTAGRAM */
.instagram{
    background:linear-gradient(
        135deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}

@media(max-width:768px){
    .social-buttons{
        flex-direction:column;
    }

    .social-btn{
        justify-content:center;
    }
}
