/* ============================================
   REKLAND MEDYA - Premium Agency Website
   Brand Colors: Red (#E63946) & White
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --red-primary: #E63946;
  --red-dark: #C1121F;
  --red-light: #FF6B6B;
  --red-glow: rgba(230, 57, 70, 0.35);
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-50: #FAFAFA;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-300: #BDBDBD;
  --gray-400: #9E9E9E;
  --gray-500: #757575;
  --gray-600: #616161;
  --gray-700: #424242;
  --gray-800: #1A1A2E;
  --gray-900: #0F0F1A;
  --black: #0A0A0A;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-red: 0 8px 30px rgba(230,57,70,0.25);
}

/* ---------- Global Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--transition-smooth);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red-primary);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}

/* highlight text */
.text-red { color: var(--red-primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(230,57,70,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--gray-900);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--transition-smooth);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10,10,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.4s var(--transition-smooth);
}

.header.scrolled .logo-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--transition-smooth);
}

.header.scrolled .nav-links a {
  color: rgba(255,255,255,0.7);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--white);
}

.header.scrolled .nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 26px !important;
  background: var(--red-primary);
  color: var(--white) !important;
  border-radius: 60px;
  font-weight: 600 !important;
  transition: all 0.3s var(--transition-smooth) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--transition-smooth);
}

.header.scrolled .menu-toggle span {
  background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gray-900);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(230,57,70,0.15), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(230,57,70,0.08), transparent);
  z-index: 1;
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--red-primary);
  opacity: 0.07;
  top: -100px;
  right: -100px;
  animation: float1 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--red-light);
  opacity: 0.05;
  bottom: -50px;
  left: 10%;
  animation: float2 15s ease-in-out infinite;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--white);
  opacity: 0.03;
  top: 30%;
  left: 60%;
  animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 15px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.15s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-title .line {
  display: block;
}

.hero-title .highlight {
  color: var(--red-primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--red-primary);
  opacity: 0.3;
  border-radius: 3px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s 0.5s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-image {
  width: 100%;
  max-width: 580px;
  height: auto;
  margin: 0 auto;
  display: block;
  animation: heroFloat 6s ease-in-out infinite;
  filter:
    drop-shadow(0 10px 20px rgba(0,0,0,0.4))
    drop-shadow(0 30px 60px rgba(230,57,70,0.2))
    drop-shadow(0 0 80px rgba(230,57,70,0.08));
  transition: filter 0.5s ease;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.18), transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-12px) rotate(0.5deg) scale(1.01);
  }
  50% {
    transform: translateY(-20px) rotate(0deg) scale(1.02);
  }
  75% {
    transform: translateY(-10px) rotate(-0.5deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.15); }
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--transition-smooth);
}

.hero-stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(230,57,70,0.3);
  transform: translateY(-4px);
}

.hero-stat-card:nth-child(2) {
  transform: translateY(30px);
}

.hero-stat-card:nth-child(2):hover {
  transform: translateY(26px);
}

.hero-stat-card:nth-child(3) {
  transform: translateY(-15px);
}

.hero-stat-card:nth-child(3):hover {
  transform: translateY(-19px);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-number .red { color: var(--red-primary); }

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ---------- MARQUEE SECTION ---------- */
.marquee-section {
  background: var(--gray-900);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-primary);
  opacity: 0.4;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content { }

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-highlight {
  padding: 24px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--transition-smooth);
}

.about-highlight:hover {
  border-color: rgba(230,57,70,0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about-highlight-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red-primary);
  margin-bottom: 4px;
}

.about-highlight-text {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* About Visual Side */
.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-100);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.6));
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.about-floating-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-floating-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.about-floating-text h4 {
  font-size: 1.3rem;
  color: var(--gray-900);
}

.about-floating-text p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ---------- SERVICES SECTION ---------- */
.services {
  background: var(--gray-50);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 44px 36px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.5s var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  transition: color 0.5s var(--transition-smooth);
}

.service-card:hover .service-card-number {
  color: rgba(230,57,70,0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(230,57,70,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--red-primary);
  transition: color 0.4s var(--transition-smooth);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- PORTFOLIO SECTION ---------- */
.portfolio {
  background: var(--white);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.portfolio-item:nth-child(1) {
  grid-column: span 2;
}

.portfolio-item:nth-child(4) {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.portfolio-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.portfolio-overlay-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(10px, -10px);
  opacity: 0;
  transition: all 0.5s var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay-arrow {
  transform: translate(0, 0);
  opacity: 1;
}

.portfolio-overlay-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--gray-900);
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--red-primary);
  opacity: 0.04;
  filter: blur(100px);
  top: -200px;
  right: -200px;
}

.why-us-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-us-header .section-title {
  color: var(--white);
}

.why-us-header .section-subtitle {
  color: rgba(255,255,255,0.45);
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s var(--transition-smooth);
  position: relative;
}

.why-us-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(230,57,70,0.06), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
}

.why-us-card:hover {
  border-color: rgba(230,57,70,0.25);
  transform: translateY(-6px);
}

.why-us-card:hover::after {
  opacity: 1;
}

.why-us-card-content {
  position: relative;
  z-index: 1;
}

.why-us-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(230,57,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s var(--transition-smooth);
}

.why-us-card:hover .why-us-icon {
  background: var(--red-primary);
}

.why-us-icon svg {
  width: 32px;
  height: 32px;
  color: var(--red-primary);
  transition: color 0.4s var(--transition-smooth);
}

.why-us-card:hover .why-us-icon svg {
  color: var(--white);
}

.why-us-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-us-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--white);
  padding: 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: 32px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -150px;
  right: -100px;
}

.cta-inner::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -100px;
  left: 10%;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

.cta-actions {
  position: relative;
  z-index: 1;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding-right: 40px;
}

.contact-info .section-subtitle {
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(230,57,70,0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(230,57,70,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red-primary);
}

.contact-card h4 {
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact-card a:hover {
  color: var(--red-primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all 0.3s var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(230,57,70,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

/* Map */
.contact-map {
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  height: 300px;
  background: var(--gray-100);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  padding: 6px 0;
  transition: all 0.3s var(--transition-smooth);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-social-link:hover svg {
  color: var(--white);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--transition-smooth);
  z-index: 900;
  box-shadow: var(--shadow-red);
}

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

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- CUSTOM CURSOR (desktop only) ---------- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
  display: none;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(230,57,70,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.2s ease;
  display: none;
}

@media(hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-image-wrapper {
    aspect-ratio: 16/9;
  }

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

  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(4) {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 56px 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    transition: right 0.5s var(--transition-smooth);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-700) !important;
    font-size: 1.1rem;
  }

  .nav-links a:hover {
    color: var(--red-primary) !important;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .cursor-dot, .cursor-ring { display: none !important; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .cta-inner {
    padding: 40px 24px;
    border-radius: 20px;
  }
}
