:root {
  --bg-light: #f9f8f6;
  --bg-gradient-start: #f9f8f6;
  --bg-gradient-mid: #ede5dd;
  --bg-gradient-end: #d9cfc4;
  --text-dark: #2a2a2a;
  --accent: #a86b4a;
  --accent-light: #e9d9cf;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  --font-main: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(
    180deg,
    var(--bg-gradient-start) 0%,
    var(--bg-gradient-mid) 40%,
    var(--bg-gradient-end) 100%
  );
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(168, 107, 74, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.side-menu {
  position: fixed;
  top: 30%;
  left: 0;
  width: 280px;
  height: 400px;
  border-radius: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(217, 212, 194, 0.7));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.side-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 3rem;
  line-height: 1.2;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.side-nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
  padding-left: 1rem;
}
.side-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.side-nav-link:hover {
  color: var(--accent);
}
.side-nav-link:hover::before {
  height: 100%;
}
.side-call {
  margin-bottom: 2rem;
  width: 100%;
}
.side-call-link {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
  padding-left: 1rem;
}
.side-call-link i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.side-call-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.side-call-link:hover {
  color: var(--accent);
}
.side-call-link:hover::before {
  height: 100%;
}
.side-footer {
  font-size: 0.8rem;
  color: #888;
  margin-top: auto;
}

.burger {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  z-index: 200;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.burger span {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.main-content {
  margin-left: 280px;
  padding: 2rem 3rem;
}

.hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 1rem 0;
}
.hero__inner {
  max-width: 900px;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__title-line {
  display: block;
}
.hero__title-line--accent {
  color: var(--accent);
}
.hero__subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 3rem;
}
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.rotating-section {
  padding: 0rem 0 1rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: transparent;
}
.rotating-container {
  position: relative;
  width: 100%;
  height: 350px;
  perspective: 1200px;
}
.rotating-card {
  position: absolute;
  width: 320px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  will-change: transform;
  color: var(--text-dark);
}
.rotating-card:hover {
  transform: scale(1.02) translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.4),
              inset 0 1px 3px rgba(255, 255, 255, 0.9);
}
.rotating-card h3 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.rotating-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  font-weight: 400;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  text-align: center;
  margin: 4rem 0 3rem;
  letter-spacing: -0.02em;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.project-item {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}
.project-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.project-item--wide {
  grid-column: span 2;
}
.project-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #e9d9cf;
  transition: transform 0.6s;
  flex-shrink: 0;
}
.project-item--large .project-image {
  height: 300px;
}
.project-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.project-content p {
  color: #666;
  flex: 1;
}
.project-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.project-item:hover .project-image {
  transform: scale(1.05);
}
.project-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex-shrink: 0;
}
.project-features li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-features li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  margin-right: 0.5rem;
}
.project-description {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  border-top: 1px dashed var(--accent-light);
  padding-top: 0.8rem;
  margin-top: auto;
  flex-shrink: 0;
}

.projects-mobile {
  display: none;
}
.projects-mobile .projects-grid-mobile {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 1rem 2rem;
  margin: 0;
  scrollbar-width: none;
}
.projects-mobile .projects-grid-mobile::-webkit-scrollbar {
  display: none;
}
.projects-mobile .project-item-mobile {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: auto;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.projects-mobile .project-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.projects-mobile .project-content {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.projects-mobile .project-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.projects-mobile .project-content p {
  font-size: 0.9rem;
  color: #666;
  flex: 1;
}

.why-us {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  margin-top: 105px;
  border-radius: 30px;
}
.why-us-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: blur(7px);
}
.why-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.why-us-header {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.why-us-header .section-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin: 0;
}
.why-us-header .section-title::after {
  background-color: #fff;
}
.bf {
  color: #a86b4a;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}
.why-sticky-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 380vh;
  display: flex;
  flex-direction: column;
  z-index: 2;
  will-change: transform;
}
.why-sticky {
  flex: 0 0 63vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.why-card {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 1rem 7rem 4rem;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 40px 70px -20px rgba(0, 0, 0, 0.4);
}
.why-number {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(168, 107, 74, 0.1);
  line-height: 1;
  z-index: 0;
}
.why-icon {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 4rem;
  line-height: 1;
}
.why-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2a2a2a;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.contacts {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}
.contacts-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(245,240,235,0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.8);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 70px -20px rgba(0,0,0,0.4);
}
.contacts-card__info {
  display: flex;
  padding-top: 50px;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.3rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(168, 107, 74, 0.3);
}
.contact-item i {
  font-size: 2rem;
  color: var(--accent);
  width: 2.5rem;
  text-align: center;
}
.contact-item a,
.contact-item span {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: var(--accent);
}
.contacts-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 1.2rem 2rem;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 10px 20px -10px var(--accent);
}
.contacts-card__btn i {
  font-size: 1.5rem;
}
.contacts-card__btn:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px var(--accent);
}
.contacts-card__quote {
  background: linear-gradient(135deg, var(--accent-light) 0%, #f9e5d9 100%);
  border-radius: 40px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05), 0 10px 20px -10px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.5);
}
.contacts-card__quote i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.contacts-card__quote p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 400;
  max-width: 400px;
  margin-bottom: 1rem;
  font-style: italic;
}
.contacts-card__quote span {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 4rem;
}
.footer .info {
  text-decoration: none;
  color: #888888;
  transition: color 0.3s;
}
.footer .info:hover {
  color: #3f3d3d;
}

@media (min-width: 993px) {
  .rotating-card--1 {
    top: 0%;
    left: 8%;
    transform: rotate(-7deg) translateZ(20px);
    z-index: 3;
  }
  .rotating-card--2 {
    top: 10%;
    left: 35%;
    transform: rotate(5deg) translateZ(40px);
    z-index: 2;
  }
  .rotating-card--3 {
    top: 10%;
    left: 65%;
    transform: rotate(-3deg) translateZ(10px);
    z-index: 1;
  }
}


@media (max-width: 992px) and (min-width: 769px) {
  .main-content {
    margin-left: 0;
    padding: 2rem 2rem;
  }
  .burger {
    display: flex;
  }
  .side-menu {
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(217,212,194,0.9));
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.3);
  }
  .side-menu.active {
    transform: translateX(0);
  }
  .side-menu__inner {
    justify-content: flex-start;
  }
  .logo {
    margin-bottom: 4rem;
  }
  .side-nav {
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .side-nav-link {
    font-size: 1.2rem;
  }
  .side-call {
    margin-bottom: 3rem;
  }
  .side-call-link {
    font-size: 1.2rem;
  }

  .projects-desktop {
    display: none;
  }
  .projects-mobile {
    display: block;
  }
  .projects-mobile .project-item-mobile {
    flex: 0 0 300px;
    min-height: 520px;
  }

  .why-card {
    padding: 2.5rem;
  }
  .why-sticky {
    flex: 0 0 65vh;
  }
  .why-card h3 {
    font-size: 1.8rem;
  }
  .why-icon {
    font-size: 3.5rem;
  }
  .why-number {
    font-size: 6rem;
  }

  .contacts-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .contact-item {
    font-size: 1.1rem;
  }
  .contact-item i {
    font-size: 1.8rem;
  }
  .contacts-card__btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .contacts-card__quote {
    padding: 2rem;
  }
  .contacts-card__quote p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) and (min-width: 577px) {
  .main-content {
    margin-left: 0;
    padding: 2rem 1.5rem;
  }
  .burger {
    display: flex;
  }
  .side-menu {
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(217,212,194,0.9));
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.3);
  }
  .side-menu.active {
    transform: translateX(0);
  }
  .side-menu__inner {
    justify-content: flex-start;
  }
  .logo {
    margin-bottom: 4rem;
  }
  .side-nav {
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .side-nav-link {
    font-size: 1.2rem;
  }
  .side-call {
    margin-bottom: 3rem;
  }
  .side-call-link {
    font-size: 1.2rem;
  }

  .projects-desktop {
    display: none;
  }
  .projects-mobile {
    display: block;
  }
  .projects-mobile .project-item-mobile {
    flex: 0 0 260px;
    min-height: 500px;
  }
  .projects-mobile .project-image {
    height: 200px;
  }

  .rotating-section {
    min-height: 600px;
  }
  .rotating-container {
    height: 500px;
  }
  .rotating-card {
    width: 200px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.9);
  }
  .rotating-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  .rotating-card p {
    font-size: 0.9rem;
  }
  .rotating-card--1 {
    top: 0px;
    left: 5%;
    transform: rotate(-4deg);
    z-index: 3;
  }
  .rotating-card--2 {
    top: 180px;
    left: 15%;
    transform: rotate(3deg);
    z-index: 2;
  }
  .rotating-card--3 {
    top: 400px;
    left: 35%;
    transform: rotate(-2deg);
    z-index: 1;
  }

  .why-card {
    padding: 2rem;
  }
  .why-card h3 {
    font-size: 1.6rem;
  }
  .why-icon {
    font-size: 3rem;
  }
  .why-number {
    font-size: 5rem;
  }


  .contacts {
    margin: 4rem auto;
  }
  .contacts-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 30px;
  }
  .contact-item {
    gap: 1rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }
  .contacts-card__info {
    align-items: center;
    text-align: center;
  }
  .contacts-card__quote i {
    font-size: 3rem;
  }
  .contacts-card__quote p {
    font-size: 1rem;
  }
}


@media (max-width: 576px) {
  .main-content {
    margin-left: 0;
    padding: 2rem 1rem;
  }
  .burger {
    display: flex;
  }
  .side-menu {
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(217,212,194,0.9));
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding: 2.5rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.3);
  }
  .side-menu.active {
    transform: translateX(0);
  }
  .logo {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .side-nav {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .side-nav-link {
    font-size: 1rem;
  }
  .side-call-link {
    font-size: 1rem;
  }


  .projects-desktop {
    display: none;
  }
  .projects-mobile {
    display: block;
  }
  .projects-mobile .project-item-mobile {
    flex: 0 0 240px;
    min-height: 480px;
  }

  .rotating-section {
    min-height: 500px;
  }
  .rotating-container {
    height: 450px;
  }
  .rotating-card {
    width: 180px;
    padding: 1.2rem;
  }
  .rotating-card h3 {
    font-size: 1.2rem;
  }
  .rotating-card p {
    font-size: 0.85rem;
  }
  .rotating-card--1 {
    top: 10px;
    left: 5%;
  }
  .rotating-card--2 {
    top: 150px;
    left: 15%;
  }
  .rotating-card--3 {
    top: 350px;
    left: 30%;
  }


  .why-card {
    padding: 1.5rem;
  }
  .why-card h3 {
    font-size: 1.4rem;
  }
  .why-icon {
    font-size: 2.5rem;
  }
  .why-number {
    font-size: 4rem;
  }

  .contacts-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 25px;
  }
  .contact-item {
    font-size: 0.95rem;
    gap: 0.8rem;
    text-align: center;
    justify-content: center;
  }
  .contact-item i {
    font-size: 1.5rem;
    width: 2rem;
  }
  .contacts-card__info {
    align-items: center;
    text-align: center;
  }
  .contacts-card__btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  .contacts-card__quote {
    padding: 1.5rem;
  }
  .contacts-card__quote i {
    font-size: 2.5rem;
  }
  .contacts-card__quote p {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .why-us {
    height: auto !important;          
    overflow: visible !important;      
    margin-top: 60px;                 
  }
  .why-sticky-container {
    position: relative !important;   
    height: auto !important;          
    transform: none !important;       
    will-change: auto !important;
    margin-top: 100px;  
  }
  .why-sticky {
    flex: 0 0 auto;                  
    min-height: auto;
    padding: 2rem 1rem;
    opacity: 1;                         
    transform: none;
  }
  .why-card {
    margin: 1rem 0;
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .why-us-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-bottom: 1rem; 
    margin-top: 1rem;    
  }


  .why-sticky-container {
    margin-top: 0 !important;
  }


  .why-sticky:first-child {
    margin-top: 1rem;
  }
}