/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #1f2937;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

  .highlight {
      color: #166d8a;
      font-weight: 600;
    }
/* =======================
   NAVBAR
======================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 25px 8%; /* taller navbar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 90px;
  width: auto;
  transform: scale(3.0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(3.1);
}

/* ================= NAV ================= */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link,
.dropdown-toggle {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  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: #2563eb;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}
/* Keep underline for active page link */
.nav-link.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}


/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  padding: 15px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
  padding-left: 30px;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= LOGIN ================= */
.login-btn {
  padding: 10px 22px;
  border-radius: 25px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;

  /* 🔥 pulse animation */
  animation: pulseGlow 2.0s infinite;
}

/* hover overrides animation slightly */
.login-btn:hover {
  background: #1e4fd8;
  transform: translateY(-2px);
  animation: none;
}

/* ================= PULSE ANIMATION ================= */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Animate hamburger into X */
.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);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 120px 30px;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}



/* ================= HERO SECTION ================= */

/* NAVBAR OFFSET SYSTEM (IMPORTANT FIX) */
:root {
  --nav-height: 120px; /* adjust if your navbar changes */
}

body {
  padding-top: var(--nav-height);
}

/* HERO WRAPPER */
.designs-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: calc(90vh - var(--nav-height, 120px));
  padding: 60px 8% 80px;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;

  /* 🔥 FORCE CONTROLLED GAP */
  gap: 25px !important;  /* << REDUCED GAP HERE */
}

/* SUBTLE GLOW */
.designs-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.06);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
}

/* ================= TEXT ================= */

.hero-left {
  position: relative;
  z-index: 5;
  flex: 1;
  max-width: 550px;
}

.hero-left h1 {
  font-size: clamp(34px, 4vw, 52px);
  color: #001f3f;
  margin-bottom: 25px;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
}

.hero-left p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 35px;
  font-family: "Inter", sans-serif;
}

/* BUTTON */
.hero-left .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-left .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
}

/* ================= IMAGE ================= */

.hero-image {
  flex: 1;
  max-width: 520px;
  position: relative;
  z-index: 2;
  text-align: right;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(50px);
  z-index: -1;
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  
  transition: transform 0.4s ease;
}



/* ================= RESPONSIVE ================= */


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .designs-hero {
    flex-direction: column;
    text-align: center;
    gap: 30px !important;
  }
}

  .hero-left,
  .hero-image {
    max-width: 100%;
  }

  .hero-image {
    text-align: center;
  }


@media (max-width: 600px) {

  .designs-hero {
    padding: 30px 5% 60px;
  }

  .hero-left .btn-primary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 400px) {

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 14px;
  }
}
/* =========================================
   GLOBAL DESIGN SYSTEM (STABLE VERSION)
========================================= */

.design-block {
  padding: 100px 6%;
  background: #ffffff;
}

/* MAIN LAYOUT */
.design-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  flex-direction: row; /* ALWAYS define base */
}

/* GUARANTEED REVERSE */
.design-container.reverse {
  flex-direction: row-reverse !important;
}

/* =========================================
   IMAGES
========================================= */

.design-image,
.design-image1,
.design-image2,
.design-image3 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.design-image img,
.design-image1 img,
.design-image2 img,
.design-image3 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.3s ease;
 
}


/* =========================================
   CONTENT
========================================= */

.design-content,
.design-content1 {
  flex: 1;
}

.design-content h2,
.design-content1 h2 {
  font-size: 2rem;
  color: #001f3f;
  margin-bottom: 15px;
  line-height: 1.3;
}

.design-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.design-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.design-content ul li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  color: #374151;
}

/* =========================================
   VIDEO HEADING
========================================= */

.design-content1 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* =========================================
   RESPONSIVE FIX (IMPORTANT)
========================================= */

@media (max-width: 900px) {
  .design-container,
  .design-container.reverse {
    flex-direction: column !important;
    text-align: left;
    gap: 25px;
  }
}



/* =========================================
   BUTTONS (UNIFIED SYSTEM)
========================================= */

.hero-buttons,
.hero-buttons1 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-primary,
.btn-primary1 {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover,
.btn-primary1:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================================
   VIDEO SECTION
========================================= */

.design-video {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.design-video iframe {
  width: 100%;
  height: 450px;
  display: block;
}

/* =========================================
   FITTING SECTION
========================================= */

.fitting-section {
  padding: 120px 6%;
  background: #ffffff;
}

.fitting-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

.fitting-image,
.fitting-content {
  flex: 1;
}

.fitting-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #001f3f;
}

.fitting-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.fitting-content ul {
  list-style: none;
  padding: 0;
}

.fitting-content ul li {
  margin-bottom: 10px;
  color: #374151;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .design-container,
  .design-container.reverse,
  .fitting-container {
    flex-direction: column;
    text-align: left;
    gap: 25px;
  }

  .design-block,
  .fitting-section {
    padding: 70px 5%;
  }

  .design-content h2,
  .design-content1 h2,
  .fitting-content h2 {
    font-size: 1.6rem;
  }

  .design-video iframe {
    height: 320px;
  }
}

@media (max-width: 600px) {

  .design-block,
  .fitting-section {
    padding: 60px 5%;
  }

  .design-content p,
  .design-content ul li,
  .fitting-content p,
  .fitting-content ul li {
    font-size: 0.9rem;
  }

  .hero-buttons,
  .hero-buttons1 {
    flex-direction: column;
  }

  .btn-primary,
  .btn-primary1,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .design-video iframe {
    height: 250px;
  }
}

.lens-types {
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 20px;
  font-family: "Inter", sans-serif;
  color: #1f2937;
}

.lens-types h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111827;
}

.lens-card {
  background-color: #f9fafb;
  border-left: 4px solid #3b82f6; /* subtle accent line */
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lens-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #1e40af;
}

.lens-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
}

.lens-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



/* =========================
   WHY OTL SECTION
========================= */
.why-otl {
  padding: 120px 8%;
  background: linear-gradient(to bottom, #f8fbff, #eef4ff);
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}

/* subtle background glow */
.why-otl::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.why-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.why-container h2 {
  font-size: clamp(2.2rem, 4vw, 3.0rem);
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 70px;
  text-align: center;
  letter-spacing: -1px;
}

/* Reset counter once on the grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: why-counter;
}

/* Increment on each card */
.why-item {
  position: relative;
  counter-increment: why-counter;
}

/* Number display */
.why-item::after {
  content: "0" counter(why-counter);
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.06);
  line-height: 1;
}

/* CARD */
.why-item {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 32px;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 2px 10px rgba(37, 99, 235, 0.04);
}

/* top glow line */
.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

/* hover effect */
.why-item:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 50px rgba(37, 99, 235, 0.18),
    0 10px 25px rgba(15, 23, 42, 0.08);
}



/* TITLE */
.why-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* TEXT */
.why-item p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .why-otl {
    padding: 90px 6%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 35px 26px;
  }

  .why-container h2 {
    margin-bottom: 50px;
  }
}

/* ================= TURNAROUND ================= */
.turnaround {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.turnaround-container h2 {
  font-size: 2.4rem;
  margin-bottom: 80px;
  color: #001f3f;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.time-box {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}


.time-box h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 500;
}

.time-box p {
  font-size: 1.6rem;
  font-weight: 700;
}

/* =========================
   TURNAROUND RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 1024px) {

  .turnaround-container h2 {
    font-size: 2rem;
    margin-bottom: 60px;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
  }

  .time-box {
    padding: 35px 18px;
  }

  .time-box h3 {
    font-size: 1.2rem;
  }

  .time-box p {
    font-size: 1.4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .turnaround {
    padding: 80px 6%;
  }

  .turnaround-container h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .time-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .time-box {
    padding: 30px 18px;
    border-radius: 14px;
  }

  .time-box h3 {
    font-size: 1.1rem;
  }

  .time-box p {
    font-size: 1.3rem;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .turnaround {
    padding: 70px 5%;
  }

  .turnaround-container h2 {
    font-size: 1.6rem;
  }

  .time-box {
    padding: 25px 15px;
  }

  .time-box p {
    font-size: 1.2rem;
  }
}

/* ================= CTA ================= */

.services-cta {

  padding: 100px 8%;

  text-align: center;

  color: #0f172a;

  margin-bottom: 120px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #eef5ff 45%,
      #dbeafe 100%
    );

  box-shadow:
    0 20px 60px rgba(37,99,235,0.08);
}

/* CONTAINER */

.cta-container {

  max-width: 900px;

  margin: 0 auto;
}

/* HEADING */

.cta-container h2 {

  font-size: 3rem;

  line-height: 1.2;

  margin-bottom: 20px;

  color: #0f172a;
}

/* TEXT */

.cta-container p {

  max-width: 700px;

  margin: 0 auto 40px auto;

  color: #475569;

  line-height: 1.8;

  font-size: 1.1rem;
}


/* ================= TABLET ================= */

@media (max-width: 1024px) {

  .services-cta {

    padding: 85px 6%;

    margin-bottom: 100px;
  }

  .cta-container h2 {

    font-size: 2.4rem;
  }

  .cta-container p {

    font-size: 1rem;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .services-cta {

    padding: 70px 5%;

    border-radius: 18px;

    margin-bottom: 80px;
  }

  .cta-container h2 {

    font-size: 2rem;
  }

  .cta-container p {

    font-size: 0.98rem;

    line-height: 1.7;
  }


}

/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {

  .services-cta {

    padding: 60px 5%;

    border-radius: 14px;
  }

  .cta-container h2 {

    font-size: 1.7rem;
  }

  .cta-container p {

    font-size: 0.95rem;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}



/* 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;
  }
}
/* --------------------
   FOOTER
-------------------- */

.footer {
  background: #0f172a;
  color: #fff;
  padding: 80px 8% 30px 8%;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-branding img {
  width: 250px;
  margin-bottom: 20px;
}
.footer-tagline {
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.footer-small {
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
}

/* Social Links */
.footer-socials a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 25px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.footer-legal a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* =============================
   FOOTER RESPONSIVE
============================= */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer {
    padding: 70px 6% 30px 6%;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-tagline {
    margin: 0 auto 20px auto;
  }

  .footer-column a {
    transform: none;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-socials a {
    margin: 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 60px 5% 25px 5%;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }
}


/* ================================
   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;
  }
}


