:root {
  --color-orange: #f26122;
  --color-navy: #1c2945;
  --color-navy-dark: #121a2f;
  --color-bg-light: #f1f5f9;
  --color-white: #ffffff;
  --color-text-body: #4a5568;
  --font-primary: "Montserrat", sans-serif;
  --container-max-width: 1300px;
  --section-padding: 80px 0 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-body);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-white);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-orange);
  border-radius: 6px;
  border: 3px solid var(--color-white);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-navy);
}

.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

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

.fade-up {
  transform: translateY(40px);
}

.fade-left {
  transform: translateX(40px);
}

.fade-right {
  transform: translateX(-40px);
}

.zoom-in {
  transform: scale(0.95);
}

.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-400 {
  transition-delay: 400ms;
}
.delay-500 {
  transition-delay: 500ms;
}
.delay-500 {
  transition-delay: 600ms;
}
@media (max-width: 768px) {
  .delay-100,
  .delay-200,
  .delay-300,
  .delay-400,
  .delay-500,
  .delay-600 {
    transition-delay: 0ms;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--color-bg-light);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-orange);
  margin: 7px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: -40px auto 20px auto;
  color: var(--color-text-body);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #d9531a;
}

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

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.section-hero {
  position: relative;
  min-height: 80vh;
  background:
    linear-gradient(
      to right,
      rgba(28, 41, 69, 0.9) 0%,
      rgba(28, 41, 69, 0.6) 100%
    ),
    url("../img/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 0 100px 0;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(241, 245, 249, 0) 0%,
    rgba(241, 245, 249, 1) 100%
  );
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.logo {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-right: 12px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.logo-orange {
  color: var(--color-orange);
}

.hero-content {
  max-width: 800px;
}

.hero-headline {
  color: var(--color-white);
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.hero-contact-box {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  border-radius: 8px;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  width: 50%;
}

.contact-icon {
  background-color: var(--color-orange);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-number {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-offer {
  background-color: var(--color-bg-light);
}

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

.offer-card {
  background-color: var(--color-white);
  padding: 40px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--color-orange);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(28, 41, 69, 0.15);
}

.offer-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.offer-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-navy);
}

.offer-desc {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: var(--color-orange);
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.step-icon-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 25px;
  background-color: var(--color-bg-light);
  padding: 0 20px;
}

.step-icon {
  width: 90px;
  height: 90px;
  background-color: var(--color-navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(28, 41, 69, 0.08);
}

.step-number {
  position: absolute;
  top: -5px;
  right: 15px;
  width: 28px;
  height: 28px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid var(--color-bg-light);
}

.step-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  line-height: 1.6;
}

.section-stats {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 60px 0;
  border-top: 5px solid var(--color-orange);
  border-bottom: 5px solid var(--color-orange);
  box-shadow: 0 20px 30px rgba(28, 41, 69, 0.1);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.text-orange {
  color: var(--color-orange);
}

.stat-number sup {
  font-size: 32px;
  top: -0.5em;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.container-portfolio-wide {
  max-width: calc(var(--container-max-width) + 100px);
}

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

.portfolio-item {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.portfolio-thumb {
  height: 100%;
  width: 100%;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.portfolio-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(18, 26, 47, 0.95) 0%,
    rgba(18, 26, 47, 0.5) 50%,
    rgba(18, 26, 47, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.portfolio-cat {
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.portfolio-title {
  color: var(--color-white);
  font-size: 22px;
  margin: 0;
  line-height: 1.3;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-cat,
.portfolio-item:hover .portfolio-title {
  transform: translateY(0);
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 60px;
  height: 60px;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-arrow {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Lightbox Styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 26, 47, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: var(--color-white);
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--color-orange);
}

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

.why-us-card {
  background-color: var(--color-white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.border-orange-left {
  border-left: 4px solid var(--color-orange);
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-orange);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-us-title {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--color-navy);
}

.why-us-desc {
  font-size: 13px;
  color: var(--color-text-body);
}

.section-testimonials {
  padding-top: 0;
}

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

.testimonial-card {
  background-color: var(--color-white);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--color-navy-dark);
  border-right: 4px solid var(--color-navy-dark);
}
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text-body);
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-stars {
  text-align: center;
  color: var(--color-orange);
  font-size: 3rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.3rem;
}

.section-contact {
  background-color: var(--color-navy-dark);
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px
  );
  background-size: 24px 24px;
  padding: 80px 0 30px 0;
  color: var(--color-white);
}

.text-white {
  color: var(--color-white) !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.contact-header .section-title {
  margin-bottom: 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.logo-footer {
  margin-bottom: 20px;
  font-size: 32px;
}

.company-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 14px;
  max-width: 80%;
  text-align: center;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-details {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.info-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-main {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.info-highlight {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin: 2px 0;
}

.info-link {
  font-size: 14px;
  color: var(--color-orange);
}

.info-link:hover {
  color: var(--color-white);
}

.contact-form-box {
  background-color: var(--color-white);
  padding: 50px 40px;
  border-radius: 12px;
  color: var(--color-navy);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 15px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background-color: #e2e8f0;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-navy);
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #64748b;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-orange);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(242, 97, 34, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 25px 0;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-orange);
}

.form-checkbox label {
  font-size: 11px;
  color: #64748b;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.creator {
  font-size: 12px;
}

.creator a {
  color: var(--color-orange);
  font-weight: 600;
  transition: color 0.3s ease;
}

.creator a:hover {
  color: var(--color-white);
}
.footer-links a {
  margin-left: 25px;
  transition: color 0.3s;
}

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

@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .steps-wrapper::before {
    display: none;
  }
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .step {
    max-width: 350px;
  }
  .step-icon-wrapper {
    padding: 0;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item {
    height: 350px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-info {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-hero {
    padding: 10px 0 30px 0;
    text-align: center;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
  }

  .logo {
    margin-bottom: 0;
    justify-content: center;
    padding-top: 10px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .hero-headline {
    margin-top: auto;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 15px;
    margin-bottom: 15px;
  }

  .btn-hero {
    width: 100%;
    padding: 2px 12px;
  }

  .hero-contact-box {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .section-stats {
    padding: 50px 0;
  }
  .stats-grid {
    flex-direction: column;
    gap: 50px;
  }
  .testimonial-stars {
    white-space: nowrap;
    font-size: clamp(1.5rem, 10vw, 3rem);
  }
  .stat-number {
    font-size: 48px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .section-hero {
    background-position:
      center,
      calc(50% - 80px) center;
  }
  .hero-headline {
    font-size: clamp(24px, 6vw, 32px);
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card {
    padding: 25px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
    text-align: left;
  }
  .offer-icon {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
  }
  .offer-title {
    margin-bottom: 0;
  }
  .offer-desc {
    grid-column: 1 / 3;
    margin-top: 5px;
  }

  .step {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    row-gap: 5px;
    text-align: left;
  }
  .step-icon-wrapper {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }
  .step-icon {
    width: 65px;
    height: 65px;
  }
  .step-icon svg {
    width: 26px;
    height: 26px;
  }
  .step-number {
    top: 0;
    right: 5px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .step-title {
    margin-bottom: 0;
    align-self: end;
  }
  .step-desc {
    align-self: start;
  }

  .why-us-card {
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    row-gap: 5px;
    text-align: left;
  }
  .why-us-icon {
    grid-row: 1 / 3;
    margin-bottom: 0;
    width: 45px;
    height: 45px;
  }
  .why-us-title {
    margin-bottom: 0;
    align-self: end;
  }
  .why-us-desc {
    align-self: start;
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-info {
    width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .portfolio-item {
    height: 300px;
  }
  .portfolio-title {
    font-size: 20px;
  }
  .contact-form-box {
    padding: 30px 20px;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-links a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
