/* ========================================
   FILLSERVICE YENI — Figma Design System
   Primary: #B90100 | Background: #FBF9F8
   ======================================== */

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

:root {
  --red: #B90100;
  --red-dark: #930100;
  --red-light: #FFDAD4;
  --red-gradient: linear-gradient(135deg, #B90100 0%, #E80000 100%);
  --black: #1B1C1C;
  --gray-900: #334155;
  --gray-700: #5F5E5E;
  --gray-500: #656464;
  --gray-300: #E4E2E1;
  --gray-200: #F0EDED;
  --gray-100: #F6F3F2;
  --bg: #FBF9F8;
  --white: #FFFFFF;
  --footer-bg: #F1F5F9;
  --footer-border: #E2E8F0;
  --footer-text: #475569;
  --footer-heading: #0F172A;
  --footer-link: #64748B;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-red: 0 20px 25px -5px rgba(185,1,0,0.2), 0 8px 10px -6px rgba(185,1,0,0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-family: inherit;
  font-size: 18px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 28px;
}

.btn--primary {
  padding: 16px 32px;
  background: var(--red-gradient);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  position: relative;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 30px -5px rgba(185,1,0,0.3), 0 10px 12px -6px rgba(185,1,0,0.25);
}

.btn--secondary {
  padding: 16px 32px;
  background: var(--gray-300);
  color: var(--gray-500);
  border-radius: var(--radius);
}

.btn--secondary:hover {
  background: #d6d4d3;
  transform: translateY(-2px);
}

.btn--small {
  padding: 8px 16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.btn--small:hover {
  background: var(--red-dark);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon {
  width: 40px;
  height: 40px;
}

.logo__wordmark {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1.2px;
  line-height: 32px;
  text-transform: uppercase;
}

.logo__fill {
  color: var(--red);
}

.logo__service {
  color: var(--red);
}

.logo--footer .logo__fill,
.logo--footer .logo__service {
  color: var(--footer-heading);
}

/* Nav */
.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-900);
  transition: var(--transition);
  letter-spacing: -0.4px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav__link:hover {
  color: var(--red);
}

.nav__link.active {
  color: var(--red);
  font-weight: 700;
  border-bottom-color: var(--red);
}

/* Header Right */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-900);
  transition: var(--transition);
}

.header__phone:hover {
  color: var(--red);
}

/* Header CTA */
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--red-gradient);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.header__cta:hover {
  transform: translateY(-1px) scale(0.98);
  box-shadow: var(--shadow-md);
}

/* ---------- LANG SWITCHER ---------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: 0.3px;
}

.lang-btn.active {
  background: var(--red);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--black);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 196px 0 128px;
  background: var(--bg);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}

.hero__content {
  max-width: 580px;
  text-align: left;
}

/* Desktop: fon şəkli gizli */
.hero__bg-image {
  display: none;
}

/* Desktop: tam görünən şəkil */
.hero__visual-desktop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-glow {
  position: absolute;
  inset: -20px;
  background: rgba(255,218,212,0.2);
  border-radius: var(--radius-full);
  filter: blur(60px);
}

.hero__image-card {
  position: relative;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  max-width: 500px;
}

.hero__image-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.hero__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red-light);
  color: var(--red-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -3.6px;
}

.hero__title span {
  color: var(--red);
}

.hero__desc {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 40px;
  max-width: 512px;
  line-height: 1.625;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ---------- STATS ---------- */
.stats {
  background: var(--gray-100);
  padding: 48px 24px;
}

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

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat__number {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 40px;
}

.stat__plus {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
}

.stat__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  margin-bottom: 64px;
}

.section-header--left {
  text-align: left;
}

.section-header__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -2.4px;
  line-height: 48px;
}

.section-header__accent {
  width: 96px;
  height: 6px;
  background: var(--red);
  border-radius: var(--radius-full);
  margin-top: 16px;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 96px 0;
  background: var(--bg);
}

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

.service-card {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.service-card__image {
  width: 100%;
  height: 192px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 32px;
}

.service-card__icon {
  margin-bottom: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 28px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.625;
  margin-bottom: 16px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  transition: var(--transition);
}

.service-card__link:hover {
  gap: 12px;
}

/* ---------- ABOUT / WHY US ---------- */
.about {
  padding: 96px 0;
  background: var(--gray-100);
  overflow: hidden;
}

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

.about__image {
  position: relative;
}

.about__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 256px;
  height: 256px;
  background: var(--red);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__image img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.about__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -2.4px;
  line-height: 48px;
  margin-bottom: 32px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185,1,0,0.1);
  border-radius: 50%;
  padding: 8px;
}

.feature__text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 28px;
}

.feature__text p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 20px;
  margin-top: 2px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 96px 0;
  background: var(--bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}

.contact__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -2.4px;
  line-height: 48px;
  margin-bottom: 24px;
}

.contact__desc {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 26px;
  margin-bottom: 40px;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-200);
  border-radius: var(--radius);
}

.contact-item__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 16px;
}

.contact-item__value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 28px;
  transition: var(--transition);
}

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

/* Map */
.contact__map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-lg);
}

.contact__map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact__map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.contact__map-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.contact__map-card-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 24px;
}

.contact__map-card-info span {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer__tagline {
  color: var(--footer-text);
  font-size: 16px;
  margin-top: 24px;
  line-height: 26px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--footer-heading);
  margin-bottom: 24px;
  line-height: 24px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col a {
  color: var(--footer-link);
  font-size: 16px;
  line-height: 24px;
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--red);
}

/* Newsletter */
.footer__newsletter p {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: var(--gray-300);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: #6B7280;
}

.newsletter-form input:focus {
  background: var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.newsletter-form button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--red-dark);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-300);
  color: var(--footer-link);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid var(--footer-border);
  padding: 32px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 16px;
  color: var(--footer-text);
  line-height: 24px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.wa-float::before,
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: wa-pulse 2s ease-out infinite;
}

.wa-float::after {
  inset: -6px;
  animation-delay: 1s;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 34px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(185,1,0,0.3);
  z-index: 999;
}

.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:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ---------- ABOUT HERO ---------- */
.about-hero {
  position: relative;
  height: 716px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-about .about-hero {
  margin-top: 68px;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
  filter: saturate(0);
}

.about-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(251,249,248,0.8) 50%, transparent 100%);
}

.about-hero__content {
  position: relative;
  max-width: 768px;
}

.about-hero__badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3.2px;
  margin-bottom: 16px;
}

.about-hero__title {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--black);
  letter-spacing: -4px;
  margin-bottom: 32px;
}

.about-hero__title span {
  color: var(--red);
}

.about-hero__desc {
  font-size: 20px;
  color: #57534E;
  line-height: 1.625;
  max-width: 576px;
}

/* ---------- OUR PATH ---------- */
.our-path {
  padding: 128px 0;
  background: var(--bg);
}

.our-path__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.our-path__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1.2px;
  margin-bottom: 48px;
}

.our-path__texts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.our-path__texts p {
  font-size: 18px;
  color: #57534E;
  line-height: 1.625;
}

.our-path__stats {
  display: flex;
  gap: 48px;
}

.our-path__stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 40px;
}

.our-path__stat-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #A8A29E;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-top: 4px;
}

.our-path__visual {
  position: relative;
}

.our-path__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.our-path__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.our-path__quote {
  position: absolute;
  bottom: -32px;
  left: -32px;
  max-width: 320px;
  background: var(--bg);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 32px 32px 32px 36px;
  font-size: 16px;
  font-style: italic;
  color: #292524;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
}

/* ---------- OUR VALUES ---------- */
.our-values {
  padding: 128px 0;
  background: var(--gray-100);
}

.our-values__header {
  text-align: center;
  margin-bottom: 80px;
}

.our-values__title {
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.9px;
  margin-bottom: 24px;
}

.our-values__accent {
  width: 80px;
  height: 4px;
  background: var(--red);
  margin: 0 auto;
}

.our-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-200);
  border-radius: 8px;
  margin-bottom: 32px;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 32px;
}

.value-card p {
  font-size: 16px;
  color: #78716C;
  line-height: 26px;
}

/* ---------- ABOUT CTA ---------- */
.about-cta {
  padding: 0 0 128px;
  background: var(--bg);
}

.about-cta__card {
  position: relative;
  background: var(--red-gradient);
  border-radius: var(--radius-lg);
  padding: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-cta__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  opacity: 0.1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.3"/></svg>') center/cover;
}

.about-cta__content {
  position: relative;
  max-width: 576px;
}

.about-cta__content h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.2px;
  line-height: 48px;
  margin-bottom: 24px;
}

.about-cta__content p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 28px;
}

.about-cta__buttons {
  position: relative;
  display: flex;
  gap: 16px;
}

.btn--white {
  padding: 20px 62px;
  background: var(--white);
  color: var(--red);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

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

.btn--glass {
  padding: 20px 40px;
  background: rgba(0,0,0,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.btn--glass:hover {
  background: rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.footer__active-link {
  color: #DC2626 !important;
}

/* ---------- BOTTOM NAV (MOBILE) ---------- */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(251,249,248,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(234,188,181,0.3);
  padding: 13px 24px 24px;
  z-index: 999;
  justify-content: space-around;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(95,94,94,0.6);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  transition: var(--transition);
  padding: 4px 8px;
}

.bottom-nav__item--active {
  color: var(--red);
}

.bottom-nav__item svg {
  width: 18px;
  height: 18px;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 96px;
  }

  .hero__inner {
    gap: 40px;
  }

  .hero__image-card {
    max-width: 400px;
    padding: 16px;
  }

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

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

  .contact__map-wrapper {
    height: 350px;
  }

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

  .header__phone {
    display: none;
  }

  .about__inner {
    gap: 48px;
  }

  .about__title,
  .contact__title,
  .section-header__title {
    font-size: 36px;
    letter-spacing: -1.8px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .bottom-nav {
    display: flex;
  }

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

  .header__phone,
  .header__cta {
    display: none;
  }

  .lang-switcher {
    display: inline-flex;
  }

  .lang-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .wa-float {
    bottom: 24px;
    right: 24px;
  }

  .back-to-top {
    bottom: 92px;
    right: 29px;
  }

  /* About page mobile */
  .about-hero {
    height: auto;
    padding: 112px 0 48px;
  }

  .about-hero__bg img {
    opacity: 0.3;
  }

  .about-hero__title {
    font-size: 36px;
    letter-spacing: -1.8px;
    line-height: 1.1;
  }

  .about-hero__desc {
    font-size: 16px;
  }

  .our-path {
    padding: 64px 0;
  }

  .our-path__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .our-path__title {
    font-size: 24px;
    letter-spacing: -1.2px;
    margin-bottom: 32px;
  }

  .our-path__texts p {
    font-size: 14px;
  }

  .our-path__image img {
    height: 300px;
  }

  .our-path__quote {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .our-values {
    padding: 64px 0;
  }

  .our-values__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-card {
    padding: 25px;
  }

  .value-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: var(--red-gradient);
  }

  .value-card__icon svg {
    stroke: white;
    width: 18px;
    height: 18px;
  }

  .value-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 12px;
    line-height: 19.5px;
  }

  .about-cta {
    padding: 0 24px 64px;
  }

  .about-cta__card {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px 32px;
    border-radius: 32px;
  }

  .about-cta__content h2 {
    font-size: 30px;
    line-height: 37.5px;
    letter-spacing: -0.75px;
  }

  .about-cta__content p {
    font-size: 14px;
    line-height: 22.75px;
    margin-bottom: 24px;
  }

  .about-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn--white,
  .btn--glass {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 12px;
    justify-content: center;
    width: 100%;
  }

  /* Mobile contact section - dark theme */
  .contact {
    padding-bottom: 0;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }


  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid var(--gray-300);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 8px;
  }

  .nav__link {
    display: block;
    padding: 12px 18px;
    font-size: 16px;
    border-bottom: none;
    border-radius: var(--radius);
  }

  .nav__link.active {
    background: var(--red-light);
    border-bottom: none;
  }

  .hero {
    padding: 120px 0 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 64px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__title {
    font-size: 36px;
    letter-spacing: -1.8px;
    line-height: 1.1;
  }

  .hero__desc {
    font-size: 16px;
  }

  /* Mobil: desktop şəkli gizlə, fon şəklini göstər */
  .hero__visual-desktop {
    display: none;
  }

  .hero__bg-image {
    display: block;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 60%;
    pointer-events: none;
    opacity: 0.18;
    mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
  }

  .hero__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat__number,
  .stat__plus {
    font-size: 28px;
  }

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

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

  .about__image img {
    height: 350px;
  }

  .about__image-accent {
    width: 160px;
    height: 160px;
    bottom: -16px;
    right: -16px;
  }

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

  .contact__map-wrapper {
    height: 300px;
  }

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

  .about__title,
  .contact__title,
  .section-header__title {
    font-size: 32px;
    letter-spacing: -1.6px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
    letter-spacing: -1.4px;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .logo__wordmark {
    font-size: 20px;
  }

  .btn {
    font-size: 16px;
  }
}
