/* ============================================================
   RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #fff;
  color: #0a0a0f;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.hero-wrapper {
  background: linear-gradient(180deg,
    #07070a 0%,
    #0a0a12 15%,
    #0d0a18 30%,
    #120d22 45%,
    #1a1030 60%,
    #241440 75%,
    #2e1a52 85%,
    #3a2060 92%,
    #422870 100%);
  color: #fff;
  position: relative;
  padding-bottom: 100px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
  position: relative;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.get-quote-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.get-quote-btn:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

/* ============================================================
   HAMBURGER MENU
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  margin-left: 12px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.nav-links.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(7, 7, 10, 0.98);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
}

.nav-links.active a {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links.active a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 64px 0;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn {
  background: #fff;
  color: #0a0a0f;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ============================================================
   MARKET PULSE - STATS
   ============================================================ */
.market-wrapper {
  background: linear-gradient(180deg,
    #422870 0%,
    #4a3080 8%,
    #553890 18%,
    #6b4aa0 30%,
    #8b6ec0 50%,
    #b8a8e0 70%,
    #e8e0f8 88%,
    #ffffff 100%);
  padding: 0 64px 60px;
  position: relative;
}

.market-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  top: -50px;
}

.market-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 18px;
  color: #fff;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.market-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.web-icon {
  background: #6366f1;
  color: #fff;
}
.seo-icon {
  background: #14f195;
  color: #000;
}
.sat-icon {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.stat-info h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0f;
}

.stat-info span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
}

.stat-value-big {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #0a0a0f;
}

.stat-positive {
  color: #22c55e;
}

.stat-label {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.35);
}

.mini-chart {
  height: 28px;
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.mini-chart span {
  flex: 1;
  background: #6366f1;
  border-radius: 2px;
  opacity: 0.6;
}

.sat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.sat-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.sat-row span {
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
}

.stat-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 140px;
}

.stat-center-value {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  color: #0a0a0f;
  line-height: 1;
}

.stat-center-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 6px;
}

/* ============================================================
   TECH LOGO BAR
   ============================================================ */
.logo-bar {
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tech-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================================================
   SECTIONS - COMMON
   ============================================================ */
.section {
  padding: 100px 64px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: linear-gradient(180deg, #0a0a12 0%, #0d0a18 50%, #120d22 100%);
  color: #fff;
}

.section-light {
  background: #f8f7fb;
  color: #0a0a0f;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
  width: fit-content;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sec-label-dark {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
}

.sec-label-light {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: #6366f1;
}

.sec-label-dot {
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
}

.sec-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.sec-title-dark {
  color: #fff;
}
.sec-title-light {
  color: #0a0a0f;
}

.sec-subtitle {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 56px;
  max-width: 640px;
}

.sec-subtitle-dark {
  color: rgba(255, 255, 255, 0.5);
}
.sec-subtitle-light {
  color: rgba(0, 0, 0, 0.5);
}

/* Glass cards */
.glass-dark {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s;
}

.glass-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.glass-light {
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  transition: all 0.3s;
}

.glass-light:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h3 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 28px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5b4fc;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}

.about-cta:hover {
  gap: 12px;
}

.about-quote {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.01em;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-quote .highlight {
  color: #a5b4fc;
  font-weight: 400;
  font-size: 34px;
}

.about-quote .emphasis {
  color: #fff;
  font-weight: 400;
}

.about-quote .quote-line {
  display: block;
  margin-top: 6px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  width: 100%;
  padding: 60px 7% 80px;
  background: #f8f7fb;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.services-header .sec-label {
  margin-bottom: 16px;
}

.services-header .sec-title {
  margin-bottom: 12px;
}

.services-header .sec-subtitle {
  margin-bottom: 0;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  min-height: 380px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.service-card.active {
  background: #073b32;
  color: white;
}

.service-card.active .description {
  color: rgba(255, 255, 255, 0.75);
}

.service-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.description {
  font-size: 12px;
  line-height: 1.65;
  color: #777;
  margin-bottom: 20px;
  max-width: 95%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 16px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.service-card:hover .image-wrapper img {
  transform: none;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50% 0 0 0;
  z-index: 2;
  pointer-events: none;
}

.service-card.active .image-wrapper::after {
  background: #073b32;
}

.arrow-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #6366f1;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  z-index: 5;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.20);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.arrow-btn:hover {
  transform: scale(1.10);
  background: #4f46e5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.service-card.active .arrow-btn {
  background: #86d900;
  color: #073b32;
}

.service-card.active .arrow-btn:hover {
  background: #9bea20;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6366f1;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 40px;
  transition: gap 0.2s;
}

.view-all-btn:hover {
  gap: 12px;
}

/* ============================================================
   WHAT WE CREATE - HORIZONTAL CARDS
   ============================================================ */
.create-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.create-card-horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-height: 140px;
  transition: all 0.3s ease;
  cursor: default;
}

.create-card-horizontal:hover {
  transform: translateY(-4px);
}

.create-card-image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
}

.create-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.create-card-horizontal:hover .create-card-image img {
  transform: scale(1.08);
}

.create-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.create-card-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.create-card-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   WORK / PORTFOLIO - ALWAYS VISIBLE OVERLAY
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.work-card-transparent {
  background: transparent;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.work-card-transparent:hover {
  transform: translateY(-8px);
}

.work-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a2e;
}

.work-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-card-transparent:hover .work-img-wrapper img {
  transform: scale(1.08);
}

/* Overlay - ALWAYS VISIBLE */
.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

/* Slight lift on hover */
.work-card-transparent:hover .work-overlay {
  transform: translateY(-4px);
}

.work-overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
}

.work-overlay span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   WORK GRID FULL
   ============================================================ */
.work-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   WHY MAJE DIGITAL - DARK THEME WITH BLUE ACCENTS
   ============================================================ */
.why-section {
  width: 100%;
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  background: #0a0a12;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-section .container {
  width: 100%;
  max-width: 1250px;
}

/* Section Header */
.why-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-section .small-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #6366f1;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.why-section .small-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #6366f1;
  border-radius: 2px;
}

.why-section .main-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
  margin-top: 8px;
}

.why-section .main-title span {
  color: #6366f1;
}

/* Reasons Grid */
.why-section .reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 50px;
}

/* Reason Item */
.why-section .reason {
  position: relative;
  padding: 30px 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.why-section .reason:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.08);
}

.why-section .reason-top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* Number */
.why-section .number {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #6366f1;
  width: 35px;
  padding-top: 2px;
  font-family: 'Inter', sans-serif;
}

/* Line */
.why-section .line {
  width: 45px;
  height: 2px;
  background: rgba(99, 102, 241, 0.4);
  margin-top: 9px;
  margin-right: 16px;
  flex-shrink: 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.why-section .reason:hover .line {
  width: 60px;
  background: rgba(99, 102, 241, 0.8);
}

/* Heading */
.why-section .reason h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  max-width: 280px;
  font-family: 'Inter', sans-serif;
}

.why-section .reason h3 span {
  color: #6366f1;
}

/* Description */
.why-section .reason p {
  margin-left: 95px;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  max-width: 290px;
}

/* Icon/decoration dot */
.why-section .reason::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.4s ease;
}

.why-section .reason:hover::before {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
  transform: scale(1.1);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  width: 100%;
  padding: 70px 6%;
  background: #f8f7fb;
}

.process-container {
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

.process-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

.header-left {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6366f1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.12);
}

.process-title {
  color: #0a0a0f;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.header-line {
  flex: 1;
  height: 2px;
  background: rgba(99, 102, 241, 0.15);
  margin-left: 65px;
  margin-top: 22px;
}

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

.process-card {
  border-radius: 22px;
  padding: 32px 28px;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.10);
  border-color: rgba(99, 102, 241, 0.2);
}

.process-card-1 { background: linear-gradient(135deg, #6366f1, #818cf8); }
.process-card-2 { background: linear-gradient(135deg, #4f46e5, #6366f1); }
.process-card-3 { background: linear-gradient(135deg, #4338ca, #4f46e5); }
.process-card-4 { background: linear-gradient(135deg, #3730a3, #4338ca); }
.process-card-5 { background: linear-gradient(135deg, #312e81, #3730a3); }
.process-card-6 { background: linear-gradient(135deg, #1e1b4b, #312e81); }

.process-card-1:hover,
.process-card-2:hover,
.process-card-3:hover,
.process-card-4:hover,
.process-card-5:hover,
.process-card-6:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
}

.card-number {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.card-title {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 16px 0;
  font-family: 'Inter', sans-serif;
}

.card-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 245px;
  margin: 0;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg,
    #07070a 0%,
    #0a0a12 15%,
    #0d0a18 30%,
    #120d22 45%,
    #1a1030 60%,
    #241440 75%,
    #2e1a52 85%,
    #3a2060 92%,
    #422870 100%);
  color: #fff;
  padding: 120px 64px 80px;
  text-align: center;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .sec-label {
  margin: 0 auto 20px;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: #a5b4fc;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT & QUOTE FORMS - CENTERED
   ============================================================ */
.contact-wrapper,
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper,
.quote-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.contact-form,
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-form .form-row,
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group,
.quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.contact-form .form-group label,
.quote-form .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0f;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea,
.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f7fb;
  width: 100%;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus,
.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  background: #fff;
}

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

.submit-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Contact Info */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0f;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Quote Steps */
.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0 40px;
}

.quote-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.quote-step:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0f;
  margin-bottom: 4px;
}

.quote-step p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.quote-testimonial {
  background: #f8f7fb;
  padding: 24px 28px;
  border-radius: 16px;
  border-left: 4px solid #6366f1;
}

.quote-testimonial p {
  font-size: 16px;
  line-height: 1.6;
  color: #0a0a0f;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0f;
}

.testimonial-author span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ALERT MESSAGES
   ============================================================ */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  animation: slideDown 0.4s ease;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   FOOTER ALERT STYLES
   ============================================================ */
.alert-footer {
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.alert-success-footer {
  background: rgba(110, 231, 183, 0.15);
  border: 1px solid rgba(110, 231, 183, 0.3);
  color: #6ee7b7;
}

.alert-error-footer {
  background: rgba(252, 165, 165, 0.15);
  border: 1px solid rgba(252, 165, 165, 0.3);
  color: #fca5a5;
}

/* ============================================================
   FORM ERROR STYLES
   ============================================================ */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1) !important;
}

.error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(180deg, #120d22 0%, #1a1030 50%, #241440 100%);
  padding: 120px 64px;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 0 40px;
}

.cta-btn {
  background: #fff;
  color: #0a0a0f;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn[href^="tel:"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07070a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 64px 30px;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #a5b4fc;
}

.footer-col a[href^="mailto:"]:hover,
.footer-col a[href^="tel:"]:hover {
  color: #a5b4fc !important;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0 0 16px;
}

.subscribe-box {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.subscribe-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.subscribe-btn:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #a5b4fc;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: #20b85f;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Small screens */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}

/* Tablet screens */
@media (min-width: 481px) and (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 25px;
    right: 25px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px 0;
  }
  .hero-left {
    gap: 24px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-right {
    justify-content: center;
    order: 3;
  }
  .hero-img {
    max-width: 100%;
    width: 100%;
  }
  .navbar,
  .hero,
  .market-wrapper,
  .logo-bar,
  .section,
  .cta-section,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .create-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .services-section {
    padding: 45px 4% 60px;
  }
  .service-card {
    min-height: 360px;
  }
  .image-wrapper {
    height: 205px;
  }
  .image-wrapper::after {
    width: 80px;
    height: 80px;
  }
  .arrow-btn {
    width: 52px;
    height: 52px;
    right: 9px;
    bottom: 9px;
    font-size: 22px;
  }
  
  .why-section .reasons-grid {
    column-gap: 40px;
    row-gap: 40px;
  }
  .why-section .reason h3 {
    font-size: 20px;
  }
  
  .process-title {
    font-size: 36px;
  }
  .header-line {
    margin-left: 35px;
  }
  
  .contact-wrapper,
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    order: 2;
  }
  .contact-form-wrapper {
    order: 1;
  }
  .quote-info {
    order: 2;
  }
  .quote-form-wrapper {
    order: 1;
  }
  
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .page-hero {
    padding: 80px 32px 60px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 1000px) {
  .why-section {
    padding: 70px 6%;
  }
  .why-section .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 35px;
    row-gap: 40px;
  }
  .why-section .main-title {
    font-size: 38px;
  }
  .why-section .reason h3 {
    font-size: 20px;
  }
  .why-section .reason p {
    margin-left: 90px;
  }
  .why-section .reason::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .create-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    min-height: auto;
  }
  .create-card-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
  }
  .create-card-content h4 {
    font-size: 16px;
  }
  .create-card-content p {
    font-size: 13px;
  }
  
  .why-section .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .why-section .reason {
    padding: 22px 18px;
  }
  .why-section .reason h3 {
    font-size: 18px;
  }
  .why-section .reason p {
    margin-left: 85px;
    font-size: 13.5px;
  }
  .why-section .line {
    width: 35px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-card {
    min-height: 230px;
  }
  
  .work-grid-full {
    grid-template-columns: 1fr 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form .form-row,
  .quote-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form-wrapper,
  .quote-form-wrapper {
    padding: 24px 20px;
  }
  
  .contact-item {
    padding: 14px 16px;
  }
  
  .quote-step {
    padding: 14px 16px;
  }
  
  .quote-testimonial {
    padding: 18px 20px;
  }
  
  .quote-testimonial p {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .nav-links.active {
    display: flex !important;
  }
  
  .nav-right {
    gap: 12px;
  }
  
  .get-quote-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  .market-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logo-bar {
    gap: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .create-grid {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .work-grid-full {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .sec-title {
    font-size: 28px;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .cta-section {
    padding: 60px 32px;
  }
  .about-grid {
    gap: 40px;
  }
  .about-quote {
    font-size: 22px;
    line-height: 1.4;
  }
  .about-quote .highlight {
    font-size: 26px;
  }
  .services-section {
    padding: 35px 18px 50px;
  }
  .services-header {
    margin-bottom: 35px;
  }
  .service-card {
    padding: 20px;
    min-height: auto;
    border-radius: 18px;
  }
  .service-title {
    font-size: 20px;
  }
  .image-wrapper {
    height: 220px;
  }
  .image-wrapper img {
    border-radius: 15px;
  }
  .image-wrapper::after {
    width: 76px;
    height: 76px;
  }
  .arrow-btn {
    width: 50px;
    height: 50px;
    right: 8px;
    bottom: 8px;
    font-size: 21px;
  }
  .work-overlay {
    padding: 20px 14px 14px;
  }
  .work-overlay h4 {
    font-size: 15px;
  }
  .work-overlay span {
    font-size: 12px;
  }
  
  .why-section {
    padding: 60px 20px;
  }
  .why-section .section-header {
    margin-bottom: 40px;
  }
  .why-section .small-title {
    font-size: 12px;
  }
  .why-section .main-title {
    font-size: 30px;
  }
  .why-section .reasons-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .why-section .reason {
    padding: 25px 20px;
  }
  .why-section .reason h3 {
    font-size: 19px;
    max-width: 100%;
  }
  .why-section .reason p {
    margin-left: 88px;
    max-width: calc(100% - 88px);
    font-size: 14px;
  }
  .why-section .line {
    width: 35px;
    margin-right: 12px;
  }
  .why-section .reason::before {
    display: none;
  }
  
  .process-section {
    padding: 50px 20px;
  }
  .process-header {
    display: block;
    margin-bottom: 32px;
  }
  .process-title {
    font-size: 31px;
  }
  .header-line {
    display: none;
  }
  .process-card {
    min-height: 220px;
    padding: 27px 24px;
    border-radius: 19px;
  }
  .card-title {
    font-size: 21px;
    margin-bottom: 14px;
  }
  .card-description {
    font-size: 14px;
    max-width: 300px;
  }
  
  .page-hero {
    padding: 60px 20px 40px;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .page-hero p {
    font-size: 16px;
  }
  
  .contact-form-wrapper,
  .quote-form-wrapper {
    padding: 20px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .alert-footer {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .about-quote {
    font-size: 18px;
  }
  .about-quote .highlight {
    font-size: 22px;
  }
  .services-section {
    padding: 25px 12px 40px;
  }
  .services-header {
    margin-bottom: 25px;
  }
  .service-card {
    padding: 17px;
    border-radius: 16px;
  }
  .image-wrapper {
    height: 190px;
  }
  .image-wrapper img {
    border-radius: 13px;
  }
  .image-wrapper::after {
    width: 67px;
    height: 67px;
  }
  .arrow-btn {
    width: 44px;
    height: 44px;
    right: 6px;
    bottom: 6px;
    font-size: 19px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .work-overlay {
    padding: 14px 10px 10px;
  }
  .work-overlay h4 {
    font-size: 13px;
  }
  .work-overlay span {
    font-size: 10px;
  }
  .create-card-image {
    height: 150px;
  }
  
  .why-section {
    padding: 45px 15px;
  }
  .why-section .main-title {
    font-size: 26px;
  }
  .why-section .reason {
    padding: 20px 15px;
  }
  .why-section .reason h3 {
    font-size: 17px;
  }
  .why-section .reason p {
    margin-left: 78px;
    max-width: calc(100% - 78px);
    font-size: 13px;
  }
  .why-section .number {
    font-size: 12px;
    width: 28px;
  }
  .why-section .line {
    width: 28px;
    margin-right: 10px;
    margin-top: 7px;
  }
  
  .process-title {
    font-size: 27px;
  }
  .process-card {
    min-height: 210px;
  }
  
  .page-hero h1 {
    font-size: 26px;
  }
  
  .contact-form-wrapper,
  .quote-form-wrapper {
    padding: 16px;
  }
  
  .contact-form .form-group input,
  .contact-form .form-group select,
  .contact-form .form-group textarea,
  .quote-form .form-group input,
  .quote-form .form-group select,
  .quote-form .form-group textarea {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .submit-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}