:root {
  --black: #0d0d0d;
  --dark: #151515;
  --orange: #c77824;
  --orange-light: #e09a45;
  --cream: #f6f1e8;
  --beige: #e8ded0;
  --white: #ffffff;
  --text: #222222;
  --muted: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */

.site-header {
  min-height: 88px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border-radius: 10px;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--orange-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.languages {
  display: flex;
  gap: 7px;
}

.languages a {
  background: #1d1d1d;
  color: white;
  border: 1px solid #2a2a2a;
  padding: 7px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: 0.3s;
}

.languages a:hover {
  background: var(--orange);
}

.offer-btn,
.btn.primary {
  background: var(--orange);
  color: white;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.3s;
}

.offer-btn:hover,
.btn.primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn.secondary {
  color: white;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.35);
  transition: 0.3s;
}

.btn.secondary:hover {
  background: white;
  color: var(--black);
}

/* HERO */

.hero {
  min-height: 670px;
  background:
    linear-gradient(rgba(13,13,13,0.95), rgba(13,13,13,0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 70px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 9%;
  color: white;
}

.badge {
  display: inline-block;
  background: rgba(199,120,36,0.15);
  color: var(--orange-light);
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 76px;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--orange-light);
}

.hero p {
  max-width: 560px;
  margin: 28px 0;
  color: #dddddd;
  font-size: 18px;
  line-height: 1.8;
}

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

.logo-card {
  width: 520px;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.035);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.logo-card img {
  width: 250px;
  background: white;
  padding: 28px;
  border-radius: 12px;
}

.motto {
  margin-top: 25px;
  border: 1px solid rgba(199,120,36,0.45);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
}

/* NUMBERS */

.numbers {
  background: var(--black);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 35px 9% 70px;
  gap: 30px;
}

.numbers h2 {
  color: var(--orange-light);
  font-size: 48px;
}

.numbers p {
  color: #cccccc;
  margin-top: 8px;
}

/* LANGUAGE STRIP */

.language-strip {
  background: var(--orange);
  color: white;
  padding: 18px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-strip div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.language-strip span {
  background: rgba(255,255,255,0.18);
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 700;
}

/* GENERAL SECTIONS */

.section {
  padding: 95px 9%;
}

.light {
  background: var(--cream);
}

.beige {
  background: var(--beige);
}

.small-title {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
  display: inline-block;
}

.section h2,
.about-preview h2,
.about-story h2,
.team-section h2,
.trust-left h2 {
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.section h2 em,
.about-preview h2 em,
.page-hero h1 em,
.contact-hero h1 em,
.services-hero h1 em,
.trust-left h2 em {
  color: var(--orange);
  font-style: italic;
}

.section-text {
  max-width: 660px;
  line-height: 1.8;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 55px;
}

/* SERVICE TABLE */

.service-table {
  border: 1px solid #d8d0c6;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.45);
}

.service-table div {
  padding: 35px;
  min-height: 190px;
  border-right: 1px solid #d8d0c6;
  border-bottom: 1px solid #d8d0c6;
}

.service-table span {
  font-size: 28px;
}

.service-table h3 {
  margin: 18px 0 10px;
}

.service-table p {
  color: var(--muted);
  line-height: 1.6;
}

/* ABOUT PREVIEW */

.about-preview {
  padding: 95px 9%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: #eee7dd;
}

.about-preview p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.check-list {
  list-style: none;
  margin-top: 35px;
}

.check-list li {
  margin-bottom: 20px;
  font-weight: 900;
}

.black-logo-box {
  background: var(--black);
  border-radius: 22px;
  padding: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.black-logo-box img {
  width: 260px;
  background: white;
  padding: 30px;
  border-radius: 12px;
}

/* PAGE HERO */

.page-hero {
  min-height: 430px;
  background:
    linear-gradient(rgba(13,13,13,0.93), rgba(13,13,13,0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 9%;
  color: white;
}

.page-hero-content {
  max-width: 880px;
}

.page-hero h1 {
  font-size: 68px;
  margin: 25px 0;
  line-height: 1;
  font-family: Georgia, serif;
}

.page-hero p {
  color: #cccccc;
  line-height: 1.9;
  font-size: 18px;
}

/* SERVICES PAGE */

.services-hero {
  padding: 120px 10%;
  background: var(--cream);
}

.services-hero h1 {
  font-size: 70px;
  margin-top: 20px;
  color: #111;
  font-family: Georgia, serif;
}

.services-hero p {
  margin-top: 20px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 80px 10%;
  background: white;
}

.service-card {
  background: white;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 35px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666666;
  line-height: 1.7;
}

.projects-preview {
  padding: 100px 10%;
  background: #111111;
  color: white;
}

.projects-header {
  margin-bottom: 50px;
}

.projects-header h2 {
  font-size: 60px;
  font-family: Georgia, serif;
}

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

.projects-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
}

.projects-grid img:hover {
  transform: scale(1.03);
}

/* ABOUT PAGE */

.about-story {
  padding: 100px 9%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-story p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  gap: 22px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.about-highlights div {
  background: white;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-left: 4px solid var(--orange);
}

.about-highlights strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  margin-bottom: 5px;
}

.about-highlights span {
  color: #444444;
  font-weight: 800;
}

.about-logo-panel {
  background: var(--black);
  border-radius: 28px;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-panel img {
  width: 260px;
  background: white;
  padding: 28px;
  border-radius: 12px;
}

/* TEAM */

.team-section {
  padding: 100px 9%;
  background: #eee7dd;
  text-align: center;
}

.team-intro {
  max-width: 720px;
  margin: 0 auto 55px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  text-align: left;
  transition: 0.4s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.team-content {
  padding: 32px;
}

.team-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.team-content span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.team-content p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

/* VALUES */

.values-section {
  padding: 80px 9%;
  background: var(--black);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-box {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 38px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}

.value-box h3 {
  color: var(--orange-light);
  font-size: 28px;
  margin-bottom: 14px;
}

.value-box p {
  color: #cccccc;
  line-height: 1.7;
}

/* PROCESS PAGE */

.process-section {
  background: var(--cream);
  padding: 100px 9%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  position: relative;
  text-align: center;
}

.process-line {
  position: absolute;
  top: 145px;
  left: 13%;
  right: 13%;
  height: 2px;
  background: rgba(199, 120, 36, 0.25);
}

.process-step {
  position: relative;
  z-index: 2;
}

.process-number {
  width: 88px;
  height: 88px;
  background: var(--black);
  color: var(--orange-light);
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.dark-trust-section,
.dark-trust {
  background: var(--black);
  color: white;
  padding: 110px 9%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.trust-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-item strong {
  color: rgba(199,120,36,0.6);
  font-size: 36px;
}

.trust-item h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.trust-item p {
  color: #cfcfcf;
  line-height: 1.7;
}

.testimonial-box,
.review-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.testimonial-box span,
.review-box .small-title {
  color: var(--orange-light);
}

.testimonial-box h3,
.review-box h3 {
  color: var(--orange-light);
  margin: 20px 0;
  font-size: 28px;
}

.testimonial-box p,
.review-box p {
  font-size: 22px;
  line-height: 1.6;
  font-family: Georgia, serif;
  font-style: italic;
  color: #eeeeee;
}

.client {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.client div {
  width: 55px;
  height: 55px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.client p {
  font-size: 15px;
  font-family: Arial, sans-serif;
  font-style: normal;
}

/* CONTACT PAGE */

.contact-hero {
  padding: 120px 10%;
  background: var(--cream);
}

.contact-hero h1 {
  font-size: 70px;
  margin: 20px 0;
  color: #111111;
  font-family: Georgia, serif;
}

.contact-hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.contact-wrapper {
  padding: 90px 10%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  background: white;
}

.contact-info,
.contact-form-box {
  background: var(--cream);
  padding: 42px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form-box h2 {
  font-size: 32px;
  margin-bottom: 28px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item strong {
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

.contact-bottom {
  padding: 80px 10%;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bottom-card {
  background: white;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border-top: 4px solid var(--orange);
}

.bottom-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.bottom-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */

.footer {
  background: var(--black);
  color: white;
  padding: 70px 9%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h3,
.footer h4 {
  color: var(--orange-light);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer img {
  width: 65px;
  background: white;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.footer p {
  color: #bdbdbd;
  line-height: 1.8;
}

/* RESPONSIVE FINAL */

@media (max-width: 950px) {
  .site-header {
    min-height: 76px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .logo {
    display: block;
    flex-shrink: 0;
  }

  .logo img {
    width: 46px;
    height: 46px;
    padding: 4px;
  }

  .nav {
    display: flex;
    gap: 9px;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .nav a {
    font-size: 11px;
    white-space: nowrap;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .languages {
    display: flex;
    gap: 4px;
  }

  .languages a {
    min-width: 24px;
    padding: 6px 6px;
    font-size: 10px;
  }

  .offer-btn {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 55px 6%;
    gap: 35px;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

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

  .hero-logo-only {
    width: 280px !important;
    padding: 30px !important;
    margin: 0 auto;
  }

  .hero-logo-only img {
    max-width: 220px !important;
  }

  .numbers,
  .service-table,
  .services-grid,
  .projects-grid,
  .team-grid,
  .values-section,
  .process-section,
  .contact-bottom,
  .footer {
    grid-template-columns: 1fr;
  }

  .about-preview,
  .about-story,
  .dark-trust,
  .dark-trust-section,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .language-strip {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .page-hero h1,
  .services-hero h1,
  .contact-hero h1,
  .section h2,
  .about-preview h2,
  .about-story h2,
  .team-section h2 {
    font-size: 38px;
  }

  .process-line {
    display: none;
  }

  .team-card img {
    height: 320px;
  }
}

/* FOOTER LINKS */

.footer a {
  display: block;
  color: #bdbdbd;
  text-decoration: none;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer a:hover {
  color: var(--orange-light);
  padding-left: 6px;
}

/* HERO LOGO CLEAN */

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 8, 10, 0.88), rgba(5, 8, 10, 0.92)),
    url("../images/hero.png") center center / cover no-repeat;
}

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

.hero-logo-only {
  background: #ffffff;
  border-radius: 22px;
  padding: 55px;
  width: 460px;
  max-width: 100%;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.45);
  animation: heroLogoCardOpen 1.1s ease forwards;
}

.hero-logo-only img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.82);
  animation: heroLogoReveal 1.2s ease forwards;
  animation-delay: 0.35s;
}

.motto {
  display: none;
}

@keyframes heroLogoCardOpen {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.9);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroLogoReveal {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* GOOGLE MAPS */

.map-box {
  margin: 18px 0 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(199, 120, 36, 0.25);
}

.map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.map-link {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* SMALL PHONE FINAL FIX */

@media (max-width: 430px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 62px;
    padding: 7px 8px;
    gap: 5px;
  }

  .logo img {
    width: 36px;
    height: 36px;
    padding: 3px;
    border-radius: 7px;
  }

  .nav {
    gap: 6px;
    flex: 1;
    justify-content: center;
    overflow: hidden;
  }

  .nav a {
    font-size: 9.5px;
    font-weight: 900;
    white-space: nowrap;
  }

  .header-actions {
    gap: 0;
  }

  .languages {
    gap: 3px;
  }

  .languages a {
    min-width: 22px;
    padding: 5px 5px;
    font-size: 9px;
    border-radius: 5px;
  }

  .offer-btn {
    display: none;
  }

  .hero {
    padding: 40px 6%;
    gap: 28px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-logo-only {
    width: 235px !important;
    padding: 24px !important;
  }

  .hero-logo-only img {
    max-width: 185px !important;
  }

  .services-hero,
  .contact-hero,
  .page-hero {
    padding: 55px 6% 40px;
  }

  .services-hero h1,
  .contact-hero h1,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .projects-header h2,
  .section h2,
  .about-preview h2,
  .about-story h2,
  .team-section h2 {
    font-size: 32px;
    line-height: 1.15;
    overflow-wrap: break-word;
  }

  .projects-preview,
  .section,
  .about-preview,
  .about-story,
  .team-section,
  .values-section,
  .process-section,
  .contact-wrapper,
  .contact-bottom {
    padding-left: 6%;
    padding-right: 6%;
  }

  .projects-grid img {
    height: 220px;
  }

  .footer {
    padding: 42px 6%;
    gap: 28px;
  }
}
