* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root {
  --bg-dark: #03142a;
  --bg-darker: #020c19;
  --accent-red: #e53935;
  --accent-orange: #ffb300;
  --text-main: #ffffff;
  --text-muted: #cfd8e3;
  --card-bg: #0d2038;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 18px;
}

body {
  background: radial-gradient(circle at top left, #102d5c, var(--bg-dark));
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to right, var(--bg-darker), #061b34);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 70px;      /* Increase size */
  width: auto;      /* Keep proportions */
  max-width: 220px; /* Prevent overflow */


}

.brand-title {
  font-size: 30px; /* Bigger heading */
  font-weight: bold;
  
  /* Gold gradient color */
  background: linear-gradient(45deg, #d4af37, #ffd700, #b8962e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 1.5px;


}

.nav-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-red), var(--accent-orange));
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* HERO (HOME) */

.hero {
  padding: 60px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(3, 169, 244, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--accent-orange), var(--accent-red));
}

h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

h1 span {
  background: linear-gradient(to right, var(--accent-orange), var(--accent-red));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 32, 56, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-contact {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-card {
  background: radial-gradient(circle at top, #283c78, #061020);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.hero-card-title {
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-card-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-card-list li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.hero-card-dot {
  margin-top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  flex-shrink: 0;
}

/* SECTIONS / CARDS */

section {
  padding: 32px 0;
}

.page-header {
  padding-top: 40px;
  padding-bottom: 10px;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.page-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pill {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-orange);
  margin-bottom: 6px;
}

/* PROCESS */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  font-size: 0.84rem;
}

.step {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 12px 12px 14px;
  border: 1px solid var(--border-soft);
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(229, 57, 53, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 6px;
}

.step strong {
  display: block;
  margin-bottom: 4px;
}

/* CONTACT */

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.contact-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-details span {
  color: var(--text-main);
  font-weight: 500;
}

.contact-form {
  font-size: 0.85rem;
}

.contact-form label {
  display: block;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 9, 22, 0.96);
  color: var(--text-main);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6d7a92;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-darker);
  padding: 14px 0 18px;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner,
  .grid-3,
  .grid-2,
  .process-steps,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card {
    order: -1;
  }

  .nav-links {
    display: none; /* simple mobile nav */
  }
}
/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}
/* ==============================
   CONTACT PAGE HIGHLIGHTS
============================== */

/* GOLD Company name */
.company-name-highlight {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1.5px;

  background: linear-gradient(45deg, #d4af37, #ffd700, #b8962e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(212,175,55,0.45);
}

/* PHONE – bright action green */
.phone-highlight a {
  color: #25d366;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.phone-highlight a:hover {
  color: #40ff9a;
}

/* EMAIL – clean corporate blue */
.email-highlight a {
  color: #1fa2ff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.email-highlight a:hover {
  color: #7ec9ff;
}

