/* Vijay Couriers — Coming Soon */

:root {
  --navy: #0a1628;
  --navy-light: #122240;
  --navy-mid: #1a3055;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a8862a;
  --red: #c0392b;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 48, 85, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #060d18 0%, var(--navy) 40%, #0d1a30 100%);
}

.bg-globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.04'%3E%3Cellipse cx='400' cy='400' rx='320' ry='320'/%3E%3Cellipse cx='400' cy='400' rx='240' ry='320'/%3E%3Cellipse cx='400' cy='400' rx='160' ry='320'/%3E%3Cellipse cx='400' cy='400' rx='80' ry='320'/%3E%3Cline x1='80' y1='400' x2='720' y2='400'/%3E%3Cline x1='400' y1='80' x2='400' y2='720'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.bg-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.bg-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.bg-particles span:nth-child(2) { top: 25%; left: 85%; animation-delay: 1.5s; }
.bg-particles span:nth-child(3) { top: 60%; left: 5%; animation-delay: 3s; }
.bg-particles span:nth-child(4) { top: 75%; left: 92%; animation-delay: 0.8s; }
.bg-particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 2.2s; }
.bg-particles span:nth-child(6) { top: 85%; left: 30%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* Header */
header {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mini img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.brand-mini span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.header-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.8s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  background: rgba(212, 175, 55, 0.08);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .white {
  color: var(--white);
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.25em;
  margin-top: 0.3rem;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Notify form */
.notify-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.notify-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.form-msg {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  min-height: 1.2em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.logo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(212, 175, 55, 0.1);
}

.logo-frame img {
  width: 100%;
  display: block;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.4) 100%);
  pointer-events: none;
}

.logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: -1;
}

/* Features */
.features {
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.features-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact section */
.contact {
  padding: 3rem 0;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
}

.contact-card img {
  width: 280px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-info .script-name {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-list a:hover {
  color: var(--gold-light);
}

.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.phone-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.phone-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* Footer */
footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-card img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-list li {
    justify-content: center;
  }

  .contact-phones {
    justify-content: center;
  }

  .header-tag {
    display: none;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .notify-form {
    flex-direction: column;
  }

  .btn-gold {
    width: 100%;
  }
}
