@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --main-dark-bg: #0A0F1C;
  --secondary-dark: #111A2C;
  --third-dark: #1B2740;
  --footer-bg: #070A12;
  --light-bg: #F1F3F6;
  --alt-bg: #E7EAEF;
  --main-heading: #10151F;
  --body-text: #5B6472;
  --dark-muted-text: #8A93A6;
  --orange-accent: #FF6A1F;
  --orange-hover: #C9531A;
  --blue-accent: #3E7BFA;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--main-dark-bg);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   GLOBAL CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-container {
  padding-top: clamp(15px, 2vh, 30px);
  padding-bottom: clamp(15px, 2vh, 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
}

.logo-icon {
  width: clamp(24px, 3vw, 32px);
  height: clamp(16px, 2vw, 20px);
  color: var(--orange-accent);
}

.logo-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--orange-accent);
}

.coming-soon-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
  background-color: rgba(17, 26, 44, 0.6);
  border: 1px solid var(--orange-accent);
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  color: var(--orange-accent);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.coming-soon-badge .dot {
  width: clamp(6px, 0.8vw, 8px);
  height: clamp(6px, 0.8vw, 8px);
  background-color: var(--orange-accent);
  border-radius: 50%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: max(80vh, 550px);
  display: flex;
  align-items: center;
  padding-top: clamp(60px, 12vh, 100px);
  padding-bottom: clamp(20px, 4vh, 40px);
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--main-dark-bg) 0%, rgba(10, 15, 28, 0.7) 45%, rgba(10, 15, 28, 0.05) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}

.hero-floating-card {
  background: rgba(10, 15, 28, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 106, 31, 0.2);
  border-left: 3px solid var(--orange-accent);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 20px);
  min-width: 280px;
  max-width: 350px;
}

.floating-card-title {
  color: var(--white);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

/* ==========================================================================
   TAB MODULE STYLES
   ========================================================================== */
.card-tabs {
  display: flex;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--dark-muted-text);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tab-btn.active {
  color: var(--orange-accent);
  border-bottom-color: var(--orange-accent);
}

.tab-btn:hover:not(.active) {
  color: var(--white);
}

.tab-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

.tab-content {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.track-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.track-input:focus {
  outline: none;
  border-color: var(--orange-accent);
  background: rgba(255, 255, 255, 0.08);
}

.track-btn {
  width: 100%;
  background: var(--orange-accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.track-btn:hover {
  background: var(--orange-hover);
}

.track-help {
  color: var(--dark-muted-text);
  font-size: 0.7rem;
  text-align: center;
  margin-top: -2px;
}

.tab-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.track-notification {
  background: rgba(255, 106, 31, 0.08);
  border: 1px solid rgba(255, 106, 31, 0.3);
  border-left: 3px solid var(--orange-accent);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 8px;
  color: var(--light-bg);
  font-size: 0.8rem;
  line-height: 1.4;
  animation: fadeInNotification 0.3s ease;
}

.track-notification strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.noti-contact {
  display: block;
  margin-top: 6px;
  color: var(--orange-accent);
  font-weight: 600;
}

@keyframes fadeInNotification {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.ship-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ship-header svg {
  width: 16px;
  height: 16px;
}

.ship-text {
  color: var(--light-bg);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.ship-features-title {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.ship-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  margin-bottom: 8px;
}

.ship-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--dark-muted-text);
}

.ship-features svg {
  width: 10px;
  height: 10px;
  color: var(--orange-accent);
  flex-shrink: 0;
}

.ship-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
  font-size: 0.75rem;
  color: var(--dark-muted-text);
  text-align: center;
}

.ship-contact-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-content {
  width: min(100%, 600px);
  display: flex;
  flex-direction: column;
}

.hero-welcome {
  color: var(--orange-accent);
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: clamp(2px, 0.5vh, 5px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: clamp(2px, 0.8vh, 6px);
}

.hero-title span {
  color: var(--orange-accent);
}

.hero-coming-soon {
  align-self: center;
  padding: 6px 14px;
  background-color: var(--orange-accent);
  color: var(--white);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: clamp(2px, 0.8vh, 6px);
}

.hero-tagline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: clamp(2px, 0.8vh, 6px);
}

.hero-subheadline {
  color: var(--orange-accent);
  font-size: clamp(0.9rem, 1.25vw, 1.15rem);
  font-weight: 500;
  margin-bottom: clamp(4px, 1vh, 8px);
}

.hero-desc {
  color: var(--dark-muted-text);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  margin-bottom: clamp(8px, 1.5vh, 12px);
}

.hero-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-heading {
  color: var(--dark-muted-text);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-contact {
  display: flex;
  flex-direction: row;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
}

.contact-icon {
  width: clamp(28px, 3.5vw, 36px);
  height: clamp(28px, 3.5vw, 36px);
  border: 1px solid var(--orange-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-accent);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   WHY TRUST SECTION
   ========================================================================== */
.trust-section {
  background-color: var(--secondary-dark);
  padding: clamp(60px, 8vh, 100px) 0;
  text-align: center;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(40px, 6vh, 80px);
}

.section-title span {
  color: var(--orange-accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(40px, 6vh, 60px);
  text-align: left;
}

.trust-item {
  position: relative;
  padding: clamp(10px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 1025px) {
  .trust-item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--third-dark);
  }
}

.trust-icon {
  color: var(--orange-accent);
  margin-bottom: 20px;
  height: 40px;
  display: flex;
  align-items: center;
}
.trust-icon svg {
  height: 100%;
  width: auto;
}

.trust-item h3 {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--dark-muted-text);
  line-height: 1.5;
  flex-grow: 1;
}

.trust-quote {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.trust-quote::before,
.trust-quote::after {
  content: '';
  display: block;
  width: clamp(20px, 5vw, 60px);
  height: 1px;
  background-color: var(--orange-accent);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--light-bg);
  padding: clamp(60px, 8vh, 100px) 0;
  text-align: center;
}

.services-section .section-title {
  color: var(--main-heading);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 2vw, 30px);
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px) 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  color: var(--orange-accent);
  margin-bottom: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon svg {
  height: 100%;
  width: auto;
  stroke: var(--orange-accent);
}

.service-card h3 {
  color: var(--main-heading);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.service-card p {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--dark-muted-text);
  line-height: 1.5;
  flex-grow: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--footer-bg);
  padding: clamp(40px, 6vh, 80px) 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.footer-left .logo-text {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--dark-muted-text);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.footer-middle {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.footer-right {
  text-align: right;
  color: var(--dark-muted-text);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-floating-card {
    display: none;
  }
  .trust-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .footer-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  .footer-middle { 
    justify-content: center; 
  }
  .footer-right { 
    text-align: center; 
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .trust-item:not(:nth-child(2n))::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--third-dark);
  }
}

@media (max-width: 767px) {
  .hero-contact { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .trust-grid { 
    grid-template-columns: 1fr; 
    text-align: center;
  }
  .trust-icon {
    justify-content: center;
  }
  .trust-quote { 
    flex-direction: column; 
    gap: 10px; 
  }
  .trust-quote::before, .trust-quote::after { 
    display: none; 
  }
  .services-grid { 
    grid-template-columns: 1fr; 
  }
  .footer-middle { 
    flex-direction: column; 
    align-items: center; 
  }
}

@media (max-width: 480px) {
  .trust-item { padding: 0; }
}
