/* ===== CSS Reset & Variables ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-indigo: #1B1638;
  --aubergine: #2D2340;
  --gold: #D4943C;
  --gold-hover: #B87A2E;
  --copper: #C47A4A;
  --copper-hover: #A86535;
  --cream-bg: #FBF7F2;
  --light-panel: #F3EDE2;
  --white: #FFFFFF;
  --slate: #4A5578;
  --slate-light: #6B7594;
  --near-black: #171321;
  --soft-rose: #D48B7A;
  --border-subtle: #E0D8CC;
  --success: #5B9A6B;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--near-black);
  background-color: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--deep-indigo);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1em; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--copper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Navigation ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--deep-indigo);
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(27, 22, 56, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
  padding: 0.3rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--gold);
  color: var(--deep-indigo) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background-color 0.25s ease !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background-color: var(--gold-hover) !important;
  color: var(--deep-indigo) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 9rem 2rem 6rem;
  background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--aubergine) 50%, #1E2844 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 148, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-section h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 1.3rem;
  line-height: 1.2;
}

.hero-section h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #FBF7F2;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--deep-indigo);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  color: var(--deep-indigo);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 148, 60, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== About Section ===== */
.about-section {
  padding: 5rem 2rem;
  background-color: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.2rem;
}

.about-text h2 span {
  color: var(--gold);
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-text p {
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #FDF3E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.about-feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-visual {
  background: linear-gradient(135deg, var(--deep-indigo), var(--aubergine));
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 148, 60, 0.15) 0%, transparent 70%);
}

.about-visual-inner {
  position: relative;
  z-index: 1;
}

.about-stat {
  margin-bottom: 2rem;
}

.about-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
}

.about-stat-label {
  font-size: 0.9rem;
  color: #FBF7F2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== Services Section ===== */
.services-section {
  padding: 5rem 2rem;
  background-color: var(--cream-bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header h2 {
  margin-bottom: 0.8rem;
}

.services-header h2 span {
  color: var(--gold);
}

.services-header p {
  color: var(--slate-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 22, 56, 0.08);
  border-color: var(--gold);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FDF3E5, #FBE8D0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--slate-light);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--aubergine), #1E2844);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 148, 60, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stat-item-label {
  font-size: 0.9rem;
  color: #FBF7F2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 5rem 2rem;
  background-color: var(--white);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  margin-bottom: 0.6rem;
}

.contact-header h2 span {
  color: var(--gold);
}

.contact-header p {
  color: var(--slate-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.2rem;
}

.contact-info-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #FDF3E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-info-text span {
  color: var(--slate-light);
  font-size: 0.93rem;
}

.contact-form {
  background: var(--cream-bg);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--deep-indigo);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--near-black);
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 148, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#form-status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

#form-status.success {
  color: var(--success);
}

#form-status.error {
  color: #C0392B;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--deep-indigo);
  color: #FBF7F2;
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #FBF7F2;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #FBF7F2;
}

/* ===== Fade Up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--deep-indigo);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.6rem 0;
  }

  .nav-cta {
    display: inline-block;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 7rem 1.2rem 4rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
