/* -------------------------------
            Sec - 1
------------------------------- */

.sec-1-hero {
  position: relative;
  height: 100vh;
  min-height: 850px;
  overflow: hidden;
}

/* ==========================
   SLIDER
========================== */

.sec-1-slider,
.sec-1-slider .swiper-wrapper,
.sec-1-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.sec-1-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition: transform 7s linear;
}

.sec-1-slider .swiper-slide-active img {
  transform: scale(1.08);
}

/* ==========================
   OVERLAY
========================== */

.sec-1-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );

  z-index: 2;
}

/* ==========================
   CONTENT
========================== */

.sec-1-container {
  position: absolute;
  inset: 0;
  z-index: 3;

  max-width: 1400px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 0 24px;
}

.sec-1-content {
  /* max-width: 700px; */
}

.sec-1-title {
  color: var(--white);

  font-size: clamp(2.8rem, 4.8vw, 4.6rem);

  line-height: 1.05;

  margin-bottom: 30px;

  font-family: var(--secondary-font);

  font-weight: 700;
}

.sec-1-title span {
  color: var(--primary);
}

.sec-1-description {
  color: rgba(255, 255, 255, 0.85);

  font-size: 18px;

  line-height: 1.8;

  max-width: 650px;

  margin-bottom: 40px;
}

/* ==========================
   BUTTONS
========================== */

.sec-1-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sec-1-btn {
  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  padding: 18px 35px;

  border-radius: 8px;

  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 12px;

  transition: 0.3s;
}

.sec-1-btn:hover {
  background: var(--primary-dark);
}

.sec-1-btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.6s ease;
}

.sec-1-btn:hover svg {
  transform: translateX(4px);
}

.sec-1-video-btn {
  display: flex;
  align-items: center;
  gap: 18px;

  color: white;

  text-decoration: none;
}

.sec-1-play-icon {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  border: 2px solid rgba(255, 255, 255, 0.8);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* ==========================
   SOCIAL
========================== */

.sec-1-social {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sec-1-social a {
  transition: 0.3s;
}

.sec-1-social a svg {
  fill: var(--white);
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.sec-1-social a:hover svg {
  fill: var(--primary);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .sec-1-container {
    justify-content: center;
  }

  .sec-1-social {
    display: none;
  }

  .sec-1-actions {
    align-items: start;
  }
}

@media (max-width: 768px) {
  .sec-1-hero {
    min-height: 700px;
  }

  .sec-1-title {
    font-size: 3rem;
  }

  .sec-1-description {
    font-size: 14px;
  }

  .sec-1-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .sec-1-title {
    font-size: 2rem;
  }

  .sec-1-play-icon {
    width: 60px;
    height: 60px;
  }

  .sec-1-btn {
    padding: 12px 32px;
  }

  .sec-1-video-btn {
    display: none;
  }
}







/* -------------------------------
            Sec - 2
------------------------------- */

.sec-2-booking {
  position: relative;
  z-index: 10;

  margin-top: -60px;
}

.sec-2-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec-2-form {
  background: var(--white);

  border-radius: 24px;

  padding: 28px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr)
    auto;

  gap: 20px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================
   FIELDS
========================== */

.sec-2-field {
  position: relative;
}

.sec-2-field input,
.sec-2-field select {
  width: 100%;
  height: 70px;

  border: none;
  outline: none;

  background: #f5f5f5;

  border-radius: 14px;

  padding: 0 22px;

  color: var(--text);

  font-size: 16px;
}

.sec-2-field input::placeholder {
  color: #7b7b7b;
}

.sec-2-field select {
  appearance: none;
  cursor: pointer;
}

/* Custom Select Arrow */

.sec-2-field::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 20px;

  width: 10px;
  height: 10px;

  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;

  transform: translateY(-70%) rotate(45deg);

  pointer-events: none;
}

.sec-2-field:has(input)::after {
  display: none;
}

/* ==========================
   BUTTON
========================== */

.sec-2-btn {
  border: none;
  cursor: pointer;

  min-width: 170px;
  height: 70px;

  border-radius: 14px;

  background: var(--primary);

  color: var(--white);

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s;
}

.sec-2-btn:hover {
  background: var(--primary-dark);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1199px) {
  .sec-2-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec-2-btn {
    width: 100%;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .sec-2-booking {
    margin-top: -70px;
  }

  .sec-2-container {
    padding: 0 20px;
  }

  .sec-2-form {
    grid-template-columns: 1fr;

    padding: 28px;

    border-radius: 24px;

    gap: 18px;
  }

  .sec-2-field input,
  .sec-2-field select {
    height: 56px;
    font-size: 15px;
  }

  .sec-2-btn {
    width: 100%;
    height: 62px;
    font-size: 20px;
  }
}





/* -------------------------------
            Sec - 3
------------------------------- */

.sec-3-about {
  padding: 100px 0;
  background: var(--white);
}

/* ==========================
   LOGO CAROUSEL
========================== */

.sec-3-brand-area {
  margin-bottom: 90px;
}

.sec-3-brand-slider {
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;
}

.sec-3-brand-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-3-brand-slider img {
  max-width: 180px;
  width: 100%;

  opacity: 0.5;

  transition: 0.3s;
}

.sec-3-brand-slider img:hover {
  opacity: 1;
}

.sec-3-brand-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ==========================
   MAIN LAYOUT
========================== */

.sec-3-container {
  max-width: 1400px;
  margin: auto;

  padding: 0 24px;

  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;

  align-items: center;
}

/* ==========================
   IMAGES
========================== */

.sec-3-images {
  position: relative;
}

.sec-3-img-large {
  border-radius: 18px;
  overflow: hidden;
}

.sec-3-img-large img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.sec-3-img-row {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.sec-3-img-small {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

.sec-3-img-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.sec-3-img-overlap {
  margin-top: -110px;
}

.sec-3-img-overlap img {
  height: 311px;
  object-position: top;
}

/* ==========================
   CONTENT
========================== */

.sec-3-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 20px;
  font-weight: 600;

  margin-bottom: 20px;
}

.sec-3-title {
  font-family: var(--secondary-font);

  font-size: clamp(2.5rem, 4vw, 4rem);

  line-height: 1.1;

  color: var(--black);

  margin-bottom: 30px;
}

.sec-3-description {
  color: #666;

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 35px;
}

/* ==========================
   FEATURES
========================== */

.sec-3-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;

  margin-bottom: 40px;
}

.sec-3-feature {
  color: var(--text);

  font-size: 17px;
  font-weight: 500;
}

.sec-3-feature::before {
  content: "✓";

  color: var(--primary);

  font-weight: bold;

  margin-right: 12px;
}

/* ==========================
   BUTTON
========================== */

.sec-3-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  height: 60px;
  padding: 0 32px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s;
}

.sec-3-btn:hover {
  background: var(--primary-dark);
}

.sec-3-btn svg {
  height: 16px;
  width: 16px;
  transition: all 0.6s ease;
}

.sec-3-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {
  .sec-3-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sec-3-images {
    max-width: 700px;
    margin: auto;
  }

  .sec-3-content {
    text-align: center;
  }

  .sec-3-features {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .sec-3-about {
    padding: 70px 0;
  }

  .sec-3-brand-area {
    margin-bottom: 60px;
  }

  .sec-3-img-overlap {
    margin-top: 0;
  }

  .sec-3-img-row {
    flex-direction: column;
    display: none;
  }

  .sec-3-title {
    font-size: 2.4rem;
  }

  .sec-3-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .sec-3-title {
    font-size: 2rem;
  }

  .sec-3-description {
    font-size: 15px;
  }

  .sec-3-btn {
    /* width: 100%; */
    justify-content: center;
  }
}




/* -------------------------------
            Sec - 4
------------------------------- */

.sec-4-counter {
  padding: 90px 0;
  background-color: #f5f5f5;
}

.sec-4-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.sec-4-item {
  text-align: center;
}

.sec-4-icon {
  margin-bottom: 8px;
}

.sec-4-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.5;
  color: var(--primary);
}

.sec-4-number {
  font-family: var(--secondary-font);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}

.sec-4-number small {
  color: var(--primary);
  font-size: 1.5rem;
}

.sec-4-label {
  color: #666;
  font-size: 14px;
}

@media (max-width: 991px) {
  .sec-4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (max-width: 576px) {
  .sec-4-grid {
    grid-template-columns: 1fr;
  }

  .sec-4-number {
    font-size: 3rem;
  }

  .sec-4-number small {
    font-size: 1.5rem;
  }
}




/* -------------------------------
            Sec - 5
------------------------------- */

.sec-5-services {
  padding: 120px 0;
}

.sec-5-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================
   HEADING
========================== */

.sec-5-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.sec-5-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 20px;
  font-weight: 600;

  margin-bottom: 18px;
}

.sec-5-title {
  font-family: var(--secondary-font);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 900;
}

.sec-5-description {
  max-width: 700px;
  margin: 0 auto;

  color: #6b7280;

  font-size: 17px;
  line-height: 1.8;
}

/* ==========================
   GRID
========================== */

.sec-5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ==========================
   CARD
========================== */

.sec-5-card {
  position: relative;
  margin-bottom: 50px;
  height: 520px;
}

.sec-5-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 18px;
  transition: transform 0.8s ease;
}

/* ==========================
   DARK OVERLAY
========================== */

.sec-5-overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

/* ==========================
   GLASS CONTENT
========================== */

.sec-5-content {
  position: absolute;

  top: -50px;
  left: 22px;
  right: 22px;
  padding: 36px;
  border-radius: 16px;
  background: rgb(0 0 0 / 40%);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 2;
}

.sec-5-card-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: 2rem;

  margin-bottom: 18px;
}

.sec-5-card-text {
  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  line-height: 1.9;

  margin-bottom: 24px;
}

.sec-5-link {
  color: var(--primary);

  text-decoration: none;

  font-size: 20px;
  font-weight: 700;

  transition: 0.3s;
}

.sec-5-link:hover {
  color: var(--primary-light);
}

/* ==========================
   FOOTER LINK
========================== */

.sec-5-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: 14px;
}

.sec-5-footer span {
  color: #555;
}

.sec-5-footer a {
  color: var(--primary);

  text-decoration: none;

  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sec-5-footer a svg {
  width: 16px;
  height: 16px;
  transition: all 0.6s ease;
}

.sec-5-footer a:hover {
  color: var(--primary-dark);
}

.sec-5-footer a:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .sec-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sec-5-services {
    padding: 80px 0;
  }

  .sec-5-grid {
    grid-template-columns: 1fr;
  }

  .sec-5-card {
    height: 480px;
  }

  .sec-5-content {
    padding: 28px;
  }

  .sec-5-card-title {
    font-size: 1.7rem;
  }

  .sec-5-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .sec-5-title {
    font-size: 2.2rem;
  }

  .sec-5-description {
    font-size: 15px;
  }

  .sec-5-card {
    height: 420px;
  }

  .sec-5-content {
    /* top: 16px; */
    left: 16px;
    right: 16px;

    padding: 22px;
  }

  .sec-5-card-text {
    font-size: 15px;
  }
}




/* -------------------------------
            Sec - 6
------------------------------- */

.sec-6-testimonials {
  position: relative;
  overflow: hidden;
}

/* Background Shape */

.sec-6-bg-shape {
  position: absolute;

  left: 0;

  top: 0;
  width: 45%;
  bottom: 0;
  height: 100%;

  background: rgba(0, 0, 0, 0.03);

  border-radius: 0 20px 20px 0;
}

.sec-6-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ==========================
   LEFT SLIDER
========================== */

.sec-6-slider-area {
  overflow: hidden;
}

.sec-6-slider {
  width: 100%;
}

.sec-6-slider .swiper-slide {
  height: auto;
}

.sec-6-card {
  background: #ff6a25;

  border-radius: 18px;

  min-height: 420px;
  height: 100%;
  padding: 45px 35px;

  text-align: center;

  color: var(--white);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sec-6-avatar {
  width: 72px;
  height: 72px;

  border-radius: 50%;

  object-fit: cover;

  margin: 0 auto 20px;
}

.sec-6-stars {
  color: #ffe600;

  font-size: 18px;

  letter-spacing: 4px;

  margin-bottom: 20px;
}

.sec-6-name {
  font-family: var(--secondary-font);

  font-size: 2rem;

  margin-bottom: 8px;
}

.sec-6-role {
  display: block;

  margin-bottom: 30px;

  opacity: 0.9;
}

.sec-6-card p {
  line-height: 1.9;
}

/* ==========================
   RIGHT CARD
========================== */

.sec-6-info-card {
  width: 450px;
  height: 500px;

  border-radius: 20px;

  overflow: hidden;

  flex-shrink: 0;

  position: relative;

  background: url("../images/sec-1-img-1.avif") center center / cover;
}

.sec-6-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
  backdrop-filter: blur(4px);
}

.sec-6-content {
  position: relative;
  z-index: 2;

  height: 100%;

  padding: 60px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  text-align: end;
  color: var(--white);
}

.sec-6-subtitle {
  color: var(--primary);

  font-size: 22px;
  font-weight: 600;

  margin-bottom: 15px;
}

.sec-6-title {
  font-family: var(--secondary-font);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sec-6-content p {
  line-height: 1.6;
  margin-bottom: 35px;
  font-size: 14px;
}

.sec-6-btn {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  gap: 6px;
  color: var(--white);

  text-decoration: none;

  padding: 16px 30px;

  border-radius: 10px;

  font-weight: 600;
}

.sec-6-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.6s ease;
}

.sec-6-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .sec-6-container {
    flex-direction: column-reverse;
  }

  .sec-6-slider-area,
  .sec-6-info-card {
    width: 100%;
    max-width: 700px;
  }

  .sec-6-bg-shape {
    display: none;
  }
  .sec-6-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sec-6-testimonials {
  }

  .sec-6-card {
    min-height: auto;
    padding: 35px 25px;
  }

  .sec-6-title {
    font-size: 2.7rem;
  }

  .sec-6-content {
    padding: 40px 30px;
  }

  .sec-6-info-card {
    height: 420px;
  }
}




/* -------------------------------
            Sec - 7
------------------------------- */

.sec-7-choose {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Background Block */

.sec-7-choose::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  top: 120px;
  bottom: 120px;

  background: rgba(0, 0, 0, 0.03);

  z-index: 1;
}

.sec-7-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ==========================
   CONTENT
========================== */

.sec-7-content {
  max-width: 670px;
}

.sec-7-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sec-7-title {
  font-family: var(--secondary-font);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 30px;
}

.sec-7-description {
  color: #5f6b7a;

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 40px;
}

/* ==========================
   BUTTON
========================== */

.sec-7-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  height: 62px;

  padding: 0 30px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s ease;
}

.sec-7-btn:hover {
  background: var(--primary-dark);
}

.sec-7-btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.6s ease;
}

.sec-7-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   IMAGE
========================== */

.sec-7-image-wrapper {
  /* position: absolute;
  right: -110px;
  top: 0px; */
}

.sec-7-image {
  width: 100%;
  height: 560px;

  object-fit: cover;

  border-radius: 18px;

  display: block;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .sec-7-container {
    grid-template-columns: 1fr;
    gap: 60px;

    display: flex;
    flex-direction: column-reverse;
  }

  .sec-7-content {
    max-width: 800px;
  }

  .sec-7-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sec-7-choose {
    padding: 80px 0;
  }

  .sec-7-choose::before {
    background: transparent;
  }

  .sec-7-title {
    font-size: 2.8rem;
  }

  .sec-7-description {
    font-size: 16px;
  }

  .sec-7-image {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .sec-7-container {
    padding: 0 20px;
  }

  .sec-7-title {
    font-size: 2.2rem;
  }

  .sec-7-image {
    height: 320px;
  }

  .sec-7-btn {
    /* width: 100%; */
    justify-content: center;
  }
}




/* -------------------------------
            Sec - 8
------------------------------- */

.sec-8-cta {
  position: relative;

  padding: 140px 0;

  margin: 40px 0;

  border-radius: 24px;

  overflow: hidden;

  max-width: 1400px;

  margin-left: auto;
  margin-right: auto;

  /* PARALLAX */

  background-image: url("../images/sec-8-img-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Overlay */

.sec-8-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));

  z-index: 1;
}

.sec-8-container {
  position: relative;
  z-index: 2;

  max-width: 1000px;

  margin: 0 auto;

  padding: 0 30px;

  text-align: center;
}

/* ==========================
   CONTENT
========================== */

.sec-8-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: clamp(2.5rem, 3vw, 3rem);

  line-height: 1.15;

  margin-bottom: 28px;
}

.sec-8-description {
  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;

  line-height: 1.9;

  max-width: 750px;

  margin: 0 auto 40px;
}

/* ==========================
   BUTTON
========================== */

.sec-8-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 62px;

  padding: 0 32px;

  border-radius: 10px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.sec-8-btn:hover {
  background: var(--primary-dark);
}

.sec-8-btn svg {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}

.sec-8-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .sec-8-cta {
    margin: 30px 24px;
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .sec-8-title {
    font-size: 2.4rem;
  }

  .sec-8-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .sec-8-cta {
    margin: 20px 20px;

    padding: 80px 0;

    border-radius: 18px;
  }

  .sec-8-title {
    font-size: 2rem;
  }

  .sec-8-btn {
    /* width: 100%; */
    justify-content: center;
  }
}




/* -------------------------------
            Sec - 9
------------------------------- */

.sec-9-blog {
  padding: 90px 0;
}

.sec-9-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================
   HEADER
========================== */

.sec-9-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  margin-bottom: 70px;
}

.sec-9-heading {
  max-width: 750px;
}

.sec-9-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 22px;
  font-weight: 600;

  margin-bottom: 20px;
}

.sec-9-title {
  font-family: var(--secondary-font);

  font-size: clamp(2rem, 3vw, 3rem);

  line-height: 1.1;

  color: var(--black);

  margin-bottom: 25px;
}

.sec-9-description {
  color: #5f6b7a;

  font-size: 18px;

  line-height: 1.8;

  max-width: 650px;
}

/* ==========================
   BUTTON
========================== */

.sec-9-btn {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 62px;

  padding: 0 32px;

  border-radius: 10px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.sec-9-btn:hover {
  background: var(--primary-dark);
}

.sec-9-btn svg {
  width: 16px;
  height: 16px;
  transition: 0.3s ease-in;
}

.sec-9-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   BLOG GRID
========================== */

.sec-9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

/* ==========================
   BLOG CARD
========================== */

.sec-9-card {
  display: flex;
  flex-direction: column;
}

.sec-9-image-wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 16px;

  margin-bottom: 26px;
}

.sec-9-image {
  width: 100%;
  height: 260px;

  object-fit: cover;

  display: block;

  transition: transform 0.6s ease;
}

.sec-9-card:hover .sec-9-image {
  transform: scale(1.08);
}

/* Category */

.sec-9-category {
  position: absolute;

  left: 18px;
  bottom: 0;

  background: var(--white);

  color: var(--primary);

  font-size: 15px;
  font-weight: 600;

  padding: 12px 22px;

  border-radius: 12px 12px 0 0;
}

/* ==========================
   CONTENT
========================== */

.sec-9-card-title {
  font-family: var(--secondary-font);

  font-size: 1.5rem;

  line-height: 1.3;

  color: var(--black);

  margin-bottom: 18px;

  transition: 0.3s;
}

.sec-9-card:hover .sec-9-card-title {
  color: var(--primary);
}

.sec-9-date {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #b2a9a9;

  font-size: 14px;

  margin-bottom: 20px;
}

.sec-9-date svg {
  width: 16px;
  height: 16px;
}

.sec-9-text {
  color: #5f6b7a;

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 26px;
}

.sec-9-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--primary);

  text-decoration: none;

  font-weight: 600;

  font-size: 16px;
}

.sec-9-read-more svg {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}

.sec-9-read-more:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .sec-9-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec-9-card:last-child {
    grid-column: span 2;
    max-width: 600px;
    margin: auto;
  }
}

@media (max-width: 991px) {
  .sec-9-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec-9-btn {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .sec-9-blog {
    padding: 60px 0;
  }

  .sec-9-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sec-9-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .sec-9-title {
    font-size: 2.6rem;
  }

  .sec-9-card-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .sec-9-container {
    padding: 0 20px;
  }

  .sec-9-title {
    font-size: 2.2rem;
  }

  .sec-9-description,
  .sec-9-text {
    font-size: 15px;
  }

  .sec-9-image {
    height: 230px;
  }

  .sec-9-btn {
    /* width: 100%; */
    justify-content: center;
  }
}
