
:root {
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --white: #FEFEFE;
  --yellow: #FECC00;
  --yellow-dark: #E6B800;
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui: 'Barlow', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

html { scroll-behavior:smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── CURSOR SPOTLIGHT ─────────────────────────────────────────────────────── */
.cursor-spotlight {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,204,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  mix-blend-mode: screen;
}

/* ─── SCAN LINE ─────────────────────────────────────────────────────────────── */
.scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  z-index: 10;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
}

/* ─── PARTICLE CANVAS ─────────────────────────────────────────────────────── */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.7;
}

/* ─── LOADER ────────────────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.loader-bg {
  position: absolute; inset: 0;
  background: var(--black);
}
.loader-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.loader-logo-wrap {
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.6; transform: scale(0.97); filter: drop-shadow(0 0 0px #FECC00); }
  to   { opacity: 1;   transform: scale(1.03); filter: drop-shadow(0 0 12px rgba(254,204,0,0.5)); }
}
.loader-logo-wrap svg { width: 220px; height: auto; display: block; }
.loader-bar-wrap {
  width: 260px; height: 2px;
  background: rgba(254,204,0,0.12);
  border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--yellow-dark), var(--yellow), #fff8a0);
  border-radius: 2px;
  transition: width 0.06s linear;
  box-shadow: 0 0 12px rgba(254,204,0,0.6);
}
.loader-percent {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--yellow);
  letter-spacing: 0.3em;
}

/* ─── NAVBAR ────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top:0; left:0; right:0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(24px);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(254,204,0,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1220px; margin:0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* ─── LOGO ──────────────────────────────────────────────────────────────────── */
.nav-logo {
  display: block; line-height: 0;
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo:hover { filter: drop-shadow(0 0 8px rgba(254,204,0,0.5)); transform: scale(1.04); }
.nav-logo svg{
  width:160px;
  height:auto;
}

.loader-logo-wrap svg { width: 240px; height: auto; }

/* ─── NAV LINKS ─────────────────────────────────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom:-4px; left:0;
  width:0; height:2px;
  background: var(--yellow);
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}
.nav-cta {
  --bg: var(--yellow);
  --hover-bg: var(--black);
  --text: var(--black);
  --hover-text: var(--white);
  
  display: inline-block;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.8rem;
  border-radius: 8px;
  border: 2px solid var(--bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 18px rgba(254, 204, 0, 0.3);
}

/* Liquid fill effect */
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--hover-bg) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.nav-cta:hover::before {
  left: 100%;
}

/* Floating glow ring */
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: conic-gradient(#FECC00, transparent 210deg);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav-cta:hover::after {
  opacity: 1;
  animation: spin 2s linear infinite;
}

/* Text outline glow */
.nav-cta span {
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.nav-cta:hover span {
  text-shadow: 
    0 0 15px currentColor,
    0 0 30px currentColor;
}

/* Hover transform */
.nav-cta:hover {
  color: var(--hover-text);
  border-color: var(--yellow);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(254,204,0,0.5),
    0 0 30px rgba(254,204,0,0.4);
}

/* Click feedback */
.nav-cta:active {
  transform: translateY(-2px) scale(0.98);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span { display:block; width:24px; height:2px; background:var(--white); transition:all 0.35s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--yellow); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--yellow); }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width:100%; height:100%; object-fit:cover;
  filter: brightness(0.35);
  transform-origin: center center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 40%, rgba(254,204,0,0.04) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(254,204,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,204,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 40s linear infinite;
}
@keyframes gridPan {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative; z-index: 4;
  max-width: 1220px; margin: 0 auto;
  padding: 0 2rem;
  padding-top: 110px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(254,204,0,0.08);
  border: 1px solid rgba(254,204,0,0.28);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-size: 0.8rem; letter-spacing: 0.12em;
  padding: 0.4rem 1.1rem; border-radius: 50px;
  margin-bottom: 0.25rem;
  opacity: 0;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.93;
  letter-spacing: 0.015em;
  margin-bottom: 0.6rem;
  perspective: 800px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(80px);
  transform-style: preserve-3d;
}
.hero-title .accent { color: var(--yellow); text-shadow: 0 0 40px rgba(254,204,0,0.25); }
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,0.7);
  max-width: 520px; margin-bottom: 2.5rem;
  font-weight: 300; opacity: 0; line-height: 1.7;
}
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:4rem; opacity:0; }
.hero-stats { display:flex; gap:3.5rem; opacity:0; }
.stat { text-align:left; }
.stat .snum { font-family:var(--font-display); font-size:2.8rem; color:var(--yellow); line-height:1; }
.stat > span { font-family:var(--font-display); font-size:2.2rem; color:var(--yellow); }
.stat p { font-size:0.75rem; color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:0.15em; margin-top:0.15rem; }

.scroll-indicator {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  color:rgba(255,255,255,0.35); font-size:0.7rem;
  letter-spacing:0.18em; text-transform:uppercase;
  z-index:4;
  animation: scrollBounce 2.2s infinite;
}
.scroll-dot {
  width:6px; height:6px; border-radius:50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0.3;transform:translateY(7px)} }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  position:relative; height:58vh; min-height:400px;
  display:flex; align-items:flex-end; overflow:hidden;
}
.page-hero-img {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:brightness(0.28);
  transform-origin:center;
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
}
.page-hero-content {
  position:relative; z-index:2;
  max-width:1220px; margin:0 auto;
  padding: 0 2rem 3.5rem; width:100%;
}
.page-hero-content h1 {
  font-family:var(--font-display);
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:0.95; margin:0.5rem 0;
}
.page-hero-content p { color:rgba(255,255,255,0.55); font-size:1.1rem; font-weight:300; }

/* ─── MARQUEE ─────────────────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--yellow);
  overflow:hidden; padding:0.8rem 0;
  position:relative; z-index:5;
}
.marquee {
  display:flex; gap:2.5rem; width:max-content;
  white-space:nowrap;
  animation:marqueeScroll 25s linear infinite;
}
.marquee span {
  font-family:var(--font-display); font-size:1.1rem;
  color:var(--black); letter-spacing:0.08em;
}
.marquee .dot { color:rgba(0,0,0,0.25); }
@keyframes marqueeScroll {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display:inline-block;
  background:var(--yellow);
  color:var(--black);
  font-family:var(--font-ui);
  font-weight:700;
  font-size:0.88rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  text-decoration:none;
  padding:1rem 2.4rem;
  border-radius:4px;
  border:2px solid var(--yellow);
  transition:all 0.35s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

/* background animation */
.btn-primary::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:var(--black);
  transition:left 0.4s ease;
  z-index:0;
}

/* text always above */
.btn-primary span{
  position:relative;
  z-index:2;
}

/* hover effect */
.btn-primary:hover::before{
  left:0;
}

.btn-primary:hover{
  color:var(--white);
  border-color:var(--yellow);
  box-shadow:0 10px 35px rgba(254,204,0,0.35);
  transform:translateY(-3px);
}

.btn-ghost {
  display:inline-block;
  background:transparent; color:var(--white);
  font-family:var(--font-ui); font-weight:700;
  font-size:0.88rem; letter-spacing:0.1em; text-transform:uppercase;
  text-decoration:none;
  padding:1rem 2.4rem; border-radius:4px;
  border:2px solid rgba(255,255,255,0.35);
  transition:all 0.35s ease;
  position:relative; overflow:hidden;
  will-change:transform;
}
.btn-ghost:hover { 
  border-color:var(--white); 
  color:var(--white); 
  background:var(--black); 
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}
.btn-xl { padding:1.25rem 3rem; font-size:1rem; }
.btn-full { width:100%; text-align:center; }

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.section-pad { padding:6rem 0; }
.container { max-width:1220px; margin:0 auto; padding:0 2rem; }
.dark-bg { background:var(--black2); }
.section-label {
  font-family:var(--font-ui); font-size:0.72rem;
  letter-spacing:0.35em; text-transform:uppercase;
  color:var(--yellow); margin-bottom:0.75rem;
}
.section-header { text-align:center; margin-bottom:4rem; }
.section-header h2 { font-family:var(--font-display); font-size:clamp(2.5rem,5vw,4.2rem); line-height:1.05; }
.accent-text { color:var(--yellow); }

.two-col {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.two-col.reverse .about-img-wrap { order:2; }
.two-col.reverse .about-text { order:1; }
.two-col.reverse .why-img-wrap { order:2; }
.two-col.reverse .why-text { order:1; }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-img-wrap { 
  position:relative; 
  border-radius:24px;
  overflow:visible;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
  padding: 1rem; /* space for badge */
}
.about-img {
  width:100%; border-radius:20px; display:block;
  aspect-ratio:4/5; object-fit:cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.6s;
  filter: brightness(1.02) contrast(1.05);
}
.about-img-wrap:hover .about-img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}
.about-badge {
  position:absolute; 
  bottom: -2.2rem; 
  right: -1.5rem;
  z-index: 10;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color:var(--black);
  padding:2rem 1.8rem; 
  border-radius:24px;
  text-align:center; 
  min-width:140px;
  box-shadow: 0 25px 70px rgba(254,204,0,0.4), 0 0 0 1px rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  animation: badgeFloat 3s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.15);
}
.about-badge:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 80px rgba(254,204,0,0.4);
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}
.badge-num { display:block; font-family:var(--font-display); font-size:2.8rem; line-height:1; }
.badge-txt { display:block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; }
.about-text h2 { font-family:var(--font-display); font-size:clamp(2rem,4vw,3.2rem); line-height:1.05; margin-bottom:1.25rem; }
.about-text p { color:rgba(255,255,255,0.68); margin-bottom:1rem; font-weight:300; font-size:1.05rem; }
.check-list { list-style:none; margin:1.5rem 0 2rem; display:flex; flex-direction:column; gap:0.6rem; }
.check-list li { color:rgba(255,255,255,0.8); font-size:0.95rem; font-family:var(--font-ui); padding-left:0.5rem; border-left:2px solid var(--yellow); }

/* ─── SERVICES GRID ────────────────────────────────────────────────────────── */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  background:transparent;
  /* border:1px solid rgba(254,204,0,0.1); */
  border-radius:8px;
  overflow:hidden;
}




.srv-card {
  background:var(--black2);
  padding:2.5rem 2rem;
  transition:all 0.4s ease;
  position:relative; overflow:hidden;
  transform-style:preserve-3d;
  will-change:transform;
  border:1px solid rgba(255,255,255,0.05);
}
.srv-card::before {
  content:'';
  position:absolute; top:0; left:0;
  width:100%; height:3px;
  background:linear-gradient(90deg, var(--yellow-dark), var(--yellow));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.srv-card:hover {
  background:var(--black3);
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.4);
  border-color:rgba(254,204,0,0.2);
}
.srv-card:hover::before {
  transform:scaleX(1);
}
.card-shine {
  position:absolute; inset:0;
  pointer-events:none; z-index:1;
  border-radius:inherit;
  transition:background 0.15s;
}
.srv-icon { font-size:2.4rem; margin-bottom:1rem; display:block; }
.srv-card h3 { font-family:var(--font-ui); font-size: clamp(0.95rem, 2.5vw, 1.05rem); font-weight:700; margin-bottom:0.75rem; position:relative; z-index:2; }
.srv-card p { color:rgba(255,255,255,0.52); font-size:0.9rem; font-weight:300; margin-bottom:1.5rem; position:relative; z-index:2; }
.srv-link {
  color:var(--yellow); text-decoration:none;
  font-family:var(--font-ui); font-size:0.85rem; font-weight:700;
  letter-spacing:0.05em; transition:letter-spacing 0.3s;
  position:relative; z-index:2;
}
.srv-link:hover { letter-spacing:0.12em; }
.center-btn { text-align:center; margin-top:3rem; }

/* ─── WHY US ─────────────────────────────────────────────────────────────── */
.why-text h2 { font-family:var(--font-display); font-size:clamp(2rem,4vw,3.2rem); line-height:1.05; margin-bottom:2rem; }
.why-items { display:flex; flex-direction:column; gap:1.75rem; margin-bottom:2rem; }
.why-item { display:flex; gap:1.5rem; align-items:flex-start; }
.why-num { font-family:var(--font-display); font-size:2.2rem; color:var(--yellow); line-height:1; min-width:44px; }
.why-item h4 { font-family:var(--font-ui); font-weight:700; margin-bottom:0.3rem; }
.why-item p { color:rgba(255,255,255,0.58); font-size:0.9rem; font-weight:300; }
.why-img-wrap { position:relative; }
.why-img {
  width:100%; border-radius:4px; aspect-ratio:4/5; object-fit:cover; display:block;
  transition:transform 0.6s ease;
}
.why-float-card {
  position:absolute; bottom:2rem; left:-2.5rem;
  background:var(--yellow); color:var(--black);
  padding:1rem 1.5rem; border-radius:4px;
  display:flex; align-items:center; gap:1rem;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
  animation: badgeFloat 3.5s ease-in-out infinite 0.5s;
}
.wfc-icon { font-size:2rem; }
.why-float-card strong { display:block; font-family:var(--font-display); font-size:2rem; line-height:1; }
.why-float-card span { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; }

/* ─── CTA BAND ───────────────────────────────────────────────────────────── */
.cta-band {
  position:relative; padding:6.5rem 0;
  overflow:hidden; text-align:center;
}
.cta-bg {
  position:absolute; inset:0;
  background:linear-gradient(135deg, #1A1200, #0A0A0A, #1A1200);
}
.cta-bg::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(254,204,0,0.18), transparent 70%);
  animation: ctaPulse 4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { opacity:0.6; transform:scale(1); }
  50% { opacity:1; transform:scale(1.06); }
}
.cta-inner { position:relative; z-index:1; }
.cta-inner h2 { font-family:var(--font-display); font-size:clamp(2.5rem,5vw,4.8rem); margin-bottom:1rem; }
.cta-inner p { color:rgba(255,255,255,0.55); font-size:1.1rem; margin-bottom:2.5rem; font-weight:300; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background:#050505; border-top:1px solid rgba(254,204,0,0.07); padding-top:4.5rem; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem; padding-bottom:3rem;
}
.footer-brand {
  cursor: pointer;
}

.footer-brand:hover svg {
  filter: drop-shadow(0 0 15px rgba(254,204,0,0.6));
  transform: scale(1.05);
}

.footer-brand p { color:rgba(255,255,255,0.38); font-size:0.88rem; margin-top:1rem; font-weight:300; max-width:260px; line-height:1.7; }
.social-icons { display:flex; gap:0.75rem; margin-top:1.5rem; }
.social-icons a {
  width:44px; height:44px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); text-decoration:none;
  font-size:0.8rem; font-weight:400;
  transition:all 0.3s;
}
.social-icons a:hover { border-color:var(--yellow); color:var(--yellow); background:rgba(254,204,0,0.1); transform:translateY(-3px); box-shadow:0 6px 20px rgba(254,204,0,0.15); }

.yt-icon { color: var(--white); font-weight:400; font-family:'Font Awesome 6 Brands'; font-size:1.1rem; }
.yt-icon:hover { color: var(--white); }
.footer-col h4 { font-family:var(--font-ui); font-size:0.72rem; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; color:var(--yellow); margin-bottom:1.25rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.6rem; padding:0; margin:0; }
.footer-col ul li, .footer-col ul li a { color:rgba(255,255,255,0.38); text-decoration:none; font-size:0.88rem; font-weight:300; transition:color 0.3s; }
.footer-col ul li a:hover { color:var(--yellow); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.05); padding:1.5rem 2rem; text-align:center; }
.footer-bottom p { color:rgba(255,255,255,0.25); font-size:0.82rem; }

/* ─── WHATSAPP ────────────────────────────────────────────────────────────── */
.whatsapp-float {
  position:fixed; bottom:2rem; right:2rem; z-index:999;
  width:60px; height:60px;
  background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 24px rgba(37,211,102,0.45);
  transition:transform 0.3s, box-shadow 0.3s;
  text-decoration:none;
}
.whatsapp-float svg { width:28px; height:28px; position:relative; z-index:1; }
.whatsapp-float:hover { transform:scale(1.12) translateY(-4px); box-shadow:0 10px 36px rgba(37,211,102,0.55); }
.wa-pulse {
  position:absolute; width:100%; height:100%; border-radius:50%;
  background:rgba(37,211,102,0.35);
  animation:waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.8);opacity:0} }

/* ─── SERVICES DETAIL ─────────────────────────────────────────────────────── */
.srv-detail {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
  padding:5rem 0;
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.srv-detail:last-child { border-bottom:none; }
.srv-detail.reverse .srv-detail-img { order:2; }
.srv-detail.reverse .srv-detail-text { order:1; }
.srv-detail-img {
  overflow:hidden; border-radius:6px;
  position:relative;
}
.srv-detail-img::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(254,204,0,0.05), transparent 60%);
  pointer-events:none;
}
.srv-detail-img img {
  width:100%; border-radius:6px;
  aspect-ratio:4/3; object-fit:cover; display:block;
  filter:brightness(0.85);
  transition:transform 0.6s ease, filter 0.5s;
}
.srv-num {
  font-family:var(--font-display); font-size:5.5rem;
  color:rgba(254,204,0,0.1); line-height:1; margin-bottom:-1.2rem;
  transition:color 0.4s;
}
.srv-detail:hover .srv-num { color:rgba(254,204,0,0.18); }
.srv-detail-text h2 { font-family:var(--font-display); font-size:clamp(2rem,3.5vw,3rem); line-height:1.05; margin-bottom:1.25rem; }
.srv-detail-text p { color:rgba(255,255,255,0.62); font-weight:300; font-size:1.05rem; margin-bottom:1.5rem; }
.srv-features { list-style:none; margin:0 0 2.5rem; display:flex; flex-direction:column; gap:0.7rem; }
.srv-features li {
  color:rgba(255,255,255,0.72); font-family:var(--font-ui); font-size:0.9rem;
  padding:0.5rem 0.75rem; border-left:2px solid rgba(254,204,0,0.3);
  transition:border-color 0.3s, color 0.3s;
}
.srv-features li:hover { border-color:var(--yellow); color:var(--white); }

.footer-logo svg{
  width: 140px;   /* logo size */
  height: auto;
}


/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.values-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap: 15px;
}
.value-card {
  background: linear-gradient(135deg, var(--black2), rgba(254,204,0,0.02));
  padding:3rem 2.5rem;
  border:1px solid rgba(254,204,0,0.08);
  border-radius:20px;
  backdrop-filter: blur(10px);
  position:relative;
  overflow:hidden;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor:pointer;
}
.value-card::before {
  content: '';
  position:absolute;
  inset:0;
  background: linear-gradient(45deg, rgba(254,204,0,0.05), transparent);
  opacity:0;
  transition: opacity 0.4s ease;
}
.value-card:hover::before {
  opacity:1;
}
.value-card:hover {
  transform: translateY(-12px);
  border-color: rgba(254,204,0,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(254,204,0,0.15);
}
.val-icon { 
  font-size:2.8rem; 
  margin-bottom:1.5rem;
  filter: drop-shadow(0 0 20px rgba(254,204,0,0.3));
  transition: all 0.4s ease;
}
.value-card:hover .val-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 30px rgba(254,204,0,0.5));
}
.value-card h3 { 
  font-family:var(--font-ui); 
  font-weight:700; 
  font-size:clamp(1.1rem, 2.5vw, 1.2rem); 
  margin-bottom:1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.value-card p { 
  color:rgba(255,255,255,0.7); 
  font-size:0.95rem; 
  font-weight:300;
  line-height:1.7;
}

.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card { 
  text-align:center; 
  padding:2rem 1.5rem;
  will-change:transform;
}
.team-card:hover {
  transform: translateY(-15px);
}
.team-img-wrap {
  margin-bottom:1.5rem; 
  overflow:hidden; 
  border-radius:24px;
  aspect-ratio:3/4; 
  position:relative;
  border: 3px solid rgba(254,204,0,0.1);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.team-card:hover .team-img-wrap {
  border-color: rgba(254,204,0,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(254,204,0,0.2);
}
.team-img-wrap img { 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  display:block; 
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.1);
}
.team-card h3 { 
  font-family:var(--font-ui); 
  font-weight:700; 
  font-size:clamp(1.1rem, 3vw, 1.25rem);
  margin-bottom:0.5rem;
}
.team-card span { 
  color:var(--yellow); 
  font-size:0.85rem; 
  font-family:var(--font-ui);
  letter-spacing:0.08em;
  text-transform: uppercase;
}

.stats-section .stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.big-stat { 
  position:relative;
  padding:2rem 1rem;
}
.big-stat::before {
  content: '';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at center, rgba(254,204,0,0.1), transparent 70%);
  opacity:0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}
.big-stat:hover::before {
  opacity:1;
}
.big-stat .snum { 
  font-family:var(--font-display); 
  font-size:clamp(3.5rem, 12vw, 5.5rem); 
  background: linear-gradient(135deg, var(--yellow), #fff8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height:1;
  filter: drop-shadow(0 10px 30px rgba(254,204,0,0.4));
  transition: all 0.6s ease;
}
.big-stat:hover .snum {
  filter: drop-shadow(0 20px 40px rgba(254,204,0,0.6));
  transform: scale(1.05);
}
.big-stat > span { 
  font-family:var(--font-display); 
  font-size:clamp(2.8rem, 8vw, 4rem); 
  background: linear-gradient(135deg, var(--yellow), #fff8a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display:block;
}
.big-stat p { 
  color:rgba(255,255,255,0.6); 
  font-size:0.88rem; 
  text-transform:uppercase; 
  letter-spacing:0.2em; 
  margin-top:1rem;
  font-weight:500;
}

/* ─── PORTFOLIO ──────────────────────────────────────────────────────────── */
.portfolio-filter { display:flex; gap:0.5rem; flex-wrap:wrap; margin-bottom:3rem; justify-content:center; }
.filter-btn {
  background:transparent; 
  border:1px solid rgba(254,204,0,0.2);
  color:rgba(255,255,255,0.7);
  font-family:var(--font-ui); 
  font-size:0.82rem; 
  font-weight:600;
  letter-spacing:0.14em; 
  text-transform:uppercase;
  padding:0.6rem 1.6rem; 
  border-radius:50px;
  cursor:pointer; 
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}
.filter-btn::before {
  content: '';
  position:absolute; inset:0;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(0) translateZ(0);
  transition: transform 0.4s ease;
  z-index:-1;
}
.filter-btn:hover::before, .filter-btn.active::before {
  transform: scaleX(1) translateZ(0);
}
.filter-btn:hover, .filter-btn.active {
  color:var(--black) !important;
  border-color:var(--yellow);
  box-shadow: 0 8px 32px rgba(254,204,0,0.25);
  transform: translateY(-2px);
}
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.port-card {
  position:relative; overflow:hidden; border-radius:12px;
  aspect-ratio:4/3; cursor:pointer;
  border:1px solid rgba(254,204,0,0.08);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.port-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(254,204,0,0.3);
  box-shadow: 0 25px 50px -12px rgba(254,204,0,0.15), 0 0 0 1px rgba(254,204,0,0.05);
}
.port-card img {
  width:100%; height:100%; object-fit:cover; display:block;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.6s;
}
.port-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.75) contrast(1.1);
}
.port-overlay {
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(254,204,0,0.03) 50%, transparent 85%);
  backdrop-filter: blur(10px);
  padding:2.5rem 2rem;
  display:flex; flex-direction:column; justify-content:flex-end;
  opacity:0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.port-card:hover .port-overlay {
  opacity:1;
  transform: translateY(0);
}
.port-tag {
  display:inline-flex; align-items:center; gap:0.4rem;
  background: rgba(254,204,0,0.12);
  backdrop-filter: blur(10px);
  border:1px solid rgba(254,204,0,0.3);
  color:var(--yellow);
  font-size:0.7rem; font-weight:700; font-family:var(--font-ui);
  letter-spacing:0.15em; text-transform:uppercase;
  padding:0.4rem 1rem; border-radius:50px; margin-bottom:1rem;
  box-shadow: 0 4px 20px rgba(254,204,0,0.15);
}
.port-overlay h3 { 
  font-family:var(--font-ui); 
  font-weight:700; 
  font-size:clamp(1.1rem, 2vw, 1.3rem); 
  margin-bottom:0.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.port-overlay p { 
  color:rgba(255,255,255,0.75); 
  font-size:0.88rem;
  font-weight:400;
  text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}

.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testi-card {
  background: linear-gradient(135deg, var(--black3) 0%, rgba(254,204,0,0.02) 100%);
  border:1px solid rgba(254,204,0,0.12);
  border-radius:16px; 
  padding:2.5rem 2.25rem;
  backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.testi-card::before {
  content: '';
  position:absolute; top:0; left:0;
  width:100%; height:4px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.testi-card:hover::before {
  transform: scaleX(1);
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(254,204,0,0.2);
  border-color: rgba(254,204,0,0.3);
}
.stars { 
  color:var(--yellow); 
  font-size:1rem; 
  margin-bottom:1.25rem; 
  letter-spacing:0.08em;
  filter: drop-shadow(0 0 8px rgba(254,204,0,0.4));
}
.testi-card p { 
  color:rgba(255,255,255,0.85); 
  font-size:1rem; 
  font-weight:300; 
  font-style:italic; 
  margin-bottom:1.75rem; 
  line-height:1.8;
  position:relative;
  z-index:2;
}
.testi-author { 
  display:flex; align-items:center; gap:1.25rem; 
  position:relative; z-index:2;
}
.testi-author img { 
  width:52px; height:52px; 
  border-radius:50%; 
  object-fit:cover; 
  border:3px solid rgba(254,204,0,0.25);
  box-shadow: 0 0 0 4px rgba(254,204,0,0.1);
  transition: all 0.3s ease;
}
.testi-card:hover .testi-author img {
  transform: scale(1.1);
  border-color: rgba(254,204,0,0.5);
}
.testi-author strong { 
  display:block; 
  font-family:var(--font-ui); 
  font-size:1rem;
  font-weight:700;
}
.testi-author span { 
  color:var(--yellow); 
  font-size:0.8rem; 
  font-weight:500;
  letter-spacing:0.05em;
}

/* ─── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-layout { gap:4rem; align-items:flex-start; }
.contact-info h2 { font-family:var(--font-display); font-size:clamp(2rem,3.5vw,3rem); line-height:1.05; margin-bottom:1rem; }
.contact-info > p { color:rgba(255,255,255,0.62); font-weight:300; font-size:1.05rem; margin-bottom:2rem; }
.contact-items { display:flex; flex-direction:column; gap:1.25rem; margin-bottom:2.5rem; }
.contact-item {
  display:flex; gap:1.25rem; align-items:center;
  background:var(--black2); border:1px solid rgba(255,255,255,0.05);
  padding:1rem 1.5rem; border-radius:4px;
  transition:border-color 0.3s, transform 0.3s;
  cursor:default;
}
.contact-item span a{
  color:#ffffff;
  text-decoration:none;
  font-weight:400;
}

.contact-item span a:hover{
  color:var(--yellow);
}
.contact-item:hover { border-color:rgba(254,204,0,0.3); transform:translateX(6px); }
.ci-icon { font-size:1.5rem; }
.contact-item strong { display:block; font-family:var(--font-ui); font-size:0.75rem; color:var(--yellow); text-transform:uppercase; letter-spacing:0.12em; }
/* .contact-item span { color:rgba(255, 255, 255, 0.58); font-size:0.9rem; } */
.contact-img-wrap { overflow:hidden; border-radius:4px; }
.contact-img-wrap img { width:100%; border-radius:4px; aspect-ratio:16/9; object-fit:cover; transition:transform 0.6s; }
.contact-img-wrap:hover img { transform:scale(1.04); }
.form-card {
  background:var(--black2); border:1px solid rgba(254,204,0,0.1);
  border-radius:6px; padding:2.75rem;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.form-card h3 { font-family:var(--font-display); font-size:2.2rem; margin-bottom:2rem; }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-family:var(--font-ui); font-size:0.75rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:0.5rem; }
.form-input {
  width:100%; background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.09);
  color:var(--white); font-family:var(--font-body); font-size:0.95rem;
  padding:0.85rem 1rem; border-radius:3px; outline:none;
  transition:border-color 0.3s, background 0.3s; appearance:none;
}
.form-input:focus { border-color:var(--yellow); background:rgba(254,204,0,0.04); box-shadow:0 0 0 3px rgba(254,204,0,0.08); }
.form-input option { background:var(--black2); color:var(--white); }
textarea.form-input { resize:vertical; }
.form-success {
  display:flex; align-items:center; gap:0.75rem;
  background:rgba(37,211,102,0.08); border:1px solid rgba(37,211,102,0.25);
  color:#4ade80; padding:1rem 1.25rem; border-radius:4px;
  font-family:var(--font-ui); font-size:0.9rem;
}

/* ─── SCROLL REVEAL (fallback, GSAP handles it) ─────────────────────────── */
.reveal-left, .reveal-right, .reveal-up { opacity:0; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width:1100px) {
  .two-col, .contact-layout { grid-template-columns:1fr; gap:3rem; }
  .two-col.reverse .about-img-wrap,
  .two-col.reverse .why-img-wrap { order:0; }
  .why-float-card { left:1rem; }
  .about-badge { right:0; }
  .srv-detail { grid-template-columns:1fr; gap:2.5rem; padding:3.5rem 0; }
  .srv-detail.reverse .srv-detail-img,
  .srv-detail.reverse .srv-detail-text { order:0; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .stats-section .stats-row { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .hamburger { display:flex; }
  
  .nav-links {
    position:fixed;
    top:0; right:0; bottom:0;
    width:min(300px,82vw);
    background:rgba(10,10,10,0.98);
    backdrop-filter:blur(24px);
    flex-direction:column;
    padding:5rem 2rem 2rem;
    gap:0;
    transform:translateX(100%);
    transition:transform 0.45s cubic-bezier(0.4,0,0.2,1);
    border-left:1px solid rgba(254,204,0,0.1);
    z-index:999;
    overflow-y:auto;
    height:100vh;
  }
  
  .nav-links.open { transform:translateX(0); }
  .nav-links li { width:100%; opacity:1; }
  .nav-links a { 
    display:block; 
    padding:1rem 0; 
    font-size:1rem; 
    border-bottom:1px solid rgba(255,255,255,0.05); 
  }
  .nav-links a::after { display:none; }
  .nav-cta { 
    margin-top:1.5rem; 
    text-align:center; 
    border:2px solid var(--yellow) !important; 
  }
  
  .services-grid { grid-template-columns:1fr; }

  
  .hero-stats { gap:2rem; flex-wrap:wrap; }
  .portfolio-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
}





@media (max-width:480px) {
  .hero-btns { flex-direction:column; }
  .portfolio-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .stats-section .stats-row { grid-template-columns:1fr 1fr; }
  .nav-logo svg { width:130px; }
}

/* ===== LOGO SIZE FIX FOR ALL PAGES ===== */

/* Navbar Logo */
.nav-logo svg,
.nav-logo img{
  width:160px;
  height:auto;
  display:block;
}

/* Thank You Page */
.full-screen-loader {
  position:fixed; inset:0; z-index:9999;
  background:var(--black);
  display:flex; align-items:center; justify-content:center;
  opacity:1; transition:opacity 0.4s, transform 0.4s;
}
.loader-content-thanks {
  text-align:center; color:var(--yellow); font-family:var(--font-display);
}
.emoji-stack {
  font-size:3.5rem; line-height:1.1; margin-bottom:1rem;
  animation: bounceIn 1s ease-out;
}
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity:0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity:1; }
}
.thank-you-section { min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:2rem 1rem; }
.thank-you-container { max-width:600px; }
.emoji-animation {
  font-size:clamp(3.5rem,12vw,7rem); line-height:1;
  color:var(--yellow); margin-bottom:1rem;
  animation: emojiPulse 2s ease-in-out infinite;
}
@keyframes emojiPulse {
  0%,100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 10px rgba(254,204,0,0.5)); }
  50% { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 25px rgba(254,204,0,0.8)); }
}
.thank-title {
  font-family:var(--font-display); font-size:clamp(3rem,10vw,5.5rem);
  margin-bottom:0.5rem; color:var(--white);
}
.thank-subtitle {
  font-family:var(--font-display); font-size:clamp(1.8rem,6vw,2.8rem);
  color:var(--yellow); margin-bottom:1.5rem; letter-spacing:0.05em;
}
.thank-text {
  font-size:1.3rem; color:rgba(255,255,255,0.85); margin-bottom:2.5rem;
  line-height:1.6; max-width:500px; margin-left:auto; margin-right:auto;
}
.contact-details {
  display:flex; flex-direction:column; gap:1rem; align-items:center;
  font-size:1.15rem; margin-bottom:3rem;
}
.contact-details a { color:var(--yellow); }
.thank-btn {
  --bg: var(--yellow);
  --hover-bg: var(--black);
  --text: var(--black);
  --hover-text: var(--white);
  
  display: inline-block;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.25rem 3.5rem;
  border-radius: 8px;
  border: 2px solid var(--bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 18px rgba(254, 204, 0, 0.3);
}

.thank-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--hover-bg) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.thank-btn:hover::before {
  left: 100%;
}

.thank-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: conic-gradient(#FECC00, transparent 210deg);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.thank-btn:hover::after, .glow-ring::after {
  opacity: 1;
  animation: spin 2s linear infinite;
}

.thank-btn span {
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.thank-btn:hover {
  color: var(--white);
  border-color: var(--yellow);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(254,204,0,0.5),
    0 0 30px rgba(254,204,0,0.4);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Footer Logo */
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;
  padding-bottom:3rem;
}

@media (max-width:900px){

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:2rem;
  }

}

@media (max-width:600px){

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand p{
    max-width:100%;
  }

  .social-icons{
    justify-content:center;
  }

}

