/* =======================
   GLOBAL STYLES (PRISMA LUXURY REDESIGN)
======================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1f2937;
  overflow-x: hidden;
  padding-top: 120px;

  /* NEW BLACK PRISMA BACKGROUND (safe, no layout impact) */
  background: linear-gradient(135deg, #000000 0%, #050505 60%, #0a0a0f 100%);
}

/* IMAGE */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* TEXT */
p {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.7;
}

h1, h2, h3 {
  color: #f8fafc;
  font-weight: 500;
}



/* =======================
   NAVBAR
======================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 12px 8%;

    background: rgba(10, 12, 28, 0.55);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}




/* ================= LOGO BRAND BLOCK ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
   margin-right: 40px;
}

.logo {
    flex: 1;
}


/* circular logo */
.logo img {
  width: 130px;
  height: 130px;

  border-radius: 50%;
  object-fit: contain;
}

/* brand text container */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  margin-top: 40px;
}

/* brand name */
.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #f8fafc;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

/* tagline */
.brand-tagline {
 font-size: 17px;
  color: rgba(226, 232, 240, 0.65);
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 900px) {

  .logo {
    gap: 8px;
    margin-right: 0;
  }

  .logo img {
    width: 90px;
    height: 90px;
  }

  .brand-text {
    margin-top: 20px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 14px;
  }

}
@media (max-width: 480px) {

  .logo img {
    width: 70px;
    height: 70px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

}
/* ================= NAV (CENTERED) ================= */

.nav {
  
  display: flex;
 justify-content: flex-end; /* KEY CHANGE */
  align-items: center;

  gap: 28px; /* 👈 spacing between links */
}

/* ================= NAV LINKS ================= */

.nav-link,
.dropdown-toggle {
  background: none;
  border: none;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;

  color: rgba(226, 232, 240, 0.75);
  cursor: pointer;

  position: relative;
  text-decoration: none;

  transition: 0.3s ease;
}

/* underline animation */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, #38bdf8, #2563eb);
  transition: 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}

.nav-link.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}

/* ================= BADGES ================= */

.nav-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;

  border-radius: 999px;
  text-transform: uppercase;

  vertical-align: middle;
}

.nav-badge.new {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.nav-badge.kids {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

/* =======================
   DROPDOWN
======================= */

.dropdown {
  position: relative;
}

/* button */
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between; /* pushes arrow right */
  gap: 8px;
}

/* arrow */
.dropdown-toggle::before {
  content: "⌄";
  content: none; /* remove old arrow */
  font-size: 12px;

  color: rgba(226,232,240,0.65);

  transition: 0.3s ease;
}

/* rotate arrow */
.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* =======================
   DROPDOWN MENU
======================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% + 20px);
  left: 0;

  min-width: 260px;

  padding: 14px;

  border-radius: 20px;

  background: rgba(10,12,28,0.92);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: 0.35s ease;

  z-index: 100;
}

/* show menu */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* links */
.dropdown-menu a {
  display: flex;
  align-items: center;

  padding: 14px 16px;

  border-radius: 14px;

  color: rgba(226,232,240,0.78);

  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition: 0.3s ease;
}

/* hover */
.dropdown-menu a:hover {
  background: rgba(56,189,248,0.08);

  color: #38bdf8;

  transform: translateX(4px);
}

/* =======================
   MOBILE
======================= */

/* =======================
MOBILE
======================= */

@media (max-width: 1200px) {

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ================= LOGIN BUTTON ================= */
.login-btn {
  flex: 0 0 auto;

  padding: 10px 22px;
  border-radius: 10px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;

  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;

  animation: pulseGlow 2.5s infinite;
}

.login-btn:hover {

  animation: none;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.25);
}

/* pulse */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(56, 189, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;

  background: rgba(226, 232, 240, 0.8);
  border-radius: 3px;

  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


@media (max-width: 1200px){

  .logo img{
    width:90px;
    height:90px;
  }

  .brand-text{
    margin-top:20px;
  }

  .brand-name{
    font-size:22px;
  }

  .brand-tagline{
    font-size:14px;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 1200px) {

  .main-header {
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;

    height: 100vh;
    width: 280px;

    background: rgba(10, 12, 28, 0.92);
    backdrop-filter: blur(25px);

    flex-direction: column;
    justify-content: flex-start;

    padding: 120px 30px;
    gap: 25px;

    border-left: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}
/* ================= HERO SECTION ================= */

.prisma-hero {
  padding: 100px 8% 80px;
  background: transparent;
}

.prisma-hero .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  gap: 60px;
  max-width: 1200px;
  margin: auto;

  flex-wrap: wrap;
}

/* TOP HERO LOGOS */

.hero-top-logos{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:24px;
}

.hero-top-logo{
  width:200px;
  height:auto;
  object-fit:contain;
  display:block;
}

/* TABLET */

@media (max-width:992px){

  .hero-top-logos{
    justify-content:center;
  }

}

/* MOBILE */

@media (max-width:480px){

  .hero-top-logos{
    gap:12px;
  }

  .hero-top-logo{
    width:105px;
  }

}

/* HERO TEXT */
.prisma-hero .hero-content {
  flex: 1;
}

.prisma-hero .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;

  color: #f8fafc;
  font-family: "Montserrat", sans-serif;
}

.prisma-hero .hero-content p {
  font-size: 1.1rem;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 25px;
}

.prisma-hero .hero-divider {
  position: relative;

  width: 610px;
  height: 4px;

  border: none;
  border-radius: 999px;

  margin: 18px 0 22px;

  overflow: hidden;

  background: linear-gradient(
    90deg,
    #f97316,
    #38bdf8,
    #ef4444,
    #ffffff,
    #38bdf8,
    #f97316
  );

  background-size: 300% 100%;

  animation: dividerFlow 7s linear infinite;

  box-shadow:
    0 0 10px rgba(56,189,248,0.22),
    0 0 22px rgba(249,115,22,0.16),
    0 0 34px rgba(239,68,68,0.1);
}

/* animated shine */
.prisma-hero .hero-divider::before {
  content: "";

  position: absolute;
  top: -10px;
  left: -25%;

  width: 20%;
  height: 24px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.95),
    transparent
  );

  filter: blur(5px);

  transform: skewX(-25deg);

  animation: dividerShine 3.2s linear infinite;
}

/* flowing gradient */
@keyframes dividerFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* moving light streak */
@keyframes dividerShine {
  0% {
    left: -25%;
  }

  100% {
    left: 125%;
  }
}


.hero-buttons {
  display: flex;
  gap: 22px; /* 👈 bigger gap between buttons */
  flex-wrap: wrap;
  align-items: center;
}

.prisma-hero .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 30px;
  border-radius: 12px;

  font-weight: 600;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #2563eb, #38bdf8);
 
  overflow: hidden;
  transition: all 0.3s ease;
}

/* shimmer effect */
.prisma-hero .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transition: 0.6s;
}

.prisma-hero .btn-primary:hover::before {
  left: 120%;
}

.prisma-hero .btn-primary:hover {
  
   box-shadow: 0 18px 40px rgba(56, 189, 248, 0.2);
}

/* SECOND BUTTON */
.btn-hero2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 30px;
  border-radius: 12px;

  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  color: #ffffff;

  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.08);

  backdrop-filter: blur(14px);

  transition: all 0.3s ease;
  overflow: hidden;
}

/* soft glow hover */
.btn-hero2:hover {
  
  background: rgba(56, 189, 248, 0.15);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.5);
}

/* ================= IMAGE ================= */

.prisma-hero .hero-image {
  flex: 1;
  max-width: 450px;
  margin: auto;
   background: transparent;
}

.prisma-hero .hero-image img {
  width: 100%;
  border-radius: 20px;

   

  background: transparent;
}




/* ================= RESPONSIVE SYSTEM ================= */

/* ===== LARGE TABLETS / SMALL LAPTOPS ===== */
@media (max-width: 1024px) {

  .prisma-hero .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .prisma-hero .hero-content {
    max-width: 700px;
    margin: auto;
  }

  .prisma-hero .hero-image {
    max-width: 380px;
  }

  .prisma-hero .hero-divider {
    width: 70%; /* prevents overflow on smaller screens */
    margin: 18px auto 22px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===== TABLETS ===== */
@media (max-width: 768px) {

  .prisma-hero {
    padding: 120px 6% 60px;
  }

  .prisma-hero .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .prisma-hero .hero-content p {
    font-size: 1rem;
  }

  .prisma-hero .hero-image {
    max-width: 320px;
  }

  .hero-top-logo {
    width: 160px;
    
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .prisma-hero .hero-content h1 {
    font-size: 1.9rem;
  }

  .prisma-hero .hero-content p {
    font-size: 0.95rem;
  }

  .prisma-hero .hero-image {
    max-width: 260px;
  }

  .hero-top-logo {
    width: 140px;
  }

  .prisma-hero .hero-divider {
    width: 85%;
  }
}






/* ================= DIVIDER ================= */

.section-divider {
  border: none;
  height: 1px;
  background: rgba(226, 232, 240, 0.12); /* light grey */
  margin: 40px auto;
  width: 85%;
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 80px 8%;
  background: transparent;
}


.about-logo{
  width:150px;
  height:auto;
  display:block;

  margin-bottom:22px;

  opacity:0.95;

  filter:
    drop-shadow(0 10px 30px rgba(0,0,0,0.35));

  transition:0.3s ease;
}

.about-logo:hover{
  transform:translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {

  .about-content {
    text-align: center;
  }

  .about-logo {
    margin: 0 auto 22px;
  }

}

@media (max-width: 480px) {

  .about-content {
    text-align: center;
  }

  .about-logo {
    margin: 0 auto 22px;
  }

}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 800px;

  border-radius: 20px;
  object-fit: cover;

 
}

/* TEXT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.3rem;
  color: #f8fafc;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.about-content p {
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 15px;
  line-height: 1.6;
}




/* ================= PREMIUM BUTTON ================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  text-decoration: none;
  border-radius: 12px;
  border: none;

  background: linear-gradient(135deg, #eba625d8, #eba625d8);
  color: #fff;

  font-size: 16px;
  font-weight: 600;

  padding: 14px 22px;

  cursor: pointer;
  width: auto;

  position: relative;
  overflow: hidden;

  transition: all 0.3s ease;

 
}

/* TEXT */
.button span {
  position: relative;
  transition: transform 0.3s ease;
}

/* ARROW (modern version instead of ugly >>) */
.button span::after {
  content: "→";
  position: absolute;

  right: -18px;
  opacity: 0;

  transform: translateX(-6px);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.button:hover {
 
  box-shadow: 0 20px 50px rgba(255, 174, 0, 0.236);
  padding-right: 26px;
}

.button:hover span::after {
  opacity: 1;
  transform: translateX(0);
}




/* ================= RESPONSIVE SYSTEM ================= */

/* LARGE TABLETS / SMALL LAPTOPS */
@media (max-width: 1024px) {

  .about-container {
    gap: 40px;
  }

  .about-image img {
    max-width: 600px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .section-divider {
    width: 90%;
  }
}

/* TABLETS */
@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .about-image img {
    max-width: 380px;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .about-section {
    padding: 60px 6%;
  }

  .about-image img {
    max-width: 280px;
  }

  .about-content h2 {
    font-size: 1.7rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .section-divider {
    width: 85%;
    margin: 40px auto;
  }

  /* BUTTON FIX */
  .button {
    width: 100%;
    justify-content: center;
  }
}


/* ================= FEATURES SECTION ================= */

.features-section {
  padding: 90px 8%;
}


/* ================= BADGES ONLY ================= */

.tech-tag {
  display: inline-block;

  font-size: 12px;
  font-weight: 600;

  padding: 6px 12px;
  border-radius: 999px;

  margin-bottom: 18px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(10px);
}

/* COLOR VARIANTS */
.tech-tag.orange {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.4);
}

.tech-tag.blue {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.4);
}

.tech-tag.purple {
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.4);
}

/* =======================
   FEATURES SECTION (REDESIGNED)
======================= */

.features-section {
  padding: 50px 8%;
  background: transparent;
}

/* =======================
   HEADER
======================= */

.features-header {
  text-align: center;
  margin-bottom: 25px;
}

.features-header h2 {
  font-size: 3.2rem;
  color: #f8fafc;
  font-family: "Montserrat", sans-serif;
  margin-top: 14px;
  line-height: 1.2;
}

.features-subtext {
  text-align: center;
  max-width: 850px;
  margin: 30px auto 90px;

  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.7);
}

/* =======================
   GRID
======================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;

  max-width: 1300px;
  margin: auto;
}

/* =======================
   FEATURE CARD (LUXURY GLASS)
======================= */

.feature-card {
  position: relative;

  padding: 50px;
  min-height: 440px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;

  transition: 0.4s ease;

  overflow: hidden;
}

/* hover effect */
.feature-card:hover {
  transform: translateY(-14px);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

/* =======================
   CONTENT
======================= */

.card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding-bottom: 120px; /* creates reserved space for logo */
}

.feature-card h4 {
  font-size: 1.25rem;
  color: #f8fafc;
  font-weight: 600;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.7);
}

/* =======================
   TAGS (tech badge reused)
======================= */

.tech-tag {
  display: inline-block;
  width: fit-content;

  padding: 6px 14px;
  border-radius: 999px;

  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: rgba(226, 232, 240, 0.8);

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* optional color accents */
.tech-tag.orange { color: #fbbf24; }
.tech-tag.blue { color: #38bdf8; }
.tech-tag.purple { color: #a78bfa; }

/* =======================
   LOGO (BOTTOM RIGHT)
======================= */

.card-logo {
  position: absolute;
  bottom: 24px;
  right: 24px;

  width: 170px;   /* 🔥 increased size */
  height: auto;

  opacity: 0.25;
  transition: 0.4s ease;

  object-fit: contain;
}




.card-logo1 {
  position: absolute;
  bottom: 24px;
  right: 24px;

  width: 200px;   /* 🔥 increased size */
  height: auto;

  opacity: 0.25;
  transition: 0.4s ease;

  object-fit: contain;
}


/* =======================
   LINK
======================= */

.feature-card a {
  margin-top: 22px;
  display: inline-block;

  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;
}

.feature-card a:hover {
  color: #ffffff;
  transform: translateX(6px);
}


/* =======================
   ADVANCED LENS BUTTON
======================= */

.lens-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 30px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #f8fafc;
  text-decoration: none;

  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: 1px solid rgba(56, 189, 248, 0.35);

  overflow: hidden;
  cursor: pointer;

  transition: all 0.35s ease;

  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.15);
}

/* hover lift + glow */
.lens-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.25);
}

/* click feel */
.lens-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* =======================
   LIGHT SWEEP EFFECT
======================= */

.lens-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.lens-btn:hover::before {
  left: 130%;
}

/* =======================
   GLOW RING PULSE
======================= */

.lens-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;

  border: 1px solid rgba(56, 189, 248, 0.4);

  opacity: 0;
  transform: scale(1.1);

  transition: 0.4s ease;
}

.lens-btn:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-header h2 {
    font-size: 2.4rem;
  }

  .feature-card {
    padding: 35px;
    min-height: auto;
  }
}


/* =========================
   LENS SHOWCASE
========================= */

.lens-showcase {
  position: relative;

  padding: 140px 8%;
  margin-top: -80px;
  overflow: hidden;
  margin-bottom: -80px;

}



/* =========================
   GRID BACKGROUND
========================= */

.lens-showcase::before {
  content:"";

  position: absolute; /*  changed from fixed */

  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 50px 50px;

  pointer-events: none;

  z-index: 0;
}

/* =========================
   GRID
========================= */

.lens-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;

  max-width: 1500px;

  margin: auto;
}

/* =========================
   CARD
========================= */

.lens-card {
  position: relative;

  overflow: hidden;

  min-height: 720px;
  padding: 60px 60px 360px;
 

  border-radius: 36px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;

  transition: 0.45s ease;

  isolation: isolate;
}

.lens-card:hover {
  transform: translateY(-10px);

  border-color: rgba(56,189,248,0.25);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.45);
}

/* glow effect */
.lens-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(56,189,248,0.08),
      transparent 30%);

  opacity: 0;

  transition: 0.5s ease;

  z-index: -1;
}

.lens-card:hover::before {
  opacity: 1;
}

/* =========================
   HUGE IMAGE
========================= */

.card-logo1 {
  position: absolute;

  bottom: 20px;
  left: 50%;

  transform: translateX(-50%);

  width: 75%;
  max-width: 500px;

  max-height: 320px;

  object-fit: contain;

  opacity: 0.95;

  pointer-events: none;

  transition: 0.5s ease;
}

/* hover */
.lens-card:hover .card-logo1 {
  transform: translateX(-50%) scale(1.04);
}

@media (max-width: 600px) {
  .lens-card:hover .card-logo1 {
    transform: none;
  }
}
/* =========================
   TAGS
========================= */

.lens-tag {
  width: fit-content;

  padding: 10px 18px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.5px;

  margin-bottom: 28px;

  backdrop-filter: blur(10px);

  background: rgba(255,255,255,0.03);
}

.lens-tag.orange {
  color: #f97316;
  border: 1px solid rgba(249,115,22,0.4);
}

.lens-tag.blue {
  color: #38bdf8;
  border: 1px solid rgba(56,189,248,0.4);
}

.lens-tag.purple {
  color: #a855f7;
  border: 1px solid rgba(168,85,247,0.4);
}

.lens-tag.green {
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.4);
}

/* =========================
   TEXT
========================= */

.lens-card h2 {
  font-size: 3rem;

  line-height: 1;

  margin-bottom: 28px;

  color: #f8fafc;

  letter-spacing: 2px;

  font-family: "Montserrat", sans-serif;

  max-width: 500px;
}

.lens-card p {
  font-size: 1.15rem;

  line-height: 1.9;

  color: rgba(226,232,240,0.72);

  max-width: 520px;

  margin-bottom: 40px;
}

/* =========================
   BUTTON
========================= */

.lens-card a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: fit-content;

  padding: 18px 30px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.1);

  background: rgba(255,255,255,0.03);

  color: #fff;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

.lens-card a:hover {
  background: #38bdf8;

  color: #000;

  border-color: #38bdf8;
}

/* =========================
   CENTER BLOCK
========================= */

.lens-center {
  position: relative;
  z-index: 2;

  text-align: center;

  margin: 110px auto;

  max-width: 800px;
}

.center-logo {
  width: 300px;

  margin: auto auto 25px;

  display: block;
}

.lens-center h3 {
  font-size: 3.2rem;

  color: #fff;

  margin-bottom: 24px;

  font-family: "Montserrat", sans-serif;
}

.center-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 999px;

  background: rgba(255,255,255,0.03);
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;

  z-index: 1;
  overflow: hidden;
}

.center-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;

  background: linear-gradient(90deg, red, blue, orange, white);
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  z-index: -1;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.center-btn:hover {

  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .lens-card {
    min-height: 650px;
    padding: 50px 50px 320px;
  }

  .lens-card h2 {
    font-size: 2.6rem;
  }

  .card-logo1 {
    width: 70%;
  }
}

@media (max-width: 900px) {

  .lens-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lens-card {
    min-height: 680px;
    padding: 45px 40px 300px;
  }

  .lens-card h2 {
    font-size: 2.4rem;
  }

  .lens-card p {
    font-size: 1.05rem;
  }

  .card-logo1 {
    width: 60%;
    max-height: 240px;
  }

  .lens-center {
    margin: 80px auto;
  }

  .lens-center h3 {
    font-size: 2.2rem;
  }

  .center-logo {
    width: 220px;
  }
}

@media (max-width: 600px) {

  .lens-showcase {
    padding: 90px 5%;
  }

  .lens-grid {
    gap: 24px;
  }

  .lens-card {
    min-height: auto;
    padding: 35px 25px;
    border-radius: 24px;
  }

  .lens-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .lens-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  /* Image moves below content on mobile */
  .card-logo1 {
    position: static;
    display: block;
    width: 85%;
    max-width: 280px;
    margin: 30px auto 0;

    transform: none !important;
    max-height: none;
  }

  /* Prevent left-right jump */
  .lens-card:hover .card-logo1 {
    transform: none !important;
  }

  .lens-center {
    margin: 70px auto;
  }

  .center-logo {
    width: 140px;
  }

  .lens-center h3 {
    font-size: 1.8rem;
  }

  .center-btn {
    padding: 16px 28px;
    font-size: 14px;
  }
}

/* =========================
   SECTION
========================= */

.myopia-section {
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* =========================
   CARD
========================= */

.myopia-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position:relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 32px;
  overflow: hidden;

  backdrop-filter: blur(12px);

  min-height: 700px;
}

/* reverse layout */
.myopia-card.reverse {
  grid-template-columns: 1fr 1fr;
}

/* =========================
   RIGHT LOGOS
========================= */

.corner-logos{
    position:absolute;
    top:28px;
    right:28px;

    display:flex;
    align-items:center;
    gap:16px;

    z-index:5;
}

.corner-logo{
    height:40px;
    width:auto;

    opacity:0.95;
    filter:drop-shadow(0 10px 30px rgba(0,0,0,0.35));
    transition:0.3s ease;
}

.corner-logo:hover{
    transform:scale(1.04);
}


/* =========================
   MAIN CORNER LOGO
========================= */

.myopia-corner-logo{
    position:absolute;
    top:28px;
    right:28px;

    width:150px;
    height:auto;

    z-index:5;

    opacity:0.95;
    filter:drop-shadow(0 10px 30px rgba(0,0,0,0.35));
    transition:0.3s ease;
}

.myopia-corner-logo:hover{
    transform:scale(1.04);
}


/* LEFT VERSION */

.myopia-corner-logo.left{
    left:28px;
    right:auto;
}


/* =========================
   LEFT PARTNER LOGOS
========================= */

.corner-logos-left{
    position:absolute;
    top:28px;
    left:28px; /* beside the left Myopia logo */

    display:flex;
    align-items:center;
    gap:16px;

    z-index:5;
}


/* =========================
   TABLET
========================= */

@media (max-width:992px){

    .myopia-corner-logo{
        width:90px;
        top:18px;
        right:18px;
    }

    .myopia-corner-logo.left{
        left:18px;
    }

    .corner-logos{
        top:18px;
        right:18px;
        gap:10px;
    }

    .corner-logos-left{
        top:18px;
        left:120px; /* beside 90px logo */
        gap:10px;
    }

    .corner-logo{
        height:30px;
    }
}


/* =========================
   SMALL PHONES
========================= */


@media (max-width:480px){

    /* left Myopia logo */
    .myopia-corner-logo.left{
        width:70px;
        top:15px;
        left:15px;
    }



    .corner-logos-left{
        position:absolute;
        top:15px;

        /* remove left positioning completely */
        left:auto;

        /* move to right side */
        right:15px;

        gap:6px;
    }

    .corner-logos-left .corner-logo{
        height:20px;
    }




    .corner-logo{
        height:20px;
    }

    /* right logos stay top-right */
    .corner-logos{
        top:15px;
        right:15px;
        gap:6px;
    }


}
/* =========================
   CONTENT
========================= */

.myopia-content {
  padding: 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* badge */
.myopia-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;

  padding: 10px 18px;
  border-radius: 999px;

  border: 1px solid rgba(132, 204, 22, 0.4);

  color: #84cc16;
  font-size: 14px;
  font-weight: 600;

  margin-bottom: 40px;
}

.myopia-tag.blue {
  color: #38bdf8;
  border-color: rgba(56,189,248,0.4);
}

.myopia-tag.red {
  color: #ff0000;
  border-color: rgba(251, 0, 0, 0.4);
}
.myopia-tag.orange {
  color: #ff8c00;
  border-color: rgba(251, 125, 0, 0.4);
}

.myopia-tag.pink {
  color: #ff0080;
  border-color: rgba(251, 0, 142, 0.4);
}

.myopia-tag.yellow {
  color: #ffee00;
  border-color: rgba(251, 238, 0, 0.4);
}

.myopia-tag.purple {
  color: #9500ff;
  border-color: rgba(230, 0, 251, 0.4);
}

.myopia-tag.turq {
  color: #00ffff;
  border-color: rgba(0, 251, 247, 0.4);
}

.myopia-tag.white {
  color: #ffffff;
  border-color: rgb(255, 255, 255);
}

/* title */
.myopia-title {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 30px;
}

.myopia-title img {
  width: 120px;
}

.myopia-title h2 {
  font-size: 2.4rem;
  color: #f8fafc;
  letter-spacing: 2px;
}

/* paragraph */
.myopia-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(226,232,240,0.7);

  max-width: 650px;

  margin-bottom: 50px;
}

/* button */
.myopia-btn {
  width: fit-content;

  padding: 18px 32px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.12);

  color: #fff;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.myopia-btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   IMAGE
========================= */

.myopia-image {
  height: 100%;
}

.myopia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

  .myopia-section {
    padding: 60px 5%;
    gap: 40px;
  }

  .myopia-card,
  .myopia-card.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .myopia-content {
    padding: 50px 35px;
  }

  .myopia-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .myopia-title img {
    width: 90px;
  }

  .myopia-title h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .myopia-content p {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .myopia-image {
    height: 400px;
  }

  .corner-logo {
    height: 30px;
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .myopia-section {
    padding: 50px 20px;
    gap: 30px;
  }

  .myopia-content {
    padding: 40px 25px;
  }

  .myopia-title h2 {
    font-size: 1.8rem;
  }

  .myopia-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .myopia-image {
    height: 320px;
  }

  .myopia-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .corner-logo {
    height: 25px;
  }

  .myopia-tag {
    font-size: 12px;
    padding: 8px 14px;
  }
}


/* =========================
   SMALL PHONES
========================= */
@media (max-width: 480px) {

  .myopia-content {
    padding: 35px 20px;
  }

  .myopia-title img {
    width: 70px;
  }

  .myopia-title h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .myopia-content p {
    font-size: 0.9rem;
  }

  .myopia-image {
    height: 250px;
  }

  .corner-logos,
  .corner-logos-left {
    top: 15px;
    left: 15px;
    right: 15px;
    gap: 8px;
  }

  .corner-logo {
    height: 22px;
  }
}
/* =========================
   PREMIUM TESTIMONIALS
========================= */

.premium-testimonials{
  position:relative;
  padding:120px 0;
  overflow:hidden;
}

/* =========================
   HEADER
========================= */

.premium-testimonial-header{
  text-align:center;
  margin-bottom:80px;
  padding:0 8%;
}

.premium-logo-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
}

.premium-header-logo{
  width:180px;
  height:auto;
  display:block;

  filter:drop-shadow(0 10px 30px rgba(0,0,0,.3));

  transition:.35s ease;
}

.premium-header-logo:hover{
  transform:translateY(-4px);
}

.premium-testimonial-header h2{
  font-size:3.2rem;
  line-height:1.15;
  color:#fff;
  margin-bottom:18px;
  font-family:"Montserrat",sans-serif;
}

.premium-testimonial-header p{
  max-width:700px;
  margin:auto;

  color:rgba(226,232,240,.72);
  line-height:1.8;
  font-size:1.05rem;
}

/* =========================
   SLIDER
========================= */

.premium-slider{
  overflow:hidden;
  padding:25px 0; /* prevents clipping */
}

.premium-track{
  display:flex;
  align-items:stretch;

  gap:40px;

  width:max-content;

  padding:0 40px;

  animation:premiumScroll 40s linear infinite;
}

.premium-slider:hover .premium-track{
  animation-play-state:paused;
}

/* =========================
   CARD
========================= */

.premium-card{
  width:440px;
  min-height:340px;

  padding:46px;

  border-radius:34px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);

  display:flex;
  flex-direction:column;

  transition:.4s ease;

  box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.premium-card:hover{
  transform:translateY(-12px);

  border-color:#ffbf00;

  box-shadow:
    0 35px 90px rgba(0,0,0,.45);
}

/* =========================
   STARS
========================= */

.premium-stars{
  color:#ffbf00;
  letter-spacing:5px;
  margin-bottom:28px;
  font-size:1rem;
}

/* =========================
   QUOTE
========================= */

.premium-card p{
  color:rgba(226,232,240,.72);

  font-size:1.15rem;
  line-height:1.9;

  margin-bottom:40px;
}

/* =========================
   PRODUCT
========================= */

.premium-product{
  display:flex;
  align-items:center;
  gap:18px;

  margin-top:auto;
}

/* =========================
   ICON
========================= */

.premium-icon{
  width:100px;
  height:100px;

  flex-shrink:0;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,191,0,.8);

  display:flex;
  align-items:center;
  justify-content:center;

  padding:12px;
}

.premium-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* =========================
   PRODUCT TEXT
========================= */

.premium-product h4{
  margin:0 0 6px;

  font-size:1.2rem;
  color:#fff;
}

.premium-product span{
  color:rgba(226,232,240,.65);

  font-size:.95rem;
  line-height:1.5;
}

/* =========================
   ANIMATION
========================= */

@keyframes premiumScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){

  .premium-testimonial-header h2{
    font-size:2.6rem;
  }

  .premium-card{
    width:380px;
    min-height:330px;
    padding:38px;
  }

  .premium-icon{
    width:85px;
    height:85px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .premium-testimonials{
    padding:90px 0;
  }

  .premium-testimonial-header{
    padding:0 6%;
    margin-bottom:60px;
  }

  .premium-testimonial-header h2{
    font-size:2rem;
  }

  .premium-header-logo{
    width:120px;
  }

  .premium-track{
    gap:24px;
    padding:0 20px;
  }

  .premium-card{
    width:320px;
    min-height:300px;

    padding:30px;

    border-radius:26px;
  }

  .premium-card p{
    font-size:1rem;
    line-height:1.8;
  }

  .premium-icon{
    width:70px;
    height:70px;
  }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:480px){

  .premium-testimonial-header h2{
    font-size:1.7rem;
  }

  .premium-card{
    width:280px;
    min-height:280px;
    padding:24px;
  }

  .premium-card p{
    font-size:.95rem;
  }

  .premium-icon{
    width:60px;
    height:60px;
  }

  .premium-product h4{
    font-size:1rem;
  }

  .premium-product span{
    font-size:.85rem;
  }
}


/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(135deg, #39FF14, #00FF85);
  color: white;

  font-size: 26px;
  width: 90px;
  height: 90px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;

  transition: all 0.3s ease;

  /* 🔥 Glow effect */
  animation: pulse 2s infinite;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* 🔥 PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer {
  position: relative;

  overflow: hidden;

  padding: 100px 8% 40px;

  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.06), transparent 28%),
    linear-gradient(
      135deg,
      #050816 0%,
      #0b1120 45%,
      #020617 100%
    );
}

/* subtle texture */
.premium-footer::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);

  background-size: 80px 80px;

  opacity: 0.2;

  pointer-events: none;
}

/* =========================
   GRID
========================= */

.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr 1fr;

  gap: 60px;

  max-width: 1500px;

  margin: auto;
}

/* =========================
   BRAND
========================= */

.footer-logo {
  width: 320px;
  margin-bottom: 35px;
  transition: 0.35s ease;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 10px;
}

.footer-socials a {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);

  color: #fff;
  text-decoration: none;

  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}


/* hover */
.footer-socials a:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.06);
}

/* =========================
   LOGO WRAP
========================= */

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-wrap img {
  width: 300px;
  height: auto;
  object-fit: contain;

  margin-right: 110px;

  filter: brightness(1.05) contrast(1.1);
  opacity: 0.95;

  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

/* hover */
.footer-logo-wrap img:hover {
  transform: translateY(-3px) scale(1.03);
  opacity: 1;
  filter: brightness(1.1) contrast(1.15);
}
/* =========================
   TAGS
========================= */

.footer-tag {
  display: inline-block;

  padding: 12px 20px;

  border-radius: 18px;

  margin-bottom: 28px;

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: 2px;

  border: 1px solid;
}

.footer-tag.orange {
  color: #f97316;
  border-color: rgba(249,115,22,0.4);
}

.footer-tag.purple {
  color: #a855f7;
  border-color: rgba(168,85,247,0.4);
}

.footer-tag.blue {
  color: #38bdf8;
  border-color: rgba(56,189,248,0.4);
}

.footer-tag.green {
  color: #84cc16;
  border-color: rgba(132,204,22,0.4);
}

.second-tag {
  margin-top: 40px;
}

/* =========================
   LINKS
========================= */

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 18px;
}

.footer-column a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #38bdf8;
}

/* =========================
   CONTACT
========================= */

.footer-contact p {
  color: rgba(255,255,255,0.82);

  line-height: 1.7;

  margin-bottom: 28px;
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 18px;

  color: rgba(255,255,255,0.82);
}

.contact-item i {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.1);

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  background: rgba(255,255,255,0.03);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #38bdf8;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  position: relative;
  z-index: 2;

  margin-top: 80px;

  padding-top: 30px;

  border-top: 1px solid rgba(255,255,255,0.08);

  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);

  font-size: 0.95rem;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* LARGE TABLET */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .footer-logo-wrap img {
    max-width: 220px;
    margin-right: 0;
  }
}

/* SMALL TABLET */
@media (max-width: 768px) {
  .premium-footer {
    padding: 80px 5% 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-logo-wrap {
    justify-content: center;
    text-align: center;
  }

  .footer-logo-wrap img {
    max-width: 200px;
    margin-right: 0;
  }

  .footer-column {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .footer-logo-wrap img {
    max-width: 160px;
    margin-right: 0;
  }

  .footer-column a {
    font-size: 0.95rem;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}


/* ================================
   DIRECTION VARIATIONS
================================ */

/* From left */
.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

/* From right */
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.reveal-zoom{
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}


/* ================================
   STAGGER EFFECT (Apple feel)
================================ */

.reveal:nth-child(1){ transition-delay: 0.1s; }
.reveal:nth-child(2){ transition-delay: 0.2s; }
.reveal:nth-child(3){ transition-delay: 0.3s; }
.reveal:nth-child(4){ transition-delay: 0.4s; }
.reveal:nth-child(5){ transition-delay: 0.5s; }





/* ================================
   PERFORMANCE OPTIMIZATION
================================ */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
  will-change: transform, opacity;
}


/* ================================
   OPTIONAL: DISABLE ON SMALL DEVICES
================================ */

@media (max-width: 600px){
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom{
    transform: none;
    opacity: 1;
    transition: none;
  }
}