@media (min-width: 1025px) {
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--bg);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
    border: 2px solid var(--bg);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
  }
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

:root {
  --red: #ED2224;
  --red-dark: #c41a1c;
  --black: #000000;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --gray: #a0a0a0;
  --gray2: #6b6b6b;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #1ebe57;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.wa-tooltip {
  position: absolute;
  right: 80px;
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .wa-tooltip {
    display: none;
  }
}

html {
  max-width: 100vw !important;
  overflow-x: clip !important;
  scroll-behavior: auto;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: clip !important;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.4);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 34, 36, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===== UTILITY ===== */
.text-red {
  color: var(--red);
}

.section-tag {
  display: inline-block;
  background: rgba(237, 34, 36, 0.12);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(237, 34, 36, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 32px);
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}



@keyframes flourishPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.nav-cta {
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* MOBILE NAVIGATION FIXED */
/* MOBILE NAVIGATION FIXED */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}

.mobile-cta-item {
  display: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

/* RESPONSIVE HERO VIDEO */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero {
    background: url('assets/hero.png') no-repeat center center / cover !important;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 120px;
}

.hero-text-wrap {
  max-width: 850px;
  margin-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 34, 36, 0.15);
  border: 1px solid rgba(237, 34, 36, 0.3);
  color: #ff6b6d;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.2s ease both;
}

.text-gradient {
  background: linear-gradient(to right, #ff414d, #f9d423);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.4s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s 0.6s ease both;
}

.btn-blur {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-blur:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 20px;
  animation: fadeInUp 1s 0.8s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(237, 34, 36, 0);
  }
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--bg);
}

@media (max-width: 768px) {

  .services,
  .about,
  .portfolio,
  .blog,
  .newsletter,
  .section-padding {
    padding: 2rem 0 !important;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 34, 36, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(237, 34, 36, 0.1);
}

.service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg2) 100%);
}

.service-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(237, 34, 36, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
  border: 1px solid rgba(237, 34, 36, 0.1);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(-8deg) scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
  width: fit-content;
}

.service-link:hover {
  gap: 12px;
  color: var(--white);
}

/* Featured/Middle Card highlight */
.service-card-featured {
  border-color: rgba(237, 34, 36, 0.2);
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(237, 34, 36, 0.03) 100%);
}

.service-card-featured::before {
  content: 'Popular';
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.services-cta {
  text-align: center;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--bg2);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.about-composition {
  position: relative;
  width: 100%;
  height: 400px;
}

.comp-layer {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.layer-bg {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(237, 34, 36, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
  animation: pulseBg 6s ease-in-out infinite;
}

@keyframes pulseBg {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

.layer-1 {
  width: 280px;
  height: 350px;
  left: 0;
  top: 0;
  z-index: 2;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
  animation: floatL1 8s ease-in-out infinite;
}

.layer-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatL1 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-20px) rotate(0deg);
  }
}

.layer-2 {
  width: 260px;
  height: 320px;
  right: 40px;
  bottom: 0;
  z-index: 3;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
  animation: floatL2 10s ease-in-out infinite;
}

.layer-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatL2 {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-30px) rotate(4deg);
  }
}

.layer-3 {
  width: 220px;
  height: 140px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatL3 6s ease-in-out infinite;
}

@keyframes floatL3 {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-15px) scale(1.05);
  }
}

.glass-card {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mini-logo {
  height: 28px;
  width: auto;
  align-self: flex-start;
  filter: drop-shadow(0 0 8px var(--red));
}

.card-line {
  width: 60%;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.about-badges-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.badge-top {
  top: 20%;
  right: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-bottom {
  bottom: 20%;
  left: -20px;
  animation: floatBadge 4s 2s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.badge-icon {
  font-size: 1.2rem;
}

.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 0;
  background: var(--bg);
}

.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 48px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img-wrap img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}

.portfolio-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.portfolio-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}

.portfolio-link:hover {
  letter-spacing: 0.04em;
}

.portfolio-cta {
  text-align: center;
}

/* ===== BLOG ===== */
.blog {
  padding: 120px 0;
  background: var(--bg2);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.blog-card {
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(237, 34, 36, 0.2);
}

.blog-card-featured {
  grid-column: span 1;
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-date,
.blog-read {
  font-size: 0.8rem;
  color: var(--gray2);
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--white);
}

.blog-content p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}

.blog-link svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-link:hover {
  letter-spacing: 0.04em;
  color: var(--white);
}

.blog-link:hover svg {
  transform: translateX(4px);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
  background: var(--bg);
}

.newsletter-card {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(237, 34, 36, 0.08) 100%);
  border: 1px solid rgba(237, 34, 36, 0.2);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
}

.newsletter-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.newsletter-left>p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 34, 36, 0.15);
}

.newsletter-input::placeholder {
  color: var(--gray2);
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--gray2);
}

.newsletter-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-visual {
  position: relative;
}

.newsletter-logo {
  width: 140px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 32px rgba(237, 34, 36, 0.4));
}

.newsletter-blob {
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(237, 34, 36, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: blobPulse 4s ease-in-out infinite;
}

@keyframes blobPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 80px 0 32px;
  font-family: 'Inter', sans-serif !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray2);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--gray2);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-right {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .service-card-img {
    width: 100%;
    height: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 300px;
  }

  .ring-2,
  .ring-3,
  .float-badge {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .newsletter-card {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* Increased from what it might have been */
}

.about-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  position: absolute;
  inset: 0;
}

/* Mission Section */
.mission {
  padding: 120px 0;
  background: var(--bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.mission-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.m-stat h4 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 4px;
}

.m-stat p {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 450px;
}

.stack-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.main-stack {
  width: 80%;
  height: 80%;
  z-index: 2;
  top: 0;
  right: 0;
}

.offset-stack {
  width: 60%;
  height: 60%;
  z-index: 1;
  bottom: 0;
  left: 0;
  border: 4px solid var(--bg2);
}

.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack:hover .main-stack {
  transform: translate(-20px, 20px);
}

.image-stack:hover .offset-stack {
  transform: translate(20px, -20px);
}

/* Why Choose Us */
.why-us {
  padding: 120px 0;
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: flex-start;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(237, 34, 36, 0.3);
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(237, 34, 36, 0.05) 100%);
}

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--bg2);
  border: 1.5px solid rgba(237, 34, 36, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.1) rotate(-5deg);
}

.why-text h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.why-text p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }
}

.team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: var(--transition);
}

.team-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.team-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--white);
  font-weight: 600;
}

.team-card:hover {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 1024px) {

  .mission-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .image-stack {
    height: 350px;
  }
}

/* ===== PORTFOLIO PAGE (PREMIUM REDESIGN) ===== */
.portfolio-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1.1);
  filter: saturate(1.2) brightness(0.8);
  will-change: transform;
  transition: transform 0.1s linear;
}

@keyframes slowPan {
  from {
    transform: scale(1.1) translate(0, 0);
  }

  to {
    transform: scale(1.2) translate(-2%, -2%);
  }
}

.hero-overlay-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--red) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 2;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 3;
  transition: background 0.4s ease;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.hero-cursor-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 34, 36, 0.55) 0%, rgba(237, 34, 36, 0.18) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(2px);
  mix-blend-mode: screen;
}

.hero-cursor-orb::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 34, 36, 0.5);
  animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.float-item {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.float-1 {
  width: 300px;
  height: 300px;
  background: var(--red);
  top: 10%;
  right: 10%;
  animation: floatAnim 8s ease-in-out infinite;
}

.float-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  bottom: 20%;
  left: 5%;
  animation: floatAnim 10s ease-in-out infinite reverse;
}

.float-3 {
  width: 150px;
  height: 150px;
  background: var(--red);
  bottom: 10%;
  right: 30%;
  animation: floatAnim 12s ease-in-out infinite;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.1);
  }
}

.p-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 850px;
}

.p-hero-stats-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.p-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(to bottom, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.p-stat-item:hover .p-stat-num {
  background: var(--red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Portfolio Grid */
.portfolio-grid-section {
  padding: 80px 0 120px;
}

.portfolio-filter-bar {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.filter-wrap {
  background: var(--bg2);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  display: flex;
  gap: 4px;
}

.filter-wrap .filter-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  color: var(--gray);
}

.filter-wrap .filter-btn.active {
  background: var(--red);
  color: var(--white);
}

.p-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.p-item {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}

.p-item-inner {
  background: var(--bg2);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 100%;
  transition: all 0.5s ease;
}

.p-item-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.p-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.p-item-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.p-item-info {
  padding: 24px;
  transition: transform 0.4s ease;
}

.p-item-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.p-item-info p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Hover Effects */
.p-item:hover {
  transform: translateY(-10px);
  z-index: 10;
}

.p-item:hover .p-item-inner {
  border-color: var(--red);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.p-item:hover .p-item-img img {
  transform: scale(1.1);
}

.p-load-more {
  text-align: center;
  margin-top: 80px;
}

/* CTA Card */
.p-cta-section {
  padding-bottom: 120px;
}

.p-cta-card {
  background: linear-gradient(90deg, #1a0505 0%, #2a0a0a 100%);
  padding: 60px 80px;
  border-radius: 40px;
  border: 1px solid rgba(237, 34, 36, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.p-cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.p-cta-content p {
  font-size: 1.1rem;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .p-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .p-masonry-grid {
    grid-template-columns: 1fr;
  }

  .p-hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .portfolio-filter-bar {
    margin-bottom: 30px;
    justify-content: center;
  }

  .filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 20px;
    padding: 8px;
  }

  .filter-wrap .filter-btn {
    padding: 9px 18px;
    font-size: 0.8rem;
  }

  .p-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }
}

/* ===== CONTACT PAGE (COMPACT DESIGN) ===== */
.contact-page-header {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.header-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 20px 0 24px;
}

.header-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.header-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--red);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--red);
  bottom: -50px;
  right: -50px;
}

/* Contact Main Content */
.contact-page-content {
  padding-bottom: 120px;
  background: var(--bg);
  position: relative;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: flex-start;
}

/* Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
}

.info-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.info-link:hover {
  color: var(--red);
  transform: translateX(5px);
}

.info-sub {
  color: var(--gray2);
  font-size: 0.95rem;
}

.map-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-top: 5px;
  transition: var(--transition);
}

.map-link-btn:hover {
  color: var(--white);
}

.social-links-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-5px);
}

/* Form Side */
.glass-form-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px);
  padding: 60px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray2);
  padding-left: 5px;
}

.form-input-group input,
.form-input-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  border-radius: 18px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input-group input:focus,
.form-input-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--red);
  box-shadow: 0 0 0 5px rgba(237, 34, 36, 0.1);
}

.premium-submit-btn {
  width: 100%;
  height: 70px;
  background: var(--red);
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.premium-submit-btn:hover {
  background: #f03a3a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(237, 34, 36, 0.3);
}

.premium-submit-btn:hover svg {
  transform: translate(5px, -5px);
}

@media (max-width: 1100px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .header-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2.5rem;
  }

  .glass-form-card {
    padding: 35px;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-link {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .contact-page-header {
    padding: 100px 0 40px;
  }

  .header-title {
    font-size: 2.2rem;
  }

  .header-subtitle {
    font-size: 0.95rem;
  }

  .glass-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-form {
    gap: 20px;
  }

  .form-input-group label {
    font-size: 0.85rem;
  }

  .info-link {
    font-size: 1.2rem;
  }

  .info-group {
    gap: 8px;
    text-align: center;
    align-items: center;
  }

  .social-connect {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-input-group input,
  .form-input-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    /* Prevents auto-zoom on iOS */
  }

  .premium-submit-btn {
    padding: 16px 30px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   PREMIUM BLOG PAGE STYLES
   ========================================================================== */
.blog-page {
  background: #050505;
}

.blog-page-hero .hero-img {
  filter: brightness(0.6);
}

/* Blog Grid */
.blog-grid-section {
  padding: 140px 0;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.blog-card-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
}

.blog-card-premium:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(237, 34, 36, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Blog Grid */
.blog-grid-section {
  padding: 100px 0 140px;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card-premium {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.blog-card-premium:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(237, 34, 36, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card-premium:hover .blog-card-image img {
  transform: scale(1.12);
}

.blog-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--gray2);
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-title {
  color: var(--red);
}

.blog-link-more {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.blog-card-premium:hover .link-arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(-45deg);
}

.blog-card-premium:hover .blog-link-more {
  color: var(--red);
}

@media (max-width: 1024px) {
  .blog-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-main-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter Exact Design Re-integration */
.newsletter-exact-section {
  padding: 100px 0;
  background: #000;
}

.nl-exact-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nl-exact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ED2224;
}

.nl-exact-content {
  flex: 1;
  max-width: 700px;
}

.nl-exact-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.nl-exact-title span {
  color: #ED2224;
}

.nl-exact-subtitle {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.nl-exact-form-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.nl-exact-input-wrap {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.nl-exact-input {
  width: 100%;
  background: #111;
  border: 1px solid #222;
  border-radius: 100px;
  padding: 18px 60px 18px 30px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.nl-exact-input:focus {
  border-color: #ED2224;
  background: #151515;
}

.nl-exact-input-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

.nl-exact-btn {
  background: #ED2224;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nl-exact-btn:hover {
  background: #ff2b2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(237, 34, 36, 0.3);
}

.nl-exact-footer-note {
  color: #555;
  font-size: 0.9rem;
}

.nl-exact-logo-side {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
}

.nl-exact-logo-side::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(237, 34, 36, 0.15);
  filter: blur(60px);
  z-index: 1;
}

.nl-exact-logo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .blog-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nl-exact-card {
    flex-direction: column;
    text-align: left;
    padding: 40px;
  }

  .nl-exact-logo-side {
    width: 200px;
    margin-top: 20px;
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .blog-main-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    height: 70vh;
    min-height: 500px;
  }

  .nl-exact-form-group {
    flex-direction: column;
    align-items: stretch;
  }

  .nl-exact-input-wrap {
    max-width: 100%;
  }

  .nl-exact-btn {
    width: 100%;
  }

  .nl-exact-logo-side {
    display: none;
  }
}



/* ===== SERVICES PAGE REDESIGN ===== */
.section-padding {
  padding: 120px 0;
}

.page-header {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding-top: 100px;
}

.header-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.header-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), var(--bg));
  z-index: 2;
}

.header-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.header-desc {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.glass-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: var(--radius-sm);
  z-index: 5;
}

.stats-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats-badge span:first-child {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.stats-badge span:last-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.floating-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--red);
  top: -50px;
  right: -50px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: #3b82f6;
  bottom: -30px;
  left: -30px;
}

.intro-features {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.i-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.i-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(237, 34, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.i-feature h4 {
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.i-feature p {
  font-size: 0.9rem;
  color: var(--gray);
}

.detailed-services {
  background: var(--bg2);
}

.service-block {
  padding: 100px 0;
  border-bottom: 1px solid var(--glass-border);
}

.service-block:last-child {
  border-bottom: none;
}

.block-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

@media (max-width: 768px) {

  .block-grid,
  .service-row {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  .block-grid img,
  .service-row img {
    width: 100% !important;
    height: auto !important;
  }
}

.block-reverse .block-grid {
  grid-template-columns: 1.1fr 1fr;
}

.block-reverse .block-content {
  order: 2;
}

.block-reverse .block-visual {
  order: 1;
}

.block-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.block-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.block-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.block-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.block-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
}

.list-icon {
  color: var(--red);
  font-weight: 900;
}

.block-visual {
  position: relative;
}

.image-reveal {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.image-reveal img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-block:hover .image-reveal img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(237, 34, 36, 0.2), transparent);
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.f-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  animation: floatAnim 4s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: -20px;
}

.element-2 {
  bottom: 20%;
  left: -20px;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.8rem;
}

.element-3 {
  top: 20%;
  left: -30px;
}

.element-4 {
  bottom: 10%;
  right: -20px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
}

.element-5 {
  top: -20px;
  right: 20%;
}

.element-6 {
  bottom: 30px;
  left: 10%;
  font-weight: 700;
  font-size: 0.8rem;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.premium-cta {
  background: linear-gradient(135deg, #111 0%, #200 100%);
  border: 1px solid rgba(237, 34, 36, 0.2);
  overflow: hidden;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.abstract-3d {
  position: relative;
  height: 300px;
  width: 100%;
}

.sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--red), #000);
  filter: blur(1px);
}

.s-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 20%;
  opacity: 0.8;
}

.s-2 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: 20%;
  background: radial-gradient(circle at 30% 30%, #444, #000);
}

.s-3 {
  width: 40px;
  height: 40px;
  top: 10%;
  right: 30%;
  background: var(--red);
  opacity: 0.4;
}

.glass-cube {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {

  .intro-grid,
  .block-grid,
  .block-reverse .block-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .block-reverse .block-content {
    order: 1;
  }

  .block-reverse .block-visual {
    order: 2;
  }

  .block-list {
    grid-template-columns: 1fr;
  }

  .header-title {
    font-size: 3rem;
  }
}

/* ===== DROPDOWN MENU ===== */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  pointer-events: none;
}

@media (min-width: 993px) {
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(237, 34, 36, 0.08);
  color: var(--white);
}

/* Desktop-only: slide effect on hover */
@media (min-width: 769px) {
  .dropdown-item:hover {
    padding-left: 30px;
  }

  .dropdown-item span {
    opacity: 0;
    transform: translateX(-10px);
  }

  .dropdown-item:hover span {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-item span {
  color: var(--red);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.chevron-icon {
  transition: transform 0.3s ease;
  opacity: 0.8;
}

@media (min-width: 993px) {
  .has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
    color: var(--red);
  }
}

/* Mobile Dropdown Support */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    pointer-events: all;
    min-width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 200px;
    margin-top: 10px;
  }

  .dropdown-item {
    padding: 14px 0;
    justify-content: center;
  }

  .dropdown-item span {
    display: none;
  }

  .dropdown-toggle {
    justify-content: center;
  }

  .dropdown-toggle::after {
    margin-left: auto;
  }
}

/* Mobile service section fixes */
@media (max-width: 768px) {
  .services {
    padding: 64px 0 !important;
  }

  .services .section-header {
    margin-bottom: 32px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
    margin-bottom: 32px;
  }

  .service-card {
    border-radius: 14px;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card-img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-card-body {
    padding: 22px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 10px;
  }

  .service-card h3 {
    font-size: 1.22rem;
  }

  .service-card p {
    margin-bottom: 18px;
  }

  .service-card-featured::before {
    top: 12px;
    right: 12px;
  }

  .services-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .services-intro {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .intro-grid {
    gap: 32px !important;
  }

  .visual-card {
    border-radius: 14px;
  }

  .intro-img {
    aspect-ratio: 4 / 3;
  }

  .glass-overlay {
    left: 14px;
    bottom: 14px;
    padding: 14px;
    max-width: calc(100% - 28px);
  }

  .stats-badge span:first-child {
    font-size: 1.45rem;
  }

  .intro-features {
    margin-top: 28px;
    gap: 16px;
  }

  .i-feature {
    gap: 14px;
  }

  .detailed-services {
    overflow: hidden;
  }

  .service-block {
    padding: 64px 0;
  }

  .block-grid,
  .block-reverse .block-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
  }

  .block-reverse .block-content,
  .block-reverse .block-visual {
    order: initial;
  }

  .block-num {
    font-size: 3rem;
    margin-bottom: -12px;
  }

  .block-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .block-text {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .block-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .block-list li {
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .image-reveal {
    border-radius: 14px;
  }

  .image-reveal img,
  .block-grid img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  .f-element {
    padding: 10px 12px;
    border-radius: 8px;
    animation: none;
  }

  .element-1,
  .element-3,
  .element-5 {
    top: 12px;
    right: 12px;
    left: auto;
  }

  .element-2,
  .element-4,
  .element-6 {
    right: 12px;
    bottom: 12px;
    left: auto;
  }
}

/* Professional mobile navbar */
@media (max-width: 1024px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(2px);
    z-index: 999;
  }

  .navbar {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .nav-container {
    width: 100% !important;
    padding: 0 20px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0;
  }

  .nav-cta {
    display: none !important;
  }

  .logo-img {
    height: 32px;
  }

  .hamburger {
    display: flex !important;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    z-index: 1001;
  }

  .hamburger span {
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .hamburger[aria-expanded="true"] {
    background: rgba(237, 34, 36, 0.14);
    border-color: rgba(237, 34, 36, 0.42);
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 66px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    text-align: left;
    background:
      linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98)),
      var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link,
  .dropdown-toggle {
    width: 100%;
    min-height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
  }

  .nav-links .nav-link::after {
    display: none;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-links .nav-link.active {
    box-shadow: inset 3px 0 0 var(--red);
  }

  .dropdown-menu {
    width: 100%;
    align-items: stretch;
    padding: 0 0 0 10px;
    border-left: 1px solid rgba(237, 34, 36, 0.34);
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 400px;
    margin: 6px 0 8px 10px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-item {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .dropdown-item:hover {
    padding-left: 12px;
    background: rgba(237, 34, 36, 0.1);
    color: var(--white);
  }

  .mobile-cta-item {
    display: block !important;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .mobile-cta-item .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
  }
}

/* ===== ADVERTISING PAGE ===== */
.adv-header .header-bg-img {
  object-position: center 20%;
}

.adv-capabilities {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.cap-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: var(--transition);
}

.cap-item:hover {
  border-color: rgba(237, 34, 36, 0.3);
  background: rgba(237, 34, 36, 0.05);
}

.cap-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--bg2);
  border: 1.5px solid rgba(237, 34, 36, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  transition: var(--transition);
}

.cap-item:hover .cap-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.cap-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.cap-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Advertising Grid */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.adv-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.adv-card:hover {
  transform: translateY(-10px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-visual {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.adv-card:hover .card-visual img {
  transform: scale(1.1);
}

.card-body {
  padding: 30px;
}

.card-body h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.card-list {
  margin-top: 20px;
  list-style: none;
}

.card-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray);
  font-size: 0.9rem;
}

.card-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* Metrics Section */
.adv-metrics {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
}

.metrics-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px;
  border-radius: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.metric h3 {
  font-size: 3.5rem;
  font-family: 'Outfit', sans-serif;
  color: var(--red);
  margin-bottom: 10px;
}

.metric p {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center !important;
}

/* Mobile adjustments for advertising page */
@media (max-width: 992px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }

  .metrics-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .metrics-wrap {
    grid-template-columns: 1fr;
  }

  .metric h3 {
    font-size: 2.5rem;
  }

  .metric p {
    text-align: center !important;
  }
}

/* Advertising Page Centering */
.adv-header .header-content {
  text-align: center;
  margin: 0 auto;
}

.adv-header .header-desc {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.adv-header .header-btns {
  justify-content: center;
  margin-top: 48px !important;
}

.adv-intro .intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adv-intro .section-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

.adv-capabilities {
  justify-content: center;
  width: 100%;
}

.adv-capabilities .cap-item {
  /* Inherit desktop horizontal layout */
}

@media (max-width: 768px) {
  .adv-capabilities .cap-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .adv-capabilities .cap-item p {
    text-align: center !important;
  }
}

.adv-card .card-body {
  text-align: center;
}

.adv-card .card-list {
  display: inline-block;
  text-align: left;
}

@media (max-width: 992px) {
  .adv-intro .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== PREMIUM NEWSLETTER INPUT ===== */
.newsletter-form {
  margin-top: 30px;
  max-width: 550px;
}

.newsletter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.newsletter-input-wrap .input-icon {
  position: absolute;
  left: 24px;
  color: var(--red);
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}

.newsletter-input-wrap input {
  width: 100%;
  padding: 22px 30px;
  padding-left: 60px;
  padding-right: 160px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.newsletter-input-wrap input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(237, 34, 36, 0.25);
}

.newsletter-input-wrap .btn {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  padding: 0 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.newsletter-input-wrap .btn:hover {
  transform: scale(1.02);
}

@media (max-width: 576px) {
  .newsletter-input-wrap input {
    padding-right: 30px;
    padding-bottom: 80px;
    border-radius: 24px;
  }

  .newsletter-input-wrap .btn {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    top: auto;
    height: 50px;
    width: auto;
  }
}

/* Refining the Premium Newsletter Input */
.newsletter-input-wrap input {
  color: #ffffff !important;
  font-weight: 500;
}

.newsletter-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1;
}

.newsletter-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 80px;
  border-radius: 40px;
  overflow: hidden;
}

.newsletter-left {
  flex: 1.2;
}

.newsletter-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.newsletter-right img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .newsletter-card {
    flex-direction: column;
    padding: 60px 30px;
    gap: 40px;
    text-align: center;
  }

  .newsletter-form {
    margin: 30px auto 0;
  }
}

/* === COMPREHENSIVE NEWSLETTER FIX === */
.newsletter-card {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 60px !important;
  background: rgba(10, 10, 10, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 80px !important;
  border-radius: 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  text-align: left !important;
  margin-top: 40px;
}

.newsletter-left {
  flex: 1.2 !important;
  max-width: 600px;
}

.newsletter-right {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.newsletter-right img,
.newsletter-visual img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 30px !important;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.newsletter-input-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 6px !important;
  margin-top: 30px !important;
  transition: all 0.3s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: var(--red) !important;
  box-shadow: 0 0 30px rgba(237, 34, 36, 0.2) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.newsletter-input-wrap input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  padding: 15px 20px 15px 55px !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  width: 100% !important;
  outline: none !important;
}

.newsletter-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.newsletter-input-wrap .input-icon {
  position: absolute !important;
  left: 25px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--red) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.newsletter-input-wrap .btn {
  position: static !important;
  height: 54px !important;
  padding: 0 35px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
}

@media (max-width: 992px) {
  .newsletter-card {
    flex-direction: column !important;
    padding: 60px 30px !important;
    text-align: center !important;
    gap: 40px !important;
  }

  .newsletter-left {
    max-width: 100% !important;
  }

  .newsletter-input-wrap {
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    gap: 15px !important;
  }

  .newsletter-input-wrap input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 100px !important;
    padding: 20px 20px 20px 55px !important;
  }

  .newsletter-input-wrap .input-icon {
    top: 30px !important;
    transform: translateY(-50%) !important;
  }

  .newsletter-input-wrap .btn {
    width: 100% !important;
  }
}

/* ===== GRAPHIC DESIGN PAGE ===== */
.design-header .header-bg-img {
  object-position: center 30%;
}

.design-highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.highlight-icon {
  color: var(--red);
  font-size: 1.2rem;
}

/* Design Grid */
.design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.design-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  transition: all 0.5s ease;
}

.design-card:hover {
  transform: scale(1.02);
  border-color: var(--red);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.design-card-visual {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
}

.design-grid-composite {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  width: 100%;
  gap: 2px;
  background: rgba(0, 0, 0, 0.2);
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-item span {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  font-weight: 700;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-card:hover .grid-item img {
  transform: scale(1.1);
}

.design-card-content {
  flex: 1.2;
  padding: 40px;
}

.design-card-content h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.design-list {
  margin-top: 25px;
  list-style: none;
}

.design-list li {
  padding: 6px 0;
  color: var(--gray);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.design-list li::before {
  content: '•';
  color: var(--red);
  font-size: 1.5rem;
}

/* Process Section */
.design-process {
  padding-bottom: 120px;
}

.process-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
}

.process-item {
  text-align: center;
  flex: 1;
}

.p-num {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: rgba(216, 16, 19, 0.6);
  margin-bottom: -15px;
  transition: all 0.4s ease;
}

.process-item:hover .p-num {
  color: var(--red);
  transform: translateY(-5px);
}

.process-item h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
  position: relative;
}

.process-item p {
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}

.process-arrow {
  color: var(--red);
  font-size: 1.5rem;
  opacity: 0.8;
}

/* Responsive Graphic Design */
@media (max-width: 1200px) {
  .design-card {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .design-grid {
    grid-template-columns: 1fr;
  }

  .process-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

/* ===== PRINTING PAGE ===== */
.print-header .header-bg-img {
  object-position: center 10%;
}

.print-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-weight: 500;
}

.p-feat-icon {
  color: var(--red);
  font-size: 1.2rem;
}

/* Printing Grid */
.print-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.print-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.print-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
}

.print-card-visual {
  height: 220px;
  overflow: hidden;
}

.print-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.print-card-body {
  padding: 30px;
}

.print-card-body h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.print-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.print-tags span {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Finishes Showcase */
.finishes-section {
  padding-bottom: 140px;
}

.finishes-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--glass-border);
}

.finishes-content {
  flex: 1.2;
}

.finishes-visual {
  flex: 1;
}

.finishes-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.finishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.finish-item h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.finish-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsive Printing */
@media (max-width: 1200px) {
  .finishes-wrap {
    padding: 60px 40px;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .print-grid {
    grid-template-columns: 1fr;
  }

  .finishes-wrap {
    flex-direction: column;
    text-align: center;
  }

  .finishes-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Global Header Fix: Ensure content is below fixed navbar */
@media (max-width: 992px) {
  .page-header {
    height: auto;
    min-height: 450px;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding-top: 90px;
    min-height: 400px;
  }

  .page-header .header-btns {
    margin-top: 48px !important;
    flex-direction: column;
    gap: 12px;
  }

  .page-header .header-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small Screen Header Fix */
@media (max-width: 576px) {
  .page-header {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: 350px;
    height: auto;
  }

  .header-content {
    max-width: 100%;
    padding: 0 16px;
  }

  .header-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 16px;
  }

  .header-desc {
    font-size: 1rem;
    max-width: 100%;
  }

  .header-bg-img {
    object-fit: contain;
    object-position: center;
  }
}

/* Global Header Button Spacing */
.page-header .header-btns {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}

/* Services Page Responsiveness */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .block-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .block-reverse .block-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  .block-content {
    text-align: center;
  }

  .block-list {
    display: inline-block;
    text-align: left;
  }

  .block-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2.2rem !important;
  }

  .section-padding {
    padding: 60px 0 !important;
  }
}