/* header-container */
.container {
  max-width:92%;
  margin: 0 auto;
  padding: 0 32px;
}

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

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
}

/* HERO */
.hero {
  background: radial-gradient(ellipse at 78% 45%, rgba(198, 162, 90, .16), transparent 60%), #FAF9F6;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 30px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #C6A25A;
  background: rgba(198, 162, 90, .1);
  border: 1px solid rgba(198, 162, 90, .35);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 26px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.12;
  color: #0B2341;
  margin-bottom: 26px;
}

.hero h1 .accent {
  color: #C6A25A;
}

.hero p {
  font-size: 17px;
  color: #000;
  max-width: 520px;
  margin-bottom: 36px;
}

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

@media (max-width: 768px) {
  .hero {
    padding-top: 50px;
  }

  .hero-grid {
    grid-template-columns: auto;
    padding-bottom: 0px;
  }
}

@media (max-width: 414px) {
  .hero {
    padding-top: 40px;
  }
}

/* FEATURE STRIP */
.feature-strip {
  background: #f8f4f1;
  border-radius: 12px;
  border: 1px solid #E6E8EB;
}

.feature-strip .container {
  padding: 30px 20px;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  position: relative;
}

.feature-item+.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: #E6E8EB;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #C6A25A;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size:18px;
  color: #0B2341;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .feature-strip .container {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item+.feature-item::before {
    display: none;
  }
}

@media (max-width: 567px) {
  .feature-strip .container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
  }

  .feature-text {
    text-align: center;
  }

  .feature-strip .container {
    padding: 25px 0px;
  }
}



/* TESTIMONIALS */
.testimonials {
  background: #F5F0E8;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  color: #0B2341;
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-head h2 .accent {
  color: #C6A25A;
}

.eyebrow {
  color: #C6A25A;
}

.section-head p {
  color: #6B7280;
  font-size: 16px;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #0B2341;
}

.stars {
  display: flex;
  gap: 3px;
  color: #C6A25A;
}

.stars svg {
  width: 19px;
  height: 19px;
}

.rating-row .divider-dot {
  color: #6B7280;
}

.rating-row strong {
  font-weight: 700;
}

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

.review-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -18px rgba(11, 35, 65, .18);
}

.review-card.featured {
  border-color: #C6A25A;
}

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C6A25A;
  color: #0B2341;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #C6A25A;
  line-height: 1;
  margin-bottom: 6px;
}

.review-card .stars {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.review-card .stars svg {
  width: 17px;
  height: 17px;
}

.review-text {
  color: #2B2F33;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  min-height: 110px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #E6E8EB;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F5F0E8;
  border: 1px solid #E6E8EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #C6A25A;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.review-avatar svg {
  width: 24px;
  height: 24px;
}

.review-name {
  font-weight: 700;
  color: #0B2341;
  font-size: 14.5px;
}

.review-cat {
  color: #C6A25A;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.review-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6B7280;
  font-size: 12.5px;
  margin-top: 4px;
}

.review-loc svg {
  width: 12px;
  height: 12px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 36px 0 44px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E6E8EB;
}

.dot.active {
  background: #C6A25A;
  width: 22px;
  border-radius: 5px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 14px;
  padding: 22px 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial-footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2B2F33;
  font-size: 14.5px;
}

.g-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.testimonials .review-swiper {
  width: 100%;
  padding-bottom: 56px;
  overflow: hidden;
}
.testimonials .review-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials .review-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials .review-swiper .review-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.testimonials .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.testimonials .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 !important;
  transition: all 0.25s ease;
}
.testimonials .swiper-pagination-bullet-active {
  background: var(--kaloya-navy, #0b2545);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 1000px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* WHY CHOOSE US */
.why-panel {
  background: #000f28;
  border-radius: 20px;
  padding: 30px 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.why-panel h2 {
  grid-column: 1 / -1;
  text-align: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.why-panel h2::before,
.why-panel h2::after {
  content: '';
  width: 46px;
  height: 1px;
  background: #C6A25A;
}

.why-item {
  text-align: center;
  padding: 0 14px;
  position: relative;
}

.why-item+.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  height: 78%;
  width: 1px;
  background: rgba(255, 255, 255, .14);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-item h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-item p {
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .why-panel {
    grid-template-columns: 1fr 1fr;
  }

  .why-item+.why-item::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .why-panel {
    grid-template-columns: 1fr;
  }
}

.succeed-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.succeed-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.succeed-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  color: #0B2341;
  line-height: 1.25;
  margin-bottom: 20px;
}

.succeed-copy h2 .accent {
  color: #C6A25A;
}

.succeed-copy>p {
  color: #000;
  font-size: 15.5px;
  margin-bottom: 20px;
  max-width: 480px;
}

.succeed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.succeed-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E6E8EB;
  color: #0B2341;
  font-weight: 500;
  font-size: 15px;
}

.succeed-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-badge svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

@media (max-width: 900px) {
  .succeed-split {
    grid-template-columns: 1fr;
  }
}

/* EQUIPMENT */
.equipment {
  background: #FAF9F6;
}

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

.equip-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.equip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -20px rgba(11, 35, 65, .2);
}

.equip-photo img
{  
  height:140px;  
}

.equip-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.equip-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: #0B2341;
  margin-bottom: 6px;
}

.equip-best {
  font-size: 13px;
  font-weight: 700;
  color: #C6A25A;
  margin-bottom: 14px;
}

.equip-desc {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.equip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.equip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #2B2F33;
  font-weight: 500;
}

.equip-list li svg {
  width: 16px;
  height: 16px;
  color: #C6A25A;
  flex-shrink: 0;
}

.equip-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.equip-actions .btn {
  padding: 13px 18px;
  font-size: 12.5px;
}

.not-sure-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #F5F0E8;
  border: 1px solid #E6E8EB;
  border-radius: 14px;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.not-sure-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.not-sure-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}

.not-sure-icon svg {
  width: 20px;
  height: 20px;
}

.not-sure-left h4 {
  font-size: 16px;
  color: #0B2341;
  font-weight: 700;
  margin-bottom: 4px;
}

.not-sure-left p {
  font-size: 13.5px;
  color: #6B7280;
}

@media (max-width: 1000px) {
  .equip-grid {
    grid-template-columns: 1fr;
  }

  .not-sure-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}






/* CTA BANNER */

.cta-padding
{
	padding:35px 0px 35px 0px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 24px;
  border-radius: 10px;
  min-width: 220px;
}

.cta-btn-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.cta-btn-top svg {
  width: 16px;
  height: 16px;
}

.cta-btn-sub {
  font-size: 12.5px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.cta-btn--gold {
  background: #C6A25A;
  color: #0B2341;
}

.cta-btn--gold {
  background: #C6A25A;
  color: #fff;
}

.cta-btn--gold:hover {
  color:#242341;
  background: #d4b06e;
}

.cta-btn--outline {
  background: transparent;
  border:2px solid #ffffff;
  color: #fff;
}

.cta-btn--outline .cta-btn-sub {
  color: rgba(255, 255, 255, .6);
}

.cta-btn--outline:hover {
  color:#ffffff;
  border-color:#C6A25A;
  background: rgba(198, 162, 90, .08);  
}

.cta-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin: 32px 0 24px;
}

.cta-footer {
  display: flex;
  align-items: center;
  gap:40px;
  flex-wrap: wrap;
}

.cta-footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size:17px;
  font-weight:500;
  line-height:35px;
}

.cta-footer-item svg {
  width:25px;
  height:28px;
  color: #C6A25A;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cta-card {
    padding: 32px 24px;
  }

  .cta-top {
    flex-direction: column;
    align-items: flex-start;
  }
}













/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width:280px;
}
.cta-icon-circle {
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.cta-icon-circle svg {
  width:36px;
  height:36px;
}
.cta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:30px;
  color: #ffffff;
  margin-bottom:6px;
  line-height: 1.3;
}
.cta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:18px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footer-row {
  display: flex;
  align-items: center;
  gap:32px;
  flex-wrap: wrap;
  margin-top:10px;
  padding-top:24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
}

.cta-footer-item .dot {
  width:36px;
  height:36px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-item .dot svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
    gap: 0;
  }
}


.button-border-gold
{
  border:2px solid #c6a25a;
}

