/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #07121f;
  color: white;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

img {
  width: 100%;
  display: block;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(7, 18, 31, 0.85);
  backdrop-filter: blur(12px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #d6b98c;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
}

.btn-nav,
.btn-primary {
  background: #d6b98c;
  color: #07121f;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid #d6b98c;
  padding: 14px 26px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
}

.hero {
  height: 100vh;
  background: url("../assets/img/kav.webp") center/cover;
  position: relative;
  display: flex;
  padding: 30px;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge {
  background: #d6b98c;
  color: #07121f;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  font-size: 72px;
  margin: 20px 0;
  line-height: 1;
}

.hero p {
  max-width: 600px;
  line-height: 1.8;
  color: #ddd;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.hero-info {
  margin-top: 50px;
  display: flex;
  gap: 50px;
}

.hero-info h3 {
  color: #d6b98c;
  font-size: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-subtitle,
.section-title span {
  color: #d6b98c;
  font-weight: 600;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 10px;
}

.about-content h2 {
  font-size: 48px;
  margin: 10px 0 20px;
}

.about-content p {
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  gap: 15px;
}

.feature-item {
  background: #0f1d2e;
  padding: 18px;
  border-radius: 14px;
}

.usp-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.usp-card,
.legal-card {
  background: #0d1a2a;
  padding: 35px;
  border-radius: 20px;
  transition: 0.4s;
}

.usp-card:hover,
.legal-card:hover {
  transform: translateY(-8px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  border-radius: 20px;
  height: 250px;
  object-fit: cover;
}

.pricing-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.pricing-box p {
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  color: #ddd;
}

.pricing-box .btn-primary,
.pricing-box .btn-secondary {
  position: relative;
  margin-top: 15px;
  display: inline-block;
  z-index: 2;
}

.price {
  line-height: 1.1;
  word-break: break-word;
  font-size: 60px;
  font-weight: bold;
  color: #d6b98c;
}

.map-box iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 25px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #0d1a2a;
  color: white;
  border: none;
  padding: 22px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 22px;
  background: #13243a;
  color: #ddd;
}

.cta-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 42px;
  line-height: 1.2;
  max-width: 750px;
  margin: 0 auto;
  color: #d6b98c;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.cta-box .btn-primary,
.cta-box .btn-secondary {
  margin-top: 10px;
  background: #d6b98c;
  color: black;
  border: 1px solid #07121f;
}

.cta-box .btn-primary:hover,
.cta-box .btn-secondary:hover {
  transform: translateY(-3px);
}
footer {
  padding: 40px 0;
  text-align: center;
  background: #050c15;
}

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  color: white;
  background: #c3c3c3;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  z-index: 999;
}
.wa-float img {
  height: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.proof-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background:#07121f;
    
}

.proof-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -180px;
  border-radius: 50%;
  background: #07121f;
  filter: blur(25px);
}

.proof-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, 280px);
  gap: 24px;
}

.proof-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.proof-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(15, 23, 42, 0.28)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.proof-photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.2);
}

.proof-photo:hover::after {
  opacity: 1;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proof-photo:hover img {
  transform: scale(1.08);
}

.photo-large {
  grid-row: span 2;
}


@media (max-width: 992px) {
  .container {
    width: 92%;
  }

  .section {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .pricing-box,
  .cta-box {
    padding: 50px 35px;
  }

  .price {
    font-size: 56px;
  }
  .proof-section {
    padding: 85px 20px;
  }

  .proof-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 360px 280px;
  }

  .photo-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .proof-photo {
    border-radius: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-content {
    padding: 16px 0;
  }

  .logo {
    font-size: 20px;
  }

  nav,
  .btn-nav {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 100vh;
    height: auto;
    padding: 30px;
    background-position: center;
  }

  .hero-content {
    width: 100%;
  }

  .badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.15;
    margin: 18px 0;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-info {
    flex-direction: column;
    gap: 18px;
    margin-top: 35px;
  }

  .hero-info h3 {
    font-size: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-content h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .about-content p {
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .usp-grid,
  .legal-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .usp-card,
  .legal-card {
    padding: 28px 22px;
  }

  .gallery-grid img {
    height: 220px;
  }

  .pricing-box {
    gap: 14px;
    text-align: center;
  }

  .pricing-box p {
    font-size: 14px;
    line-height: 1.7;
  }

  .pricing-box .btn-primary,
  .pricing-box .btn-secondary {
    width: 100%;
    margin-top: 12px;
  }

  .price {
    font-size: 36px;
    line-height: 1.2;
  }

  .map-box iframe {
    height: 330px;
    border-radius: 18px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-answer {
    padding: 18px;
    font-size: 14px;
  }

  .wa-float {
    width: 55px;
    height: 55px;
    right: 18px;

    bottom: 18px;
    font-size: 14px;
  }
  .cta-box {
    padding: 40px 22px;
    border-radius: 22px;
    gap: 16px;
  }

  .cta-box h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .cta-box p {
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-box .btn-primary,
  .cta-box .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    margin-top: 8px;
  }
  .proof-section {
    padding: 75px 18px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
  }

  .photo-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .proof-photo {
    height: 360px;
    border-radius: 26px;
  }

  footer {
    padding: 30px 15px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    width: 90%;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-info {
    gap: 15px;
  }

  .hero-info h3 {
    font-size: 22px;
  }

  .section-title h2,
  .about-content h2 {
    font-size: 28px;
  }

  .feature-item {
    padding: 15px;
  }

  .usp-card,
  .legal-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .gallery-grid img {
    height: 200px;
    border-radius: 16px;
  }

  .pricing-box {
    padding: 30px 16px;
  }

  .price {
    font-size: 30px;
  }

  .pricing-box p {
    font-size: 13px;
  }

  .map-box iframe {
    height: 280px;
  }
  .cta-box {
    padding: 34px 18px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-box p {
    font-size: 13px;
  }
  proof-section {
    padding: 60px 14px;
  }

  .proof-gallery {
    gap: 16px;
  }

  .proof-photo {
    height: 280px;
    border-radius: 22px;
  }
}
