/*==========================================
    GOOGLE FONT
==========================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/*==========================================
    CSS VARIABLES
==========================================*/

:root {
  --primary: #c0c0c0;
  --secondary: #8e8e93;
  --white: #ffffff;
  --black: #050505;
  --dark: #0d0d0d;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --transition: 0.35s ease;
  --max-width: 1200px;
}

/*==========================================
    RESET
==========================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
button {
  font-family: inherit;
}

section {
  padding: 110px 0;
}

/*==========================================
    SCROLLBAR
==========================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
  background: #707070;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #bdbdbd;
}

/*==========================================
    CONTAINER
==========================================*/

.container {
  width: min(92%, var(--max-width));
  margin: auto;
}

/*==========================================
    SECTION TITLE
==========================================*/

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-title p {
  color: #bdbdbd;
  max-width: 760px;
  margin: auto;
}

/*==========================================
    BUTTONS
==========================================*/

.primary-btn,
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #d9d9d9, #8f8f8f);
  color: #000;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.primary-btn:hover,
.nav-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

/*==========================================
    HEADER
==========================================*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.35s;
  padding: 22px 0;
}

.header.active {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
}

/*==========================================
    NAVBAR
==========================================*/

.navbar {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo small {
  color: #bbbbbb;
  letter-spacing: 3px;
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links li a {
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: var(--primary);
}

.menu-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Website Title */

.site-title {
  text-align: center;
}

.site-title h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* Logo */

.logo img {
  width: 75px;
  display: block;
}

/*==========================================
    HERO
==========================================*/

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center; /* Vertical center */
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("/assets/hero.jpg") center center / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.82)
  );
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  right: -250px;
  top: -150px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  animation: fadeUp 1s ease;
}

.hero-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7d7d7;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #d2d2d2;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #c2c2c2;
  font-size: 1.1rem;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/*==========================================
    HERO IMAGE EFFECT
==========================================*/

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 350px;
  background: linear-gradient(transparent, var(--black));
}

/*==========================================
    ANIMATION
==========================================*/

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 1s ease;
}

/*==========================================
    RESPONSIVE NAVIGATION
==========================================*/

@media (max-width: 992px) {
  .header {
    padding: 15px 0;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-title {
    display: none;
  }

  .logo img {
    width: 60px;
  }

  .menu-btn {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;

    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 28px;

    transition: 0.4s ease;
    z-index: 1000;

    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .nav-btn {
    margin-top: 15px;
    display: inline-flex;
  }
}

/*==========================================
    TABLET
==========================================*/

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .hero {
    min-height: 100vh;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 80px auto 0;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 6vw, 3.4rem);
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    margin: 0 auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/*==========================================
    MOBILE
==========================================*/

@media (max-width: 576px) {
  .logo img {
    width: 52px;
  }

  .menu-btn {
    width: 45px;
    height: 45px;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    border-left: none;
  }
}

/*==========================================
    FEATURES SECTION
==========================================*/

.features {
  background: #0a0a0a;
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.feature-image {
  height: 230px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.feature-card:hover .feature-image img {
  transform: scale(1.08);
}

.feature-icon {
  width: 75px;
  height: 75px;
  margin: -38px auto 25px;
  background: linear-gradient(135deg, #d8d8d8, #8b8b8b);
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.feature-card h3 {
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  padding: 0 30px;
}

.feature-card p {
  color: #bcbcbc;
  text-align: center;
  padding: 0 30px 35px;
}
/*==========================================
    TRUST SECTION
==========================================*/

.trust-banner {
  background: #0c0c0c;
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.trust-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.trust-heading {
  margin-bottom: 10px;
}

.trust-heading h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: 0.35s;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.trust-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9d9d9, #8a8a8a);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 1.5rem;
}

.trust-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.trust-card p {
  color: #c2c2c2;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .trust-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .trust-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .trust-heading {
    text-align: center;
  }
}

/*==========================================
    CONTACT SECTION
==========================================*/

.contact {
  background: #080808;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  transition: var(--transition);
}

.info-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.info-box i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8d8d8, #8b8b8b);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.info-box p {
  color: #bcbcbc;
}

/*==========================================
    CONTACT FORM
==========================================*/

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.input-group {
  margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1rem;
  transition: 0.3s;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d1d1d1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8c8c8c;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  background: linear-gradient(135deg, #d9d9d9, #8d8d8d);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(255, 255, 255, 0.12);
}

.contact-form select {
  width: 100%;
  padding: 18px 20px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  appearance: none;
  cursor: pointer;
}

.contact-form select:focus {
  border-color: #d1d1d1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.contact-form select option {
  background: #111;
  color: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

/*==========================================
    FOOTER
==========================================*/

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  padding: 30px 0;
}

.footer p {
  text-align: center;
  color: #a7a7a7;
  font-size: 0.95rem;
}

/*==========================================
    REVEAL ANIMATION
==========================================*/

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*==========================================
    HOVER EFFECTS
==========================================*/

.feature-card,
.info-box,
.contact-form,
.trust-content {
  transition: all 0.35s ease;
}

.feature-card:hover,
.info-box:hover,
.contact-form:hover,
.trust-content:hover {
  box-shadow: 0 25px 60px rgba(255, 255, 255, 0.05);
}

/*==========================================
    TABLET
==========================================*/

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .trust-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .trust-icon {
    margin-bottom: 10px;
  }
}

/*==========================================
    MOBILE
==========================================*/

@media (max-width: 768px) {
  .feature-card h3 {
    font-size: 1.3rem;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .trust-text h2 {
    font-size: 1.7rem;
  }

  .trust-icon {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
  }
}

/*==========================================
    SMALL MOBILE
==========================================*/

@media (max-width: 576px) {
  .feature-image {
    height: 200px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
  }

  .info-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-box i {
    margin-bottom: 10px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .trust-content {
    padding: 30px 20px;
  }

  .footer p {
    font-size: 0.85rem;
  }
}
