:root {
  --bg: #000931;
  --bg-2: #0d2858;
  --primary: #37cafa;
  --text: #ffffff;
  --text-soft: #c9d4f2;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(55, 202, 250, 0.15), transparent 30%),
    linear-gradient(135deg, #000931 0%, #071b43 50%, #0d2858 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

.section {
  padding: 100px 0;
}

/* GENERAL TITLES */

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

.section-heading h2,
.about-box h2,
.contact-info h2,
.cta-box h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading p,
.about-box p,
.contact-info p,
.cta-box p {
  color: var(--text-soft);
  font-size: 16px;
}

.section-tag,
.badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(55, 202, 250, 0.35);
  background: rgba(55, 202, 250, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6ddfff);
  color: #00112b;
  box-shadow: 0 10px 30px rgba(55, 202, 250, 0.35);
}

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

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(0, 9, 49, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.logo-box {
  width: 52px;
  height: 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: var(--text-soft);
  font-weight: 500;
  transition: 0.3s ease;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */

.hero {
  padding: 90px 0 80px;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #37cafa, #9beeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  max-width: 650px;
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 60px;
}

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

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

/* HERO VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
}

.glass-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 500px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(55,202,250,0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(55,202,250,0.25);
  border-radius: 24px;
  padding: 28px;
  text-align: left;
}

.showcase-card h4 {
  font-size: 28px;
  margin-bottom: 6px;
}

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

.showcase-line {
  height: 8px;
  width: 130px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin-bottom: 22px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.box {
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(55,202,250,0.18), rgba(255,255,255,0.05));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.box span {
  color: var(--primary);
  font-size: 28px;
}

.box p {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(9, 21, 67, 0.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.top-card {
  top: 18px;
  right: -30px;
}

.bottom-card {
  bottom: 24px;
  left: -30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(55, 202, 250, 0.9);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.work-card,
.about-card,
.contact-form,
.about-box,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.service-card {
  border-radius: 24px;
  padding: 28px;
  transition: 0.3s ease;
}

.service-card:hover,
.work-card:hover,
.about-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(55, 202, 250, 0.10);
  border: 1px solid rgba(55, 202, 250, 0.25);
  border-radius: 18px;
  margin-bottom: 28px;
  padding: 0;
}

.service-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  color: var(--text-soft);
  font-size: 15px;
}

/* ABOUT */

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-box {
  border-radius: 28px;
  padding: 36px;
}

.about-box p {
  margin-bottom: 16px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  border-radius: 24px;
  padding: 30px 24px;
}

.about-card h3 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* PORTFOLIO */

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.portfolio-categories {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}

.work-card:hover img {
  transform: none;
}

.work-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.work-content {
  padding: 22px;
}

.work-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.work-content p {
  color: var(--text-soft);
  font-size: 14px;
}

/* GALLERY POPUP */

.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 9, 49, 0.96);
  backdrop-filter: blur(14px);
  z-index: 9999;
  display: none;
  overflow-y: auto;
  padding: 50px;
}

.gallery-popup.show {
  display: block;
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gallery-header span {
  color: var(--primary);
  font-weight: 700;
}

.gallery-header h2 {
  color: white;
  font-size: clamp(32px, 5vw, 58px);
  margin-top: 8px;
}

.gallery-header button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 34px;
  cursor: pointer;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
}

/* CTA */

.cta-box {
  border-radius: 30px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* CONTACT */

.contact-info {
  padding: 10px 0;
}

.contact-details {
  margin-top: 24px;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-form {
  border-radius: 28px;
  padding: 30px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  outline: none;
  color: white;
  border-radius: 14px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b9c7ea;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* FOOTER */

.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-content p {
  color: var(--text-soft);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .services-grid,
  .work-grid,
  .portfolio-categories {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual {
    order: -1;
  }
}

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

  .gallery-popup {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: 76px;
  }

  .logo-box,
  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(0, 9, 49, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-stats,
  .about-cards,
  .services-grid,
  .work-grid,
  .portfolio-categories,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-card,
  .bottom-card {
    position: static;
    margin-top: 16px;
  }

  .glass-card {
    min-height: auto;
    gap: 18px;
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* BRAND GUIDELINES + PORTFOLIO FIX */

.portfolio-categories {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .portfolio-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-categories {
    grid-template-columns: 1fr;
  }
}
/* PERSONAL BRAND IMAGE SECTION */

.personal-brand-section {
  padding: 80px 0;
}

.personal-brand-image {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}
/* CLICKABLE BUTTONS ON PERSONAL BRAND IMAGE */

.personal-brand-wrapper {
  position: relative;
  width: 100%;
}

.image-click {
  position: absolute;
  display: block;
  z-index: 5;
  border-radius: 12px;
}

/* View Portfolio button */
.image-portfolio {
  left: 5.4%;
  top: 58.4%;
  width: 16%;
  height: 7.2%;
}

/* Contact Me button */
.image-contact {
  left: 22.3%;
  top: 58.4%;
  width: 15%;
  height: 7.2%;
}
/* REVIEWS SLIDER WITH PHOTOS */

.review-slider {
  max-width: 850px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-slide {
  display: none;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 42px;
  text-align: center;
  opacity: 0;
  transform: translateX(35px) scale(0.96);
}

.review-slide.active {
  display: block;
  animation: reviewMagic 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reviewFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-photo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid rgba(55, 202, 250, 0.55);
  box-shadow: 0 0 25px rgba(55, 202, 250, 0.25);
}

.review-stars {
  color: var(--primary);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.review-slide p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 30px;
}

.review-client h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.review-client span {
  color: var(--text-soft);
  font-size: 14px;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.review-arrow:hover {
  background: rgba(55,202,250,0.18);
  border-color: rgba(55,202,250,0.45);
  color: var(--primary);
}

.review-prev {
  left: -26px;
}

.review-next {
  right: -26px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.review-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.review-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 768px) {
  .review-slide {
    padding: 30px 22px;
  }

  .review-photo {
    width: 74px;
    height: 74px;
  }

  .review-slide p {
    font-size: 15px;
  }

  .review-prev {
    left: -10px;
  }

  .review-next {
    right: -10px;
  }

  .review-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }
}
/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  transition: 0.3s ease;
}

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

.process-card span {
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--text-soft);
  font-size: 15px;
}

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

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* FAQ */

.faq-list {
  max-width: 850px;
  margin: auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: white;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question span {
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  transition: 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-answer p {
  color: var(--text-soft);
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

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

@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
    padding: 20px;
  }
}
/* STRONG CTA AFTER REVIEWS */

.strong-cta {
  padding: 80px 0;
}

.strong-cta-box {
  max-width: 950px;
  margin: auto;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(55, 202, 250, 0.20), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(55, 202, 250, 0.22);
  box-shadow: 0 25px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  padding: 55px 35px;
  position: relative;
  overflow: hidden;
}

.strong-cta-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(55, 202, 250, 0.18);
  filter: blur(60px);
  border-radius: 50%;
  top: -60px;
  right: -40px;
}

.strong-cta-box h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.strong-cta-box p {
  color: var(--text-soft);
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.strong-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .strong-cta-box {
    padding: 42px 22px;
  }

  .strong-cta-buttons {
    flex-direction: column;
  }

  .strong-cta-buttons .btn {
    width: 100%;
  }
}
/* WHATSAPP FLOAT BUTTON */

/* WHATSAPP FLOAT BUTTON */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #7dffab);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: #002b14;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 27px;
    height: 27px;
  }
}
/* PROFESSIONAL FOOTER */

.footer {
  padding: 70px 0 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 35px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: white;
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 14px;
  max-width: 360px;
}

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

.footer-column h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--text-soft);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: var(--text-soft);
  font-size: 13px;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* BACK TO TOP BUTTON */

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 9997;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(55, 202, 250, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(55, 202, 250, 0.18);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 80px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}
/* LOADING SCREEN */

.loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(55, 202, 250, 0.18), transparent 35%),
    linear-gradient(135deg, #000931, #071b43, #0d2858);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(55, 202, 250, 0.35);
  box-shadow: 0 0 45px rgba(55, 202, 250, 0.45);
  animation: loaderPulse 1.2s ease infinite;
  overflow: hidden;
}

.loader-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.loader-content p {
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.5px;
}

@keyframes loaderPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(55, 202, 250, 0.25);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 55px rgba(55, 202, 250, 0.55);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(55, 202, 250, 0.25);
  }
}

/* SCROLL REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
/* TOOLS SECTION */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  transition: 0.3s ease;
}

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

.tool-logo {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tool-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tool-card p {
  color: var(--text-soft);
  font-size: 14px;
}

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

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.showcase-item {
  min-height: 150px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
  transition: 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 202, 250, 0.35);
}

.showcase-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.showcase-item span {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.process-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(55, 202, 250, 0.10);
  border: 1px solid rgba(55, 202, 250, 0.25);
  border-radius: 18px;
  margin: 12px 0 22px;
  padding: 14px;
}

.process-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
/* PREMIUM DESIGN UPGRADE */

body {
  overflow-x: hidden;
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(55, 202, 250, 0.08);
  filter: blur(80px);
  border-radius: 50%;
  top: 40px;
  right: -120px;
  pointer-events: none;
}

.service-card,
.process-card,
.work-card,
.review-slide,
.faq-item,
.strong-cta-box,
.contact-form,
.about-box,
.about-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.process-card::before,
.work-card::before,
.review-slide::before,
.faq-item::before,
.contact-form::before,
.about-box::before,
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(55, 202, 250, 0.14),
    transparent 35%,
    rgba(255, 255, 255, 0.04)
  );
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.service-card:hover::before,
.process-card:hover::before,
.work-card:hover::before,
.review-slide:hover::before,
.faq-item:hover::before,
.contact-form:hover::before,
.about-box:hover::before,
.about-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.process-card:hover,
.work-card:hover,
.about-card:hover,
.faq-item:hover {
  transform: translateY(-8px);
  border-color: rgba(55, 202, 250, 0.35);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(55, 202, 250, 0.10);
}

.service-icon,
.process-icon,
.tool-logo {
  box-shadow: inset 0 0 22px rgba(55, 202, 250, 0.10);
  transition: 0.35s ease;
}

.service-card:hover .service-icon,
.process-card:hover .process-icon,
.tool-card:hover .tool-logo {
  transform: scale(1.08);
  border-color: rgba(55, 202, 250, 0.55);
  box-shadow:
    inset 0 0 22px rgba(55, 202, 250, 0.14),
    0 0 28px rgba(55, 202, 250, 0.20);
}

.hero-text h1 span,
.section-heading h2 span {
  background: linear-gradient(135deg, #37cafa, #0f8cff, #9beeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

.work-image img,
.personal-brand-image {
  transition: 0.45s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.04);
}

.personal-brand-wrapper:hover .personal-brand-image {
  transform: scale(1.01);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(55, 202, 250, 0.14);
}

.header {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.menu a {
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.review-slide {
  border-color: rgba(55, 202, 250, 0.16);
}

.faq-question:hover {
  color: var(--primary);
}

.gallery-grid img:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(55, 202, 250, 0.35);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.45),
    0 0 35px rgba(55, 202, 250, 0.14);
}

.footer {
  background:
    radial-gradient(circle at top right, rgba(55, 202, 250, 0.08), transparent 35%),
    rgba(0,0,0,0.20);
}

@media (max-width: 768px) {
  .section::before {
    width: 180px;
    height: 180px;
    right: -100px;
  }

  .service-card:hover,
  .process-card:hover,
  .work-card:hover,
  .about-card:hover,
  .faq-item:hover {
    transform: none;
  }

  .personal-brand-wrapper:hover .personal-brand-image {
    transform: none;
  }
}
@keyframes reviewMagic {
  0% {
    opacity: 0;
    transform: translateX(45px) scale(0.94);
    filter: blur(6px);
  }

  60% {
    opacity: 1;
    transform: translateX(-6px) scale(1.01);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}
.review-slide.active {
  border-color: rgba(55, 202, 250, 0.35);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(55, 202, 250, 0.14);
}
.review-slide.active .review-photo {
  animation: photoPop 0.7s ease forwards;
}

.review-slide.active .review-stars {
  animation: starsGlow 0.8s ease forwards;
}

.review-slide.active p,
.review-slide.active .review-client {
  animation: textUp 0.75s ease forwards;
}

@keyframes photoPop {
  0% {
    opacity: 0;
    transform: scale(0.75) rotate(-6deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes starsGlow {
  0% {
    opacity: 0;
    transform: translateY(8px);
    letter-spacing: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 4px;
  }
}

@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PORTFOLIO CATEGORY CLICK + POPUP ANIMATION */

.work-card {
  position: relative;
  overflow: hidden;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(55, 202, 250, 0.22), transparent 55%);
  opacity: 0;
  transform: scale(0.6);
  transition: 0.45s ease;
  pointer-events: none;
}

.work-card:hover::after {
  opacity: 1;
  transform: scale(1.3);
}

.work-card:active {
  transform: scale(0.96);
}

.gallery-popup.show {
  display: block;
  animation: popupOpen 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gallery-header {
  animation: galleryHeaderIn 0.55s ease forwards;
}

.gallery-grid img {
  opacity: 0;
  transform: translateY(35px) scale(0.92);
  animation: galleryImageIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popupOpen {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    backdrop-filter: blur(14px);
    transform: scale(1);
  }
}

@keyframes galleryHeaderIn {
  0% {
    opacity: 0;
    transform: translateY(-22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryImageIn {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.92);
    filter: blur(5px);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.gallery-header h2 {
  background: linear-gradient(135deg, #ffffff, #37cafa, #0f8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* MOUSE GLOW EFFECT ON CARDS */

.service-card,
.process-card,
.work-card,
.tool-card,
.faq-item {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.process-card::after,
.work-card::after,
.tool-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(55, 202, 250, 0.20), transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover::after,
.process-card:hover::after,
.work-card:hover::after,
.tool-card:hover::after,
.faq-item:hover::after {
  opacity: 1;
}
/* 3D TILT CARDS ANIMATION */

.service-card,
.process-card,
.work-card,
.tool-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover,
.process-card:hover,
.work-card:hover,
.tool-card:hover {
  transition: transform 0.12s ease;
}

.service-card h3,
.service-card p,
.service-icon,
.process-card h3,
.process-card p,
.process-icon,
.work-content,
.tool-card h3,
.tool-card p,
.tool-logo {
  position: relative;
  z-index: 2;
}
/* ANIMATED PREMIUM BORDER */

.work-card,
.service-card,
.process-card,
.tool-card {
  position: relative;
  isolation: isolate;
}

.work-card::before,
.service-card::before,
.process-card::before,
.tool-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(55, 202, 250, 0.75),
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  background-size: 300% 300%;
  opacity: 0;
  z-index: -1;
  animation: borderMove 3s linear infinite;
  transition: 0.35s ease;
}

.work-card:hover::before,
.service-card:hover::before,
.process-card:hover::before,
.tool-card:hover::before {
  opacity: 1;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
/* SCROLL PROGRESS BAR */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: linear-gradient(90deg, #37cafa, #0f8cff, #9beeff);
  box-shadow: 0 0 18px rgba(55, 202, 250, 0.75);
  transition: width 0.08s linear;
}
/* MAGNETIC BUTTON EFFECT */

.btn {
  will-change: transform;
}

.btn:hover {
  box-shadow:
    0 14px 38px rgba(55, 202, 250, 0.28),
    0 0 22px rgba(55, 202, 250, 0.16);
}
/* PREMIUM CURSOR GLOW + CLICK RIPPLE */

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(55, 202, 250, 0.16),
    rgba(55, 202, 250, 0.06) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}

.click-ripple {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(55, 202, 250, 0.8);
  box-shadow: 0 0 22px rgba(55, 202, 250, 0.55);
  pointer-events: none;
  z-index: 10002;
  transform: translate(-50%, -50%) scale(0.5);
  animation: premiumRipple 0.7s ease forwards;
}

@keyframes premiumRipple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.4);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5);
  }
}

@media (max-width: 768px) {
  .cursor-glow,
  .click-ripple {
    display: none;
  }
}

/* ===============================
   FINAL CLEAN MOBILE VERSION
   PC DESIGN STAYS FROM OLD VERSION
   =============================== */

.mobile-about-image,
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body {
    padding-bottom: 84px;
    background:
      radial-gradient(circle at top center, rgba(55, 202, 250, 0.16), transparent 28%),
      linear-gradient(180deg, #000931 0%, #071b43 52%, #0d2858 100%) !important;
  }

  .container {
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section {
    padding: 46px 0 !important;
  }

  .section-heading {
    margin-bottom: 28px !important;
  }

  .section-heading h2,
  .about-box h2,
  .contact-info h2,
  .cta-box h2 {
    font-size: 28px !important;
    line-height: 1.14 !important;
  }

  .section-heading p,
  .about-box p,
  .contact-info p,
  .cta-box p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .header {
    background: rgba(0, 9, 49, 0.92) !important;
    position: sticky !important;
    top: 0 !important;
  }

  .nav {
    min-height: 70px !important;
  }

  .logo-box,
  .logo-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .brand-title {
    font-size: 15px !important;
  }

  .brand-subtitle {
    display: none !important;
  }

  .menu {
    top: 70px !important;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  }

  .hero {
    padding: 42px 0 44px !important;
    min-height: auto !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .hero-visual {
    order: 0 !important;
    width: 100% !important;
  }

  .hero-text {
    text-align: center !important;
    padding: 0 4px;
  }

  .hero-text h1 {
    font-size: 31px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.7px;
    margin-bottom: 18px !important;
  }

  .hero-text p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 96% !important;
    margin: 0 auto 24px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 13px !important;
    margin-bottom: 30px !important;
  }

  .hero-buttons .btn,
  .strong-cta-buttons .btn {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 16px !important;
  }

  .hero-buttons .btn-primary {
    box-shadow: 0 8px 18px rgba(55, 202, 250, 0.14) !important;
    overflow: hidden !important;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .stat-card {
    padding: 20px !important;
    text-align: center !important;
    border-radius: 20px !important;
  }

  .glass-card,
  .showcase-card {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    border-radius: 24px !important;
  }

  .glass-card {
    padding: 18px !important;
    gap: 16px !important;
    flex-direction: column !important;
  }

  .showcase-card {
    padding: 20px !important;
    text-align: center !important;
  }

  .showcase-card h4 {
    font-size: 22px !important;
  }

  .showcase-line {
    margin: 0 auto 20px !important;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .showcase-item {
    min-height: 112px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .showcase-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .mini-card,
  .top-card,
  .bottom-card {
    position: static !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 14px !important;
  }

  .desktop-about-image {
    display: none !important;
  }

  .mobile-about-image {
    display: block !important;
  }

  .personal-brand-section {
    padding: 34px 0 38px !important;
  }

  .personal-brand-image {
    border-radius: 24px !important;
    box-shadow: 0 25px 70px rgba(0,0,0,0.45), 0 0 35px rgba(55,202,250,0.10) !important;
  }

  .personal-brand-wrapper {
    position: relative !important;
  }

  .image-click {
    display: block !important;
    position: absolute !important;
    z-index: 20 !important;
    border-radius: 14px !important;
  }

  .image-portfolio {
    left: 7%;
    top: 48.7%;
    width: 36%;
    height: 5.4%;
  }

  .image-contact {
    left: 7%;
    top: 56.1%;
    width: 34%;
    height: 5.4%;
  }

  .services-grid,
  .process-grid,
  .tools-grid,
  .portfolio-categories,
  .work-grid,
  .about-cards,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-card,
  .process-card,
  .tool-card,
  .about-card {
    text-align: center !important;
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }

  .service-icon,
  .process-icon,
  .tool-logo {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 72px !important;
    height: 72px !important;
  }

  .service-icon img,
  .process-icon img,
  .tool-logo img {
    width: 44px !important;
    height: 44px !important;
  }

  .about-box {
    text-align: center !important;
    padding: 32px 24px !important;
    border-radius: 28px !important;
    background:
      radial-gradient(circle at top right, rgba(55, 202, 250, 0.16), transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)) !important;
  }

  .about-box .section-tag,
  .about-box .btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about-box p,
  .about-card p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about-box .btn {
    width: 100% !important;
    max-width: 230px !important;
  }

  .work-image {
    aspect-ratio: 4 / 4.4 !important;
  }

  .work-content {
    padding: 20px !important;
    text-align: center !important;
  }

  .gallery-popup {
    padding: 20px 14px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .review-slide {
    padding: 28px 18px !important;
    border-radius: 24px !important;
  }

  .review-arrow {
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 30px !important;
  }

  .review-slider {
    padding-bottom: 62px !important;
  }

  .review-prev {
    left: calc(50% - 54px) !important;
    right: auto !important;
  }

  .review-next {
    right: calc(50% - 54px) !important;
    left: auto !important;
  }

  .review-dots {
    margin-top: 18px !important;
  }

  .cta-box,
  .strong-cta-box {
    text-align: center !important;
    padding: 32px 20px !important;
    border-radius: 26px !important;
  }

  .strong-cta-buttons {
    flex-direction: column !important;
  }

  .contact-info,
  .footer {
    text-align: center !important;
  }

  .contact-form {
    padding: 22px 16px !important;
  }

  .footer {
    padding: 45px 0 95px !important;
    background: rgba(0, 9, 49, 0.35) !important;
  }

  .footer-grid {
    justify-items: center !important;
    gap: 30px !important;
  }

  .footer-brand {
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .footer-brand p {
    max-width: 300px !important;
    margin: 0 auto !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
  }

  .footer-column {
    align-items: center !important;
    gap: 9px !important;
  }

  .footer-column a {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
    font-size: 13.5px !important;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 430px;
    height: 66px;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    z-index: 9995;
    overflow: hidden !important;
    padding: 6px !important;
    background: linear-gradient(180deg, rgba(13, 40, 88, 0.92), rgba(0, 9, 49, 0.92));
    border: 1px solid rgba(55, 202, 250, 0.22);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45), 0 0 35px rgba(55, 202, 250, 0.12);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-soft);
    font-weight: 600;
    transition: 0.25s ease;
    border-radius: 20px;
  }

  .mobile-bottom-nav a span {
    font-size: 20px;
    line-height: 1;
    color: var(--primary);
  }

  .mobile-bottom-nav a small {
    font-size: 10.5px;
  }

  .mobile-bottom-nav a.active {
    color: #ffffff !important;
    background: rgba(55, 202, 250, 0.14) !important;
    box-shadow: inset 0 0 18px rgba(55, 202, 250, 0.16) !important;
  }

  .mobile-bottom-nav a.active span {
    transform: scale(1.08) !important;
    text-shadow: 0 0 12px rgba(55, 202, 250, 0.55) !important;
  }

  .mobile-bottom-nav a.active::before {
    display: none !important;
    content: none !important;
  }

  .whatsapp-float {
    width: 48px !important;
    height: 48px !important;
    right: 14px !important;
    bottom: 92px !important;
  }

  .back-to-top {
    width: 40px !important;
    height: 40px !important;
    right: 16px !important;
    bottom: 152px !important;
  }

  .cursor-glow,
  .click-ripple {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .desktop-about-image {
    display: block !important;
  }

  .mobile-about-image {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: none !important;
  }
}
/* MOBILE 2 COLUMNS LAYOUT - KEEP DESKTOP SAFE */

@media (max-width: 768px) {

  /* Tools: 2 f ligne */
  .tools-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .tool-card {
    padding: 22px 14px !important;
    text-align: center !important;
  }

  .tool-logo {
    width: 62px !important;
    height: 62px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 14px !important;
  }

  .tool-logo img {
    width: 38px !important;
    height: 38px !important;
  }

  .tool-card h3 {
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .tool-card p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }


  /* About cards 01 / 02 / 03 / 04: 2 f ligne */
  .about-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .about-card {
    padding: 22px 14px !important;
    text-align: center !important;
  }

  .about-card h3 {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }

  .about-card p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin: 0 auto !important;
  }


  /* Process cards: 2 f ligne */
  .process-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .process-card {
    padding: 22px 14px !important;
    text-align: center !important;
  }

  .process-card span {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .process-icon {
    width: 58px !important;
    height: 58px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 14px !important;
  }

  .process-icon img {
    width: 34px !important;
    height: 34px !important;
  }

  .process-card h3 {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .process-card p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }


  /* Portfolio categories: 2 f ligne */
  .portfolio-categories {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .work-card {
    border-radius: 20px !important;
  }

  .work-image {
    aspect-ratio: 1 / 1 !important;
  }

  .work-content {
    padding: 14px !important;
    text-align: center !important;
  }

  .work-content h3 {
    font-size: 15px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .work-content p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
}
/* MOBILE HERO STATS IN ONE LINE */

@media (max-width: 768px) {
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .stat-card {
    padding: 16px 8px !important;
    text-align: center !important;
    border-radius: 18px !important;
    min-height: 118px !important;
  }

  .stat-card h3 {
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .stat-card p {
    font-size: 10.5px !important;
    line-height: 1.45 !important;
  }
}
/* MOBILE FIXED HEADER */

@media (max-width: 768px) {
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: rgba(0, 9, 49, 0.92) !important;
    backdrop-filter: blur(14px) !important;
  }

  body {
    padding-top: 70px !important;
  }

  .menu {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
  }
}
/* MOBILE SCROLL APPEAR ANIMATION */

@media (max-width: 768px) {
  .mobile-appear {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
    filter: blur(6px);
    transition:
      opacity 0.75s ease,
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.75s ease;
  }

  .mobile-appear.mobile-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
/* DESKTOP SECTION SPACING FIX - KEEP MOBILE SAFE */

@media (min-width: 769px) {
  .section {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .hero {
    padding-top: 70px !important;
    padding-bottom: 65px !important;
  }

  .personal-brand-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .section-heading {
    margin-bottom: 42px !important;
  }

  .tools,
  .services,
  .about,
  .process,
  .work,
  .reviews,
  .faq,
  .contact,
  .strong-cta {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
}
/* DESKTOP REVIEWS 2 CARDS LAYOUT */

@media (min-width: 769px) {
  .review-slider {
    max-width: 1150px !important;
    gap: 24px !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
  }

  .review-slide {
    width: auto !important;
    flex: 0 0 calc(50% - 12px) !important;
  }

  .review-slide.active {
    display: block !important;
  }

  .review-prev {
    left: -70px !important;
  }

  .review-next {
    right: -70px !important;
  }
}
/* PREMIUM PORTFOLIO VIDEO SHOWREEL */

.portfolio-video-section {
  padding: 80px 0;
  position: relative;
}

.video-showreel-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(0, 14, 71, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 35px 120px rgba(0,0,0,0.45),
    0 0 70px rgba(55,202,250,0.13);
  overflow: hidden;
}

.video-showreel-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(55,202,250,0.18) 25%,
    rgba(255,255,255,0.16) 50%,
    rgba(55,202,250,0.18) 75%,
    transparent 100%
  );
  opacity: 0.6;
  transform: translateX(-100%);
  animation: videoBorderMove 5s ease-in-out infinite;
  pointer-events: none;
}

.video-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(55,202,250,0.28), transparent 65%);
  filter: blur(10px);
  animation: videoGlowFloat 4s ease-in-out infinite alternate;
}

.video-content {
  position: relative;
  z-index: 2;
}

.video-label {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(55,202,250,0.12);
  border: 1px solid rgba(55,202,250,0.25);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.video-content h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  margin-bottom: 16px;
  color: #fff;
}

.video-content p {
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 440px;
}

.video-frame {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.45),
    0 0 35px rgba(55,202,250,0.16);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.video-frame:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.55),
    0 0 60px rgba(55,202,250,0.28);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile video section */
@media (max-width: 768px) {
  .portfolio-video-section {
    padding: 55px 0;
  }

  .video-showreel-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
    border-radius: 28px;
    text-align: center;
  }

  .video-content p {
    margin: 0 auto;
    font-size: 13.5px;
  }

  .video-content h2 {
    font-size: 30px;
  }

  .video-frame {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: auto !important;
  height: auto !important;
  border-radius: 22px !important;
  transform: none !important;
  background: #020617 !important;
}

.video-frame video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

  .video-frame:hover {
    transform: none;
  }
}

@keyframes videoBorderMove {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  35% {
    opacity: 0.65;
  }

  70% {
    transform: translateX(100%);
    opacity: 0.65;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes videoGlowFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-40px, 35px) scale(1.15);
  }
}
/* FIX MOBILE VIDEO EMPTY SPACE */

@media (max-width: 768px) {
  .portfolio-video-section {
    padding: 35px 0 !important;
  }

  .video-showreel-card {
    padding: 18px !important;
    gap: 18px !important;
  }

  .video-frame {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 22px !important;
    transform: none !important;
    background: #020617 !important;
  }

  .video-frame video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
/* HIDE PORTFOLIO VIDEO ON MOBILE ONLY */

@media (max-width: 768px) {
  .portfolio-video-section {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
}
/* SHOW PORTFOLIO VIDEO ON DESKTOP */

@media (min-width: 769px) {
  .portfolio-video-section {
    display: block !important;
  }
}
/* REMOVE LOADING SCREEN COMPLETELY */

.loader,
#loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body {
  overflow: auto !important;
}

.reveal,
.mobile-appear {
  opacity: 1;
}