@media (max-width: 480px) {

  body {
    overflow-x: hidden;
  }

  /* HAMBURGER SHOW */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
  }

  .nav-main {
    top: 0;
  }

  .navbar {
    padding: 15px;
    border-radius: 0;
    /* remove rounded */
  }


  /* HIDE JOIN BUTTON */
  .nav-btn {
    display: none;
  }

  /* FULL SCREEN MENU */
  .nav-links {
    position: fixed;

    top: 80px;
    /* keep navbar gap */
    left: 16px;
    right: 16px;

    height: calc(100vh - 100px);
    /* full height minus navbar */

    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;

    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* MENU ITEMS */
  .nav-links ul {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 18px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .nav-links a {
    font-size: 23px;
    color: #fff;
  }

  /* ADDING HAMBUGGER EFFECT */

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
  }

  /* ACTIVE → X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* FOTTER SECTION */

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-col ul {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* HOME PAGE : HERO SECTION */

  .hero {
    padding: 100px 0 60px;
    /* reduce top space */
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hero-image {
    order: 1;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image img {
    max-width: 240px;
    width: 100%;
    height: auto;
    transform: none;
    /* remove scale from desktop */
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }

  .hero-reviews {
    margin-top: 15px;
    font-size: 13px;
  }

  .hero-tags {
    justify-content: center;
    gap: 8px;
  }

  .hero-tags span {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* HOME PAGE : SERVICES SECTION */

  .services {
    padding: 60px 0;
  }

  .services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .services-text h2 {
    font-size: 26px !important;
    line-height: 1.3;
  }

  .services-text p {
    font-size: 14px;
  }

  .services-arrows {
    display: none !important;
  }

  .services-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .service-card {
    min-width: 220px !important;
    width: 295px;
    height: 180px;
    border-radius: 15px;
  }

  .overlay {
    padding: 15px;
  }

  .overlay h3 {
    font-size: 16px;
  }

  .services-cards {
    scroll-snap-type: x mandatory;
  }

  .service-card {
    scroll-snap-align: start;
  }

  /* HOME PAGE : TRANSFORM SECTION */

  .transform {
    height: auto;
    padding: 80px 20px;
  }

  .transform-inner {
    padding-left: 0 !important;
    justify-content: center;
  }

  .transform-content {
    text-align: center;
    max-width: 100%;
  }

  .transform-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .transform-content p {
    font-size: 14px;
    margin: 15px 0 20px;
  }

  .transform-points {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .transform-points span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .transform-content .btn {
    width: 100%;
    max-width: 220px;
  }

  /* HOME PAGE : PRICING SECTION */

  .pricing {
    padding-top: 100px !important;
    padding-bottom: 140px !important;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pricing-card {
    width: 90%;
    max-width: 320px;
    padding: 25px;
  }

  .pricing-card.active {
    transform: none;
  }

  .pricing-top h2 {
    font-size: 26px;
  }

  .pricing-card h4 {
    font-size: 30px;
  }

  .pricing-card .btn {
    width: 100%;
  }

  /* HOME PAGE : TESTIMONIALS SECTION */

  .testimonials {
    padding: 90px 0 !important;
    padding-bottom: 110px !important;
  }

  .testimonials-top {
    margin-bottom: 40px;
    text-align: left;
  }

  .testimonials-top h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .testimonials-top p {
    font-size: 16px;
  }

  .testimonial-card {
    width: 90%;
    max-width: 320px;
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .user {
    justify-content: center;
  }

  .stars {
    text-align: center;
  }

  /* HOME PAGE : CTA SECTION */

  .cta {
    padding: 80px 0 !important;
  }

  .cta-box {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .cta-box h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
  }

  .cta-subtext {
    font-size: 12px;
  }

}

@media (min-width: 481px) and (max-width: 768px) {

  /* NAVBAR */

  .hamburger {
    display: flex !important;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    height: calc(100vh - 100px);
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }


  .nav-links ul {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 100%;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .nav-links a {
    font-size: 26px;
  }

  /* FOOTER SECTION */

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
  }

  .footer-col {
    text-align: left;
  }

  .footer-brand p {
    max-width: 300px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .socials {
    justify-content: flex-end;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  /* HOME PAGE : HERO SECTION */

  .hero-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  /* IMAGE FIRST */
  .hero-image {
    order: 1;
    text-align: center;
  }

  /* TEXT SECOND */
  .hero-text {
    order: 2;
  }

  .hero-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
  }

  .hero-text h1 {
    font-size: 38px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-tags {
    justify-content: center;
  }

  /* HOMEA PAGE : SERVICES SECTION */

  .services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-arrows {
    display: none !important;
  }

  .services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
    overflow: hidden;
  }

  .service-card {
    min-width: 100%;
    height: 200px;
  }

  .overlay h3 {
    font-size: 18px;
  }

  /* HOME PAGE : TRANSFORM SECTION */

  .transform {
    height: auto;
    padding: 100px 20px !important;
  }

  .transform-inner {
    padding-left: 0 !important;
    justify-content: center !important;
  }

  .transform-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .transform-content h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .transform-content p {
    font-size: 15px;
    margin: 20px 0 25px;
  }

  .transform-points {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .transform-content .btn {
    max-width: 240px;
  }

  /* HOME PAGE : PRICING SECTION */

  .pricing {
    padding: 100px 0 !important;
    padding-bottom: 140px !important;
  }

  .pricing-top {
    margin-bottom: 50px;
  }

  .pricing-top h2 {
    font-size: 30px;
  }

  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 20px;
  }

  .pricing-card {
    width: 45%;
    min-width: 260px;
  }

  .pricing-card.active {
    transform: none;
  }

  .pricing-card h4 {
    font-size: 32px;
  }

  .pricing-card .btn {
    width: 100%;
  }

  /* HOME PAGE : TESTIMONIALS SECTION */

  .testimonials {
    padding: 100px 0 !important;
    padding-bottom: 130px !important;
  }

  .testimonials-top {
    text-align: left;
    margin-bottom: 50px;
  }

  .testimonials-top h2 {
    font-size: 30px;
  }

  .testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .testimonial-card {
    width: 45%;
    min-width: 460px;
  }

  .testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HOME PAGE : CTA SECTION */

  .cta {
    padding: 100px 0 !important;
  }

  .cta-box {
    padding: 50px 30px;
    border-radius: 18px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cta-box p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .cta-btn {
    width: auto;
    min-width: 160px;
    justify-content: center;
  }

  .cta-subtext {
    font-size: 13px;
  }


}

@media (min-width: 769px) and (max-width: 1024px) {

  /* NAVBAR */

  .nav-links {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;

    width: auto;
    height: auto;

    display: block;
    background: transparent;
  }

  .nav-links ul {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 0;
    margin: 0;
  }

  .nav-btn {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .navbar {
    justify-content: space-between;
    align-items: center;
  }

  /* HOME PAGE : HERO SECTION */

  .hero {
    padding: 140px 0 80px !important;
  }

  .hero-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 40px;
  }

  .hero-image img {
    max-width: 400px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-tags {
    justify-content: flex-start;
  }

  /* HOME PAGE : SERVICES SECTION */

  .services-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .services-arrows {
    display: flex;
  }

  .services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    overflow: hidden;
  }

  .service-card {
    min-width: 100%;
    height: 220px;
  }

  .overlay h3 {
    font-size: 20px;
  }

  /* HOME PAGE : TRANSFORM SECTION */

  .transform {
    padding: 140px 40px !important;
    height: auto;
  }

  .transform-inner {
    justify-content: flex-start;
    padding-left: 40px;
  }

  .transform-content {
    max-width: 500px;
    text-align: left;
  }

  .transform-content h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .transform-content p {
    font-size: 16px;
  }

  .transform-points {
    justify-content: flex-start;
  }

  .transform-content .btn {
    max-width: 260px;
  }

  /* HOME PAGE : PRICING SECTION */
  .pricing {
    padding: 140px 0 !important;
  }

  .pricing-top {
    text-align: left;
    margin-bottom: 60px;
  }

  .pricing-top h2 {
    font-size: 36px;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .pricing-card {
    width: 100%;
    min-width: 0 !important;
    max-width: 100%;
  }

  .pricing-card.active {
    transform: scale(1.05);
    z-index: 2;
  }

  .pricing-card h4 {
    font-size: 34px;
  }

  .pricing-card .btn {
    width: 100%;
  }

  /* HOME PAGE : TESTIMONIALS SECTION */

  .testimonials {
    padding: 100px 0 !important;
    padding-bottom: 130px !important;
  }

  .testimonials-top {
    text-align: left;
    margin-bottom: 60px;
  }

  .testimonials-top h2 {
    font-size: 36px;
  }

  .testimonials-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    min-width: 0;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* HOME PAGE : CTA SECTION */

  .cta {
    padding: 100px 0 !important;
  }

  .cta-box {
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-box p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .cta-btn {
    width: auto;
    min-width: 180px;
    justify-content: center;
  }

  .cta-subtext {
    font-size: 14px;
  }


}