/* ===========================
   NORDSTONE GROUP — STYLESHEET
   Navy Blue & Gold Professional
   =========================== */

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #243B55;
  --gold: #C9A84C;
  --gold-light: #E0C26A;
  --gold-pale: #F5EDD6;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --border: rgba(201, 168, 76, 0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(13, 27, 42, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 600; }

p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

.gold { color: var(--gold); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.full-width { width: 100%; text-align: center; }

/* SECTION COMMONS */
.section { padding: 7rem 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-sub { max-width: 580px; margin: 0 auto; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--navy);
  padding: 0.9rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3a5f 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gold);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(13,27,42,0.2);
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-block {
  position: relative;
  height: 460px;
}
.about-img-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.4;
}
.about-img-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.about-img-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.pillar-icon { font-size: 1.1rem; }

/* ===== SERVICES ===== */
.services { background: var(--navy); }
.services .section-header h2 { color: var(--white); }
.services .section-eyebrow { color: var(--gold); }
.services .section-sub { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* ===== BRANDS ===== */
.brands { background: var(--off-white); }
.brands .section-header h2 { color: var(--navy); }

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.brand-card {
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.brand-card:hover { transform: translateY(-4px); }

.brand-fatima {
  background: linear-gradient(135deg, #2D1B4E 0%, #4A2C7A 100%);
}
.brand-phonicea {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.brand-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.brand-card h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.brand-card p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.brand-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.brand-link:hover { color: var(--gold-light); }

/* ===== CONTACT ===== */
.contact { background: var(--navy); }
.contact .section-eyebrow { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-icon { font-size: 1.1rem; }
.contact-item a, .contact-item span {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer {
  background: #060E18;
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer-logo span { color: var(--gold); }

.footer-links, .footer-brands {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a, .footer-brands a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-brands a:hover { color: var(--gold); }
.footer-brands span { color: rgba(255,255,255,0.3); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .services-grid,
  .brands-grid { grid-template-columns: 1fr; }

  .about-visual { display: none; }

  .stats-inner { gap: 0; }
  .stat { padding: 0.75rem 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }

  .hero-content { padding-top: 8rem; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }

  .section { padding: 5rem 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
