@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&family=Kapakana:wght@300..400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #6495ed;
  --white: #ffffff;
  --black: #000000;
  --gray: #1c1c1c;
  --primary: #c58f14;
  --primary-gold: #ffb800;
  --secondary-gold: #c58f14;
  --success-green: #00e61b;
  --danger-red: #ff0f0f;
  --text-gray: #535862;
  --gradient-end: #67562f;
  --light-gold: #ffe1a7;
  --primary-gradient: linear-gradient(270deg, #c38d17 0%, #3a3a3a 100%);
  --button-gradient: linear-gradient(90deg, #c38d17 0%, #67562f 100%);
  --secondary-gradient: linear-gradient(270deg, #c38d17 0%, #000 100%);
  --gold-color: #c38d17;
  --dark-color: #3a3a3a;
  --accent-color: #ffbf33;
  --text-primary: #ffffff;
  --text-secondary: #f8f9fa;
  --bg-primary: #424242;
  --text-third: #a4a7ae;
  --border-color: #ffffff;
  --button-bg: #ffffff;
  --button-text: #000000;
  --focus-color: #ffffff;
  --focus-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: #f5f5f5;
}
h1 {
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 72px; /* 102.857% */
}
h2 {
  color: --black;
  font-family: "Bebas Neue", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px; /* 111.111% */
}

h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1.14;
  margin-bottom: 1.5rem;
}

p.section-paragraph {
  color: var(--white);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 133.333% */
}

p.section-subheading {
  font-size: 18px;
  color: #535862;
  line-height: 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.background-gradient {
  background: var(--primary-gradient);
}

.background-gradient-secondary {
  background: var(--secondary-gradient);
}

.button {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  background-color: #000000;
  padding: 18px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  border: none;
}

.button:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.button.btn-primary:hover {
  background-color: #ffb800;
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #c58f14;
}

.padding-100 {
  padding: 100px 0;
}

form option {
  color: #fff;
  background-color: #000000;
  border: none;
}

.form-select {
  transform: translateY(0px);
  background-color: transparent;
  color: white;
}

.select-dropdown {
  border: none !important;
}

/* Hero Section Styles ======================================================== */
.hero-section {
  /* background: linear-gradient(90deg, #a87a12 0%, #000000 100%); */
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #a87a12 0%, #000000 100%);
  opacity: 1; /* Optional fade effect */
}

.hero-img {
    position: relative;
    overflow: hidden;
    /* width: 100%; */
    /* height: 683px; */
    display: flex;
    justify-content: end;
    padding-top: 60px;
}

/* .hero-img::after {
  content: "";
  background: url("../images/hero-person.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -22px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1; /* Optional fade effect */
} */

.hero-subpara {
  color: #535862;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 140% */
}

.section-paragraph-gray {
  color: #535862 !important;
}

.hero-btns .btn {
  font-weight: 600;
  border-radius: 6px;
}

/* Service Section Styles ======================================================== */

.service-card {
  background-color: #c58f14;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid #a4a7ae;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 97%;
  height: 318px;
  object-fit: cover;
  border-radius: 8px;
  margin: 9px;
}

.service-content {
  padding: 0 20px 15px;
}

.service-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
  color: white;
  margin-top: 10px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: white;
  gap: 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #f1f1f1;
}

.learn-more i {
  font-size: 18px;
}

/* Need more Eyes section styles ======================================================== */

.need-more-eyes {
  background: black;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

.top-border {
  border-top: 2px solid var(--secondary-gold);
}

.comparison-title {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.33;
  margin-bottom: 1.25rem;
  margin-top: 2.375rem;
}

.comparison-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.intro-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 3.375rem;
  margin-top: 2.875rem;
}

.primary-gold {
  color: var(--primary-gold);
}

.comparison-icon {
  width: 26px;
  height: 26px;
  margin-right: 0.375rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}

.comparison-item:last-child {
  margin-bottom: 0;
}

.text-danger-custom {
  color: var(--danger-red);
}

.text-success-custom {
  color: var(--success-green);
}

.comparison-container {
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Success Slider Section Styles ======================================================== */

.success-slider {
  margin: 0;
  background: linear-gradient(180deg, #a87a12 0%, #483508 100%);
  color: white;
  overflow-x: hidden;
}

.swiper {
  position: relative;
  padding-bottom: 100px;
}

.swiper-wrapper {
  align-items: center;
  transition-timing-function: ease-in-out;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
  height: 600px;
}

.slide-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.6s ease;
}

.slide-card img {
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.slide-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Active Slide Styles */
.swiper-slide-active .slide-card {
  width: 582px;
  background: transparent;
}

.swiper-slide-active .slide-card img {
  width: 582px;
  height: 430px;
  border-radius: 16px 16px 0 0 !important;
}

.swiper-slide-active .slide-content {
  display: block;
  opacity: 1;
  padding: 20px;
  text-align: center;
  border: 1px solid #fff;
  border-top: none;
  border-radius: 0px 0px 16px 16px;
}

.swiper-slide-active .slide-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
  margin: 10px 0 5px;
}

.swiper-slide-active .slide-content h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.swiper-slide-active .slide-content p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
}

/* Side slides */
.swiper-slide:not(.swiper-slide-active) .slide-card {
  width: 280px;
}

.swiper-slide:not(.swiper-slide-active) .slide-card img {
  width: 280px;
  height: 324px;
}

.swiper-slide:not(.swiper-slide-active) .slide-content {
  display: none;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  color: black;
  top: auto;
  bottom: 20%;
  z-index: 10;
}

.swiper-button-prev {
  left: 60px;
  transform: translateY(100%);
}

.swiper-button-next {
  right: 60px;
  transform: translateY(100%);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
  color: black;
  content: "";
}

@media screen and (max-width: 1024px) {
  .swiper-slide-active .slide-card {
    width: 100%;
  }

  .swiper-slide-active .slide-card img {
    width: 100%;
    height: auto;
  }

  .swiper-slide:not(.swiper-slide-active) .slide-card {
    width: 80%;
  }

  .swiper-slide:not(.swiper-slide-active) .slide-card img {
    width: 100%;
    height: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: -20px;
  }
}

/* Projects Section Styles ======================================================== */

.project-row:nth-of-type(odd) .image-col {
  order: 2;
}

.project-row:nth-of-type(odd) .content-col {
  order: 1;
}

.projects-section {
  background: linear-gradient(90deg, black 0%, var(--primary-gold) 100%);
  min-height: 100vh;
  padding: 90px 0;
}

.project-image {
  width: 100%;
  max-width: 787px;
  height: 464px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.project-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--danger-red);
  padding: 2rem;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(217, 30, 24, 0.2);
}

.project-card-title {
  font-family: "Bebas Neue", cursive;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.14;
  color: black;
  text-align: center;
  margin-bottom: 1.5rem;
}

.project-card-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.project-card-btn {
  background: var(--secondary-gold);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.75rem 2.875rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  align-self: center;
}

.project-card-btn:hover {
  background: #a67a11;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 143, 20, 0.3);
  color: white;
}

.project-card-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(197, 143, 20, 0.2);
}

.project-row {
  margin-bottom: 5rem;
}

.project-row:last-child {
  margin-bottom: 0;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Improve positioning for cards */
.project-card-positioned {
  transform: translateX(-30px);
}

.project-card-positioned-reverse {
  transform: translateX(30px);
}

@media (max-width: 1200px) {
  .project-image {
    height: 350px;
  }

  .project-card {
    height: auto;
    min-height: 320px;
  }

  .project-card-positioned,
  .project-card-positioned-reverse {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .project-row .col-lg-7,
  .project-row .col-lg-5,
  .project-row .col-lg-5.order-2.order-lg-1,
  .project-row .col-lg-7.order-1.order-lg-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 992px) {
  .projects-section {
    padding: 60px 0;
  }

  .project-row {
    margin-bottom: 3rem;
  }

  .project-image {
    height: 300px;
    margin-bottom: 2rem;
  }

  .project-card {
    margin-bottom: 2rem;
  }

  .project-card-positioned,
  .project-card-positioned-reverse {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .project-image {
    height: 250px;
  }

  .project-card-title {
    font-size: 1.875rem;
  }

  .project-card-text {
    font-size: 0.875rem;
  }

  .project-card-btn {
    padding: 0.625rem 2rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .project-card {
    padding: 1.5rem;
  }

  .project-card-title {
    font-size: 1.625rem;
  }
}

/* Contact Section Styles ======================================================== */

.contact-section {
  background-color: #000000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 38px;
  max-width: 458px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.form-label {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.form-input,
.form-textarea {
  height: 46px;
  padding: 12px 18px;
  border: 1px solid white;
  border-radius: 7px;
  background: transparent;
  color: white;
  font-size: 16px;
  font-family: "Uni Neue-Trial", sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #c58f14;
  box-shadow: 0 0 0 2px rgba(197, 143, 20, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a4a7ae;
  opacity: 1;
}

.form-textarea {
  height: 186px;
  resize: vertical;
  min-height: 120px;
}

.form-select {
  position: relative;
}

.select-dropdown {
  height: 46px;
  padding: 12px 18px;
  border: 1px solid white;
  border-radius: 7px;
  background: transparent;
  color: white;
  font-size: 16px;
  font-family: "Uni Neue-Trial", sans-serif;
  width: 100%;
  cursor: pointer;
  outline: none;
  appearance: none;
  transition: all 0.3s ease;
}

.select-dropdown:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(197, 143, 20, 0.2);
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #a4a7ae;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.select-dropdown:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.submit-button {
  padding: 18px 60px;
  background: #c58f14;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-family: "Uni Neue-Trial", sans-serif;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  background: #d69a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 143, 20, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-button:hover::before {
  left: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 40px;
}

.info-item {
  color: #a4a7ae;
  font-size: 16px;
  line-height: 24px;
}

.info-item strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    gap: 60px;
  }

  .contact-title {
    font-size: 60px;
    line-height: 64px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-title {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 30px;
  }

  .contact-form {
    max-width: 100%;
  }

  .submit-button {
    align-self: center;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-title {
    font-size: 36px;
    line-height: 40px;
  }

  .form-input,
  .form-textarea,
  .select-dropdown {
    font-size: 16px;
  }

  .submit-button {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* Loading animation for form submission */
.submit-button.loading {
  color: transparent;
  pointer-events: none;
}

.submit-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hero Newsletter Section Styles ======================================================== */

.hero-news-image {
  width: 356px;
  height: auto;
  margin: 0 auto;
}

.co-person {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  color: white;
  padding: 30px 0;
}

.co-person-title {
  margin: 0;
  line-height: 3rem;
  padding-left: 24px;
  font-weight: 500;
}

.subscribe-btn {
  padding: 12px 50px;
  background-color: #c58f14;
  margin-top: 30px;
}

.newsletter-content p {
  color: #535862;
}
